How to properly set up the STP function by OMNET++/INET?

44 Views Asked by At

I have established a looped topology, as depicted in the following illustration: enter image description here I have configured the Spanning Tree Protocol (STP) functionality to disrupt the loop, thereby preventing broadcast storming. Below are my Network Description (NED) file and Initialization (INI) file:

network testNet

    configurator: Ipv4NetworkConfigurator {
        parameters:
            @display("p=42,340;is=s");
    }

    switch1: EthernetSwitch {
        parameters:
            @display("p=221,149");
        gates:
            ethg[6];
    }
    switch2: EthernetSwitch {
        parameters:
            @display("p=290,240");
        gates:
            ethg[6];
    }
    switch3: EthernetSwitch {
        parameters:
            @display("p=385,149");
        gates:
            ethg[6];
    }
    switch4: EthernetSwitch {
        parameters:
            @display("p=303,42");
        gates:
            ethg[3];
    }
    // 创建9个终端节点
    host1: StandardHost {
        @display("p=99,72");
    }
    host2: StandardHost {
        @display("p=99,150");
    }
    host3: StandardHost {
        @display("p=99,259");
    }
    host4: StandardHost {
        @display("p=221,371");
    }
    host5: StandardHost {
        @display("p=364,371");
    }
    host6: StandardHost {
        @display("p=290,371");
    }
    host7: StandardHost {
        @display("p=520,61");
    }
    host8: StandardHost {
        @display("p=520,143");
    }
    host9: StandardHost {
        @display("p=520,259");
    }
connections allowunconnected:
    switch1.ethg[0] <--> Eth1G {  length = 100m; } <--> switch2.ethg[0];
    switch2.ethg[1] <--> Eth1G {  length = 100m; } <--> switch3.ethg[1];
    switch3.ethg[0] <--> Eth1G {  length = 100m; } <--> switch4.ethg[0];
    switch4.ethg[1] <--> Eth1G {  length = 100m; } <--> switch1.ethg[1];
    switch3.ethg[2] <--> Eth1G {  length = 100m; } <--> switch1.ethg[2];
    switch2.ethg[2] <--> Eth1G {  length = 100m; } <--> switch4.ethg[2];
    switch1.ethg[3] <--> Eth1G {  length = 100m; } <--> host1.ethg++;
    switch1.ethg[4] <--> Eth1G {  length = 100m; } <--> host2.ethg++;
    switch1.ethg[5] <--> Eth1G {  length = 100m; } <--> host3.ethg++;
    switch2.ethg[3] <--> Eth1G {  length = 100m; } <--> host4.ethg++;
    switch2.ethg[4] <--> Eth1G {  length = 100m; } <--> host5.ethg++;
    switch2.ethg[5] <--> Eth1G {  length = 100m; } <--> host6.ethg++;
    switch3.ethg[3] <--> Eth1G {  length = 100m; } <--> host7.ethg++;
    switch3.ethg[4] <--> Eth1G {  length = 100m; } <--> host8.ethg++;
    switch3.ethg[5] <--> Eth1G {  length = 100m; } <--> host9.ethg++;
}

And the following is INI file: Host1 will send UDP to host2.

    [General]
network = testNet
sim-time-limit = 400s
**.host*.numUdpApps = 1 
*.host1.numApps = 1
*.host1.app[0].typename = "UdpSourceApp"
*.host1.app[0].io.destAddress = "host2"
*.host1.app[0].io.localPort = 1000
*.host1.app[0].io.destPort = 1000
*.host1.app[0].source.packetLength = 1000B
*.host1.app[0].source.productionInterval = 100ms
*.host2.numApps = 1
*.host2.app[0].typename = "UdpSinkApp"
*.host2.app[0].io.localPort = 1000
**.switch*.hasStp = true
**.spanningTreeProtocol = "Stp"
**.switch*.eth[*].typename = "LayeredEthernetInterface"
**.switch*.ethernet.typename = "EthernetLayer"
**.switch*.eth[*].bitrate = 1Gbps
**.switch*.bridging.typename = "MacRelayUnit"
**.switch1.**.address="AAAAAA000001"
**.switch2.**.address="AAAAAA000002"
**.switch3.**.address="AAAAAA000003"
**.switch4.**.address="AAAAAA000004"

Despite these settings, broadcast occurrences persist as illustrated below. Could there be an issue with my configuration? I would greatly appreciate any guidance on this matter.

enter image description here

1

There are 1 best solutions below

0
On

STP need some time to recognize topology and mark some interfaces as disabled. By default the first PBDU frames are sent at t=1.0 s, and at t=2.0 s BPDU-TCN frames may be sent.
Therefore in your simulation I suggest activating traffic a few seconds later, for example by setting in the omnetpp.ini:

*.host1.app[0].source.initialProductionOffset = 5s