sctp_prsctp_rtx0.test 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. %description:
  2. Testing PR-SCTP: prMethod=PR_RTX prValue=0
  3. %#--------------------------------------------------------------------------------------------------------------
  4. %#--------------------------------------------------------------------------------------------------------------
  5. %inifile: omnetpp.ini
  6. [General]
  7. network=SCTPFeatureTest
  8. cmdenv-event-banners=false
  9. cmdenv-express-mode = false
  10. tkenv-plugin-path = ../../../etc/plugins
  11. ned-path = .;../../../../src;../../lib
  12. #omnetpp 5.0 - 5.1 compatibility:
  13. eventlog-file = "${resultdir}/${configname}-${runnumber}.elog"
  14. output-scalar-file = "${resultdir}/${configname}-${runnumber}.sca"
  15. output-vector-file = "${resultdir}/${configname}-${runnumber}.vec"
  16. snapshot-file = "${resultdir}/${configname}-${runnumber}.sna"
  17. **.testing = false
  18. **.testTimeout = 0
  19. # udp app (off)
  20. **.numUdpApps = 0
  21. **.udpType = ""
  22. **.numTcpApps = 0
  23. **.tcpType = "TCP"
  24. # sctp apps
  25. **.sctp_client.numSctpApps = 1
  26. **.sctp_client.sctpType="SCTP"
  27. **.sctp_client.sctpApp[0].typename = "SCTPClient"
  28. **.sctp_client.sctpApp[0].localAddress = "10.1.1.1"
  29. **.sctp_client.sctpApp[0].connectAddress = "10.1.3.1"
  30. **.sctp_client.sctpApp[0].primaryPath = "10.1.3.1"
  31. **.sctp_client.sctpApp[0].connectPort = 6666
  32. **.sctp_client.sctpApp[0].requestLength= 1452
  33. **.sctp_client.sctpApp[0].startTime = truncnormal(1s,0.2s)
  34. **.sctp_client.sctpApp[0].stopTime = truncnormal(100s,2s)
  35. **.sctp_client.sctpApp[0].numRequestsPerSession = 100000000
  36. **.sctp_client.sctpApp[0].queueSize = 100
  37. **.sctp_client.sctpApp[0].outboundStreams = 1
  38. **.sctp_client.sctpApp[0].prMethod = 2 # 0=NONE 1=PR_TTL 2=PR_RTX 3=PR_PRIO 4=PR_STRRST
  39. **.sctp_client.sctpApp[0].prValue = 0 # 0 retransmissions
  40. **.sctp_server.numSctpApps = 1
  41. **.sctp_server.sctpType="SCTP"
  42. **.sctp_server.sctpApp[0].typename = "SCTPServer"
  43. **.sctp_server.sctpApp[0].localAddress = "10.1.3.1"
  44. **.sctp_server.sctpApp[0].localPort = 6666
  45. **.sctp_server.sctpApp[*].queueSize = 0 #Size of sendQueue before App is notified to send new data
  46. **.sctp_server.sctpApp[*].numPacketsToSendPerClient = 0
  47. **.sctp_server.sctpApp[*].numPacketsToReceivePerClient = 0
  48. **.sctp_server.sctpApp[*].outboundStreams = 1
  49. # sctp settings
  50. **.sctp.sctpAlgorithmClass = "SCTPAlg"
  51. # NIC configuration
  52. #**.ppp[*].queueType = "DropTailQueue" # in routers
  53. #**.ppp[*].queue.frameCapacity = 100 # in routers
  54. #**.ppp[*].ppp.mtu = 1500 B
  55. %#--------------------------------------------------------------------------------------------------------------
  56. %contains: stdout
  57. Association 1: number of Fast RTX=0, number of Timer-Based RTX=0, path failures=0
  58. %not-contains-regex: stdout
  59. "Association 1\w* ForwardTsns=0"
  60. %#--------------------------------------------------------------------------------------------------------------