omnetpp.ini 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # OSPFv2 test network.
  3. #
  4. [General]
  5. description = "Dynamic test"
  6. network = DynamicTest
  7. tkenv-plugin-path = ../../../etc/plugins
  8. sim-time-limit = 600s
  9. **.ospf.ospfConfig = xmldoc("ASConfig.xml")
  10. **.ospf.helloInterval = 10s
  11. **.ospf.retransmissionInterval = 5s
  12. **.ospf.interfaceTransmissionDelay = 1
  13. **.ospf.routerDeadInterval = 40s
  14. **.ospf.authenticationType = "NullType"
  15. **.ospf.authenticationKey = "0x00"
  16. **.numUdpApps = 2
  17. **.udpApp[0].typename = "UDPBasicApp"
  18. **.udpApp[0].destPort = 1234
  19. **.udpApp[0].messageLength = 32 bytes
  20. **.udpApp[0].sendInterval = 0.1s
  21. **.udpApp[0].startTime = 100s
  22. **.udpApp[0].stopTime = this.startTime + 400s
  23. **.H2.udpApp[0].destAddresses = "H1"
  24. **.H1.udpApp[0].destAddresses = "H2"
  25. **.udpApp[1].typename = "UDPEchoApp"
  26. **.udpApp[1].localPort = 1234
  27. **.arp.cacheTimeout = 1s
  28. *.configurator.addStaticRoutes = false
  29. *.configurator.addSubnetRoutes = false
  30. *.configurator.addDefaultRoutes = false
  31. [Config static]
  32. description = static topology
  33. *.scenarioManager.script = xml("<empty/>")
  34. [Config dynamic1]
  35. description = connect/disconnect link (dynamic topology)
  36. *.scenarioManager.script = xmldoc("scenario1.xml")
  37. [Config dynamic2]
  38. description = shutdown/startup node (dynamic topology)
  39. **.hasStatus = true
  40. *.scenarioManager.script = xmldoc("scenario2.xml")