tcp6-uni-tso10 2.4 KB

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