123456789101112131415161718192021222324252627282930313233 |
- [General]
- sim-time-limit = 10s
- fingerprint = "0000"
-
- network = HostsWithSwitch
-
- # channel
- **.channel.datarate = ${datarate = 10Mbps, 100Mbps, 1Gbps}
- **.channel.delay = 10s/200000000
-
- # MAC
- **.csmacdSupport = ${csmacd = true, false}
- **.duplexMode = ${duplex = true}
- **.duplexEnabled = ${duplex}
- **.frameBursting = ${burst = false}
- **.queueType = ${queue = "DropTailQueue", ""}
- **.queue.dataQueue.frameCapacity = 100000 # external queue
- **.txQueueLimit = 100000 # internal queue
- # switch
- **.relayUnit.highWatermark = 10KiB
- **.relayUnit.processingTime = 1ms
- # traffic generator
- **.hostA.app.destAddress = "hostC"
- **.hostB.app.destAddress = "hostC"
- **.hostC.app.destAddress = "hostA"
- **.hostC.app.packetLength = 10B
- **.hostC.app.numPacketsPerBurst = 1
- **.hostC.app.sendInterval = 1s
- **.app.packetLength = 1500B
- **.app.numPacketsPerBurst = 20
- **.app.sendInterval = 1s
|