123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- %description:
- Testing Add-IP: Start with a multihomed network. After 10s the server
- asks the client to set the primary address to the second path.
- Retransmissions should then be visible on the second path.
- %#--------------------------------------------------------------------------------------------------------------
- %#--------------------------------------------------------------------------------------------------------------
- %inifile: omnetpp.ini
- [General]
- network=multihomed
- cmdenv-event-banners=false
- cmdenv-express-mode = false
- tkenv-plugin-path = ../../../etc/plugins
- ned-path = .;../../../../src;../../lib
- #omnetpp 5.0 - 5.1 compatibility:
- eventlog-file = "${resultdir}/${configname}-${runnumber}.elog"
- output-scalar-file = "${resultdir}/${configname}-${runnumber}.sca"
- output-vector-file = "${resultdir}/${configname}-${runnumber}.vec"
- snapshot-file = "${resultdir}/${configname}-${runnumber}.sna"
- **.testing = false
- **.testTimeout = 0
- # udp app (off)
- **.numUdpApps = 0
- **.udpType = ""
- **.numTcpApps = 0
- **.tcpType = "TCP"
- # sctp apps
- **.sctp_client.numSctpApps = 1
- **.sctp_client.sctpType="SCTP"
- **.sctp_client.sctpApp[0].typename = "SCTPClient"
- **.sctp_client.sctpApp[0].localAddress = "10.1.1.1 10.2.1.1 "
- **.sctp_client.sctpApp[0].connectAddress = "10.1.3.1"
- **.sctp_client.sctpApp[0].primaryPath = "10.1.3.1"
- **.sctp_client.sctpApp[0].connectPort = 6666
- **.sctp_client.sctpApp[0].requestLength= 1452
- **.sctp_client.sctpApp[0].startTime = truncnormal(1s,0.2s)
- **.sctp_client.sctpApp[0].stopTime = truncnormal(20s,2s)
- **.sctp_client.sctpApp[0].numRequestsPerSession = 100000000
- **.sctp_client.sctpApp[0].queueSize = 100
- **.sctp_client.sctpApp[0].outboundStreams = 1
- **.sctp_client.sctp.chunks = "ASCONF,ASCONF_ACK"
- **.sctp_client.sctp.addAddress = ""
- **.sctp_client.sctp.addIpType = "0"
- **.sctp_client.sctp.addTime = 0s
- **.sctp_server.numSctpApps = 1
- **.sctp_server.sctpType="SCTP"
- **.sctp_server.sctpApp[0].typename = "SCTPServer"
- **.sctp_server.sctpApp[*].localAddress = "10.1.3.1 10.2.3.1"
- **.sctp_server.sctpApp[0].localPort = 6666
- **.sctp_server.sctpApp[*].queueSize = 0 #Size of sendQueue before App is notified to send new data
- **.sctp_server.sctpApp[*].numPacketsToSendPerClient = 0
- **.sctp_server.sctpApp[*].numPacketsToReceivePerClient = 0
- **.sctp_server.sctpApp[*].outboundStreams = 1
- **.sctp_server.sctp.chunks = "ASCONF,ASCONF_ACK"
- **.sctp_server.sctp.addAddress = "10.2.3.1"
- **.sctp_server.sctp.addIpType = "49156"
- #NONE = 0, SET_PRIMARY_ADDRESS= 49156, ADAPTATION_LAYER_INDICATION= 49158, SUPPORTED_EXTENSIONS= 32776,
- #ADD_IP_ADDRESS = 49153, DELETE_IP_ADDRESS= 49154, ERROR_CAUSE_INDICATION= 49155, SUCCESS_INDICATION= 49157
- **.sctp_server.sctp.addTime = 10s
- # sctp settings
- **.sctp.sctpAlgorithmClass = "SCTPAlg"
- **.sctp.addIP = true
- %#--------------------------------------------------------------------------------------------------------------
- %contains-regex: results/General-0.sca
- scalar multihomed.sctp_client.sctp "Number of Fast Retransmissions 1:10.1.3.1" [1-9][0-9]*
- %#--------------------------------------------------------------------------------------------------------------
|