12345678910111213141516171819202122232425 |
- [General]
- sim-time-limit = 1000s
- fingerprint = "0000"
-
- network = TwoHosts
-
- # channel
- **.channel.datarate = ${datarate = 10Mbps, 100Mbps, 1Gbps}
- **.channel.delay = 10s/200000000
-
- # MAC
- **.csmacdSupport = ${csmacd = true, false}
- **.duplexMode = ${duplex = true, false}
- **.duplexEnabled = ${duplex}
- **.frameBursting = ${burst = true, false}
- **.queueType = ${queue = "DropTailQueue", ""}
- **.queue.dataQueue.frameCapacity = 100000 # external queue
- **.txQueueLimit = 100000 # internal queue
-
- # traffic generator
- **.hostA.app.destAddress = "hostB"
- **.hostB.app.destAddress = "hostA"
- **.app.packetLength = select(intuniform(0,2), uniform(20B,70B), uniform(474B,514B), uniform(1200B,1500B)) # 10,000 bits TODO revise
- **.app.numPacketsPerBurst = geometric(1/5) # mean 5 packets per burst
- **.app.sendInterval = 1s
|