omnetpp.ini 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # RIP test network.
  3. #
  4. [General]
  5. description = "Simple test"
  6. network = SimpleTest
  7. #record-eventlog = true
  8. # debug-on-errors = true
  9. tkenv-plugin-path = ../../../etc/plugins
  10. sim-time-limit = 600s
  11. **.numUdpApps = 2
  12. **.udpApp[0].typename = "UDPBasicApp"
  13. **.udpApp[0].destPort = 1234
  14. **.udpApp[0].messageLength = 32 bytes
  15. **.udpApp[0].sendInterval = 0.1s
  16. **.udpApp[0].startTime = 4s
  17. **.H2.udpApp[0].destAddresses = "H1"
  18. **.H1.udpApp[0].destAddresses = "H2"
  19. **.udpApp[1].typename = "UDPEchoApp"
  20. **.udpApp[1].localPort = 1234
  21. **.arp.cacheTimeout = 1s
  22. [Config IPv4]
  23. description = network layer for IPv4 network protocol only (default)
  24. [Config IPv6]
  25. description = network layer for multiple network protocols
  26. **.networkLayerType = "IPv6NetworkLayer"
  27. **.routingTableType = "IPv6RoutingTable"
  28. **.R*.routingTable.isRouter = true # XXX
  29. **.rip.mode = "RIPng"
  30. [Config MultiIPv4]
  31. description = network layer for multiple network protocols
  32. **.networkLayerType = "MultiNetworkLayer"
  33. **.routingTableType = "MultiRoutingTable"
  34. **.rip.routingTableModule = "^.routingTable.ipv4"