Ahmet Tıkna
Ahmet Tıkna

Reputation: 47

OMNET SDN network eroor

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 )

reqired to enter connection adress

enter image description here

reqired to enter connection adress

Ini file

NED file

Upvotes: 0

Views: 110

Answers (1)

Jerzy D.
Jerzy D.

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

Related Questions