12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- [General]
- network = Lan80211
- #cmdenv-output-file = omnetpp.log
- #debug-on-errors = true
- tkenv-plugin-path = ../../../etc/plugins
- #record-eventlog = true
- **.constraintAreaMinX = 0m
- **.constraintAreaMinY = 0m
- **.constraintAreaMinZ = 0m
- **.constraintAreaMaxX = 600m
- **.constraintAreaMaxY = 400m
- **.constraintAreaMaxZ = 0m
- # access point
- **.ap.wlan[*].mac.address = "10:00:00:00:00:00"
- **.host[*].**.mgmt.accessPointAddress = "10:00:00:00:00:00"
- **.mgmt.frameCapacity = 10
- # mobility
- **.host[*].mobilityType = "MassMobility"
- **.host[*].mobility.changeInterval = truncnormal(2ms, 0.5ms)
- **.host[*].mobility.changeAngleBy = normal(0deg, 30deg)
- **.host[*].mobility.speed = truncnormal(20mps, 8mps)
- **.host[*].mobility.updateInterval = 100ms
- # ping app (host[0] pinged by others)
- **.numPingApps = 1
- *.host[0].pingApp[0].destAddr = ""
- *.host[*].pingApp[0].destAddr = "host[0]"
- *.host[*].pingApp[0].sendInterval = 10ms
- # nic settings
- **.wlan*.bitrate = 2Mbps
- **.mac.address = "auto"
- **.mac.maxQueueSize = 14
- **.mac.rtsThresholdBytes = 3000B
- **.wlan[*].mac.retryLimit = 7
- **.wlan[*].mac.cwMinData = 7
- **.wlan[*].mac.cwMinBroadcast = 31
- **.wlan[*].radio.transmitter.power = 2mW
- **.wlan[*].radio.transmitter.bitrate = 2Mbps
- **.wlan[*].radio.transmitter.headerBitLength = 100b
- **.wlan[*].radio.transmitter.carrierFrequency = 2.4GHz
- **.wlan[*].radio.transmitter.bandwidth = 2MHz
- **.wlan[*].radio.receiver.sensitivity = -85dBm
- **.wlan[*].radio.receiver.snirThreshold = 4dB
- [Config Ping1]
- description = "host1 pinging host0"
- *.numHosts = 2
- [Config Ping2] # __interactive__
- description = "n hosts"
- # leave numHosts undefined here
|