Reputation: 47
I'm working on developing SDN network on OMNET++. However, I got error about a .INI file parameter. I'm enclosing pic of error. Can you help me to fix it? (It is desired that only host1 sends packet to host2 on the path host1 -> switch -> controller -> switch -> host2 )
Upvotes: 0
Views: 110
Reputation: 7012
In omnetpp.ini
after line:
**.host1.tcpApp[0].connectAddress = "host2"
add this line:
**.host*.tcpApp[0].connectAddress = ""
In this context the last line means that all hosts except host1
will not connect.
Upvotes: 1