tcp4-uni-pktlossdup03 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #!/bin/sh
  2. ################################################################################
  3. ## ##
  4. ## Copyright (c) International Business Machines Corp., 2005 ##
  5. ## ##
  6. ## This program is free software; you can redistribute it and#or modify ##
  7. ## it under the terms of the GNU General Public License as published by ##
  8. ## the Free Software Foundation; either version 2 of the License, or ##
  9. ## (at your option) any later version. ##
  10. ## ##
  11. ## This program is distributed in the hope that it will be useful, but ##
  12. ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ##
  13. ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ##
  14. ## for more details. ##
  15. ## ##
  16. ## You should have received a copy of the GNU General Public License ##
  17. ## along with this program; if not, write to the Free Software ##
  18. ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ##
  19. ## ##
  20. ## ##
  21. ################################################################################
  22. #
  23. # File:
  24. # tcp4-uni-pktlossdup03
  25. #
  26. # Description:
  27. # This test is simlar to tcp4-uni-pktlossdup01 except for the following:
  28. # - IPsec(AH), tunnel mode
  29. #
  30. # Setup:
  31. # See testcases/network/stress/README
  32. #
  33. # Author:
  34. # Mitsuru Chinen <mitch@jp.ibm.com>
  35. #
  36. # History:
  37. # Oct 19 2005 - Created (Mitsuru Chinen)
  38. #
  39. #-----------------------------------------------------------------------
  40. # Uncomment line below for debug output.
  41. #trace_logic=${trace_logic:-"set -x"}
  42. $trace_logic
  43. #
  44. # Variables -- Changed by each uni-pktlossdup testcase
  45. #
  46. # The test case ID
  47. TCID=tcp4-uni-pktlossdup03
  48. # The version of IP
  49. IP_VER=4
  50. # true, if network is delayed
  51. DO_NET_DELAY=false
  52. # true, if ipsec is used
  53. DO_IPSEC=true
  54. # IPsec Protocol
  55. IPSEC_PROTO=ah
  56. # IPsec Mode
  57. IPSEC_MODE=tunnel
  58. . tcp4-uni-pktlossdup01