123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <
- [General]
- network = ${targetTypeName}
- total-stack = 7MiB
- tkenv-plugin-path = ../../../etc/plugins
- <
- <
- **.server*.tcpType = "${serverTcpLayer}"
- **.client*.tcpType = "${clientTcpLayer}"
- <
- <
- **.server*.tcpApp[${appIdx}].typename = "TCPEchoApp"
- **.server*.tcpApp[${appIdx}].address = ""
- **.server*.tcpApp[${appIdx}].localPort = 1000
- **.server*.tcpApp[${appIdx}].echoFactor = 2.0
- **.server*.tcpApp[${appIdx}].echoDelay = 0
- **.client*.tcpApp[${appIdx}].typename = "TCPSessionApp"
- **.client*.tcpApp[${appIdx}].active = true
- **.client*.tcpApp[${appIdx}].address = ""
- **.client*.tcpApp[${appIdx}].localPort = -1
- **.client*.tcpApp[${appIdx}].connectAddress = "server"
- **.client*.tcpApp[${appIdx}].connectPort = 1000
- **.client*.tcpApp[${appIdx}].tOpen = ${startTime}s
- **.client*.tcpApp[${appIdx}].tSend = ${startTime+0.1}s
- **.client*.tcpApp[${appIdx}].sendBytes = 100MiB
- **.client*.tcpApp[${appIdx}].sendScript = ""
- **.client*.tcpApp[${appIdx}].tClose = 0
- <
- </
- <
- **.client*.tcpApp[${appIdx}].typename = "TelnetApp"
- **.client*.tcpApp[${appIdx}].address = ""
- **.client*.tcpApp[${appIdx}].localPort = 23
- **.client*.tcpApp[${appIdx}].connectAddress = "server"
- **.client*.tcpApp[${appIdx}].connectPort = 1000
- **.client*.tcpApp[${appIdx}].startTime = uniform(${startTime}s,${startTime+5}s)
- **.client*.tcpApp[${appIdx}].numCommands = exponential(10)
- **.client*.tcpApp[${appIdx}].commandLength = exponential(10B)
- **.client*.tcpApp[${appIdx}].keyPressDelay = exponential(0.1s)
- **.client*.tcpApp[${appIdx}].commandOutputLength = exponential(40B)
- **.client*.tcpApp[${appIdx}].thinkTime = truncnormal(2s,3s)
- **.client*.tcpApp[${appIdx}].idleInterval = truncnormal(3600s,1200s)
- **.client*.tcpApp[${appIdx}].reconnectInterval = 30s
- **.server*.tcpApp[${appIdx}].typename = "TCPGenericSrvApp"
- **.server*.tcpApp[${appIdx}].address = ""
- **.server*.tcpApp[${appIdx}].localPort = 1000
- **.server*.tcpApp[${appIdx}].replyDelay = 0
- <
- </
- **.server*.numTcpApps = ${appIdx}
- **.client*.numTcpApps = ${appIdx}
- </
- <
- **.server*.numUdpApps = 1
- **.server*.udpApp[*].typename = "UDPVideoStreamSvr"
- **.server*.udpApp[*].videoSize = 100MiB
- **.server*.udpApp[*].localPort = 3088
- **.server*.udpApp[*].sendInterval = 10ms
- **.server*.udpApp[*].packetLen = 1000B
- **.client*.numUdpApps = 1
- **.client*.udpApp[*].typename = "UDPVideoStreamCli"
- **.client*.udpApp[*].serverAddress = "server"
- **.client*.udpApp[*].localPort = 9999
- **.client*.udpApp[*].serverPort = 3088
- **.client*.udpApp[*].startTime = ${startTime}s
- </
- <
- **.client*.numPingApps = 1
- **.client*.pingApp[*].destAddr = "server"
- **.client*.pingApp[*].sendInterval = 50ms
- **.client*.pingApp[*].startTime = ${startTime}s
- **.client*.pingApp[*].printPing = true
- </
- <
- **.server*.numSctpApps = 1
- **.server*.sctpApp[*].typename = "SCTPServer"
- **.server*.sctpApp[0].address = ""
- **.server*.sctpApp[0].localPort = 1000
- **.server*.sctpApp[0].numPacketsToReceivePerClient = 30
- **.server*.sctpApp[0].echoFactor = 0
- **.client*.numSctpApps = 1
- **.client*.sctpApp[*].typename = "SCTPClient"
- **.client*.sctpApp[0].address = ""
- **.client*.sctpApp[0].connectAddress = "server"
- **.client*.sctpApp[0].primaryPath = "server"
- **.client*.sctpApp[0].localPort = -1
- **.client*.sctpApp[0].connectPort = 1000
- **.client*.sctpApp[0].numRequestsPerSession = 30
- **.client*.sctpApp[0].requestLength = 1000
- **.client*.sctpApp[0].thinkTime = exponential(0.1s)
- **.client*.sctpApp[0].queueSize = 0
- **.client*.sctpApp[0].startTime = ${startTime}s
- </
- **.eth[*].queueType = "DropTailQueue"
|