12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #
- # OSPFv2 test network.
- #
- [General]
- description = "Dynamic test"
- network = DynamicTest
- tkenv-plugin-path = ../../../etc/plugins
- sim-time-limit = 600s
- **.ospf.ospfConfig = xmldoc("ASConfig.xml")
- **.ospf.helloInterval = 10s
- **.ospf.retransmissionInterval = 5s
- **.ospf.interfaceTransmissionDelay = 1
- **.ospf.routerDeadInterval = 40s
- **.ospf.authenticationType = "NullType"
- **.ospf.authenticationKey = "0x00"
- **.numUdpApps = 2
- **.udpApp[0].typename = "UDPBasicApp"
- **.udpApp[0].destPort = 1234
- **.udpApp[0].messageLength = 32 bytes
- **.udpApp[0].sendInterval = 0.1s
- **.udpApp[0].startTime = 100s
- **.udpApp[0].stopTime = this.startTime + 400s
- **.H2.udpApp[0].destAddresses = "H1"
- **.H1.udpApp[0].destAddresses = "H2"
- **.udpApp[1].typename = "UDPEchoApp"
- **.udpApp[1].localPort = 1234
- **.arp.cacheTimeout = 1s
- *.configurator.addStaticRoutes = false
- *.configurator.addSubnetRoutes = false
- *.configurator.addDefaultRoutes = false
- [Config static]
- description = static topology
- *.scenarioManager.script = xml("<empty/>")
- [Config dynamic1]
- description = connect/disconnect link (dynamic topology)
- *.scenarioManager.script = xmldoc("scenario1.xml")
- [Config dynamic2]
- description = shutdown/startup node (dynamic topology)
- **.hasStatus = true
- *.scenarioManager.script = xmldoc("scenario2.xml")
|