tcp4-uni-basic14 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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-basic14
  25. #
  26. # Description:
  27. # This test is simlar to tcp4-uni-basic01 except for the following condition
  28. # - Network is delayed
  29. # - IPcomp, tunnel mode
  30. #
  31. # Setup:
  32. # See testcases/network/stress/README
  33. #
  34. # Author:
  35. # Mitsuru Chinen <mitch@jp.ibm.com>
  36. #
  37. # History:
  38. # Oct 19 2005 - Created (Mitsuru Chinen)
  39. #
  40. #-----------------------------------------------------------------------
  41. # Uncomment line below for debug output.
  42. #trace_logic=${trace_logic:-"set -x"}
  43. $trace_logic
  44. #
  45. # Variables -- Changed by each uni-basic testcase
  46. #
  47. # The test case ID
  48. TCID=tcp4-uni-basic14
  49. # The version of IP
  50. IP_VER=4
  51. # true, if network is delayed
  52. DO_NET_DELAY=true
  53. # true, if ipsec is used
  54. DO_IPSEC=true
  55. # IPsec Protocol
  56. IPSEC_PROTO=ipcomp
  57. # IPsec Mode
  58. IPSEC_MODE=tunnel
  59. . tcp4-uni-basic01