sctp_prsctp_ttl.test 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. %description:
  2. Testing PR-SCTP: prMethod=PR_TTL prValue=0.5 se lifetime
  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 = 1 # 0=NONE 1=PR_TTL 2=PR_RTX 3=PR_PRIO 4=PR_STRRST
  39. **.sctp_client.sctpApp[0].prValue = 0.5 # 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. %#--------------------------------------------------------------------------------------------------------------
  52. %not-contains-regex: stdout
  53. "Association 1: number of Fast RTX=0"
  54. %not-contains-regex: stdout
  55. "Association 1\w* ForwardTsns=0"
  56. %#--------------------------------------------------------------------------------------------------------------