• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#! /bin/sh
2# Copyright (c) 2016 Oracle and/or its affiliates. All Rights Reserved.
3#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License as
6# published by the Free Software Foundation; either version 2 of
7# the License, or (at your option) any later version.
8#
9# This program is distributed in the hope that it would be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17TST_TOTAL=10
18TCID="ping02"
19
20. test_net.sh
21
22do_setup()
23{
24	COUNT=${COUNT:-3}
25	PACKETSIZES=${PACKETSIZES:-"8 16 32 64 128 256 512 1024 2048 4064"}
26
27	PING=ping${TST_IPV6}
28
29	tst_check_cmds $PING
30}
31
32do_test()
33{
34	local pat="000102030405060708090a0b0c0d0e0f"
35
36	tst_resm TINFO "flood $PING: ICMP packets filled with pattern '$pat'"
37
38	local ipaddr=$(tst_ipaddr rhost)
39	for psize in $PACKETSIZES; do
40		EXPECT_PASS $PING -c $COUNT -f -s $psize $ipaddr -p "$pat" \>/dev/null
41	done
42}
43
44do_setup
45do_test
46
47tst_exit
48