omnetpp.ini 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [General]
  2. network = inet.examples.pim.iptv.Network
  3. **.configurator.config = xmldoc("networkConfig.xml")
  4. **.configurator.addStaticRoutes = false
  5. # OSPF
  6. **.R??.hasOSPF = true
  7. **.ospf.ospfConfig = xmldoc("ASConfig.xml")
  8. **.ospf.helloInterval = 10s
  9. **.ospf.retransmissionInterval = 5s
  10. **.ospf.interfaceTransmissionDelay = 1
  11. **.ospf.routerDeadInterval = 40s
  12. **.ospf.authenticationType = "NullType"
  13. **.ospf.authenticationKey = "0x00"
  14. # Apps
  15. **.server.numUdpApps = 1
  16. **.server.udpApp[0].typename = "UDPBasicApp"
  17. **.server.udpApp[0].destPort = 5000
  18. **.server.udpApp[0].messageLength = 200B
  19. **.server.udpApp[0].destAddresses = "239.0.0.11"
  20. **.server.udpApp[0].startTime = 20s
  21. **.server.udpApp[0].stopTime = 30s
  22. **.server.udpApp[0].sendInterval = 0.04s
  23. **.client.numUdpApps = 1
  24. **.client.udpApp[0].typename = "UDPSink"
  25. **.client.udpApp[0].localPort = 5000
  26. **.client.udpApp[0].multicastGroup = "239.0.0.11"
  27. **.client.udpApp[0].startTime = 25s
  28. [Config PIM_SM]
  29. **.pimConfig = xml("<config><interface mode=\"sparse\"/></config>")
  30. **.R10.**.routerId = "192.168.13.1"
  31. **.RP = "192.168.13.1"
  32. **.sptThreshold = "infinity"
  33. [Config PIM_DM]
  34. **.pimConfig = xml("<config><interface mode=\"dense\"/></config>")