libnet4r 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +15 -0
- data/LICENSE +28 -0
- data/README +187 -0
- data/Rakefile +110 -0
- data/ext/extconf.rb +60 -0
- data/ext/libnet.c +705 -0
- data/ext/libnet_arp.c +152 -0
- data/ext/libnet_ethernet.c +115 -0
- data/ext/libnet_ipv4.c +140 -0
- data/ext/libnet_ipv6.c +138 -0
- data/ext/libnet_udp.c +112 -0
- data/ext/libnet_vlan.c +131 -0
- data/lib/libnet4r/header.rb +609 -0
- data/lib/libnet4r/helpers.rb +19 -0
- data/lib/libnet4r/libnet.rb +39 -0
- data/libnet/CVS/Entries +24 -0
- data/libnet/CVS/Repository +1 -0
- data/libnet/CVS/Root +1 -0
- data/libnet/Makefile.am +15 -0
- data/libnet/Makefile.am.common +10 -0
- data/libnet/Makefile.in +443 -0
- data/libnet/README +21 -0
- data/libnet/VERSION +1 -0
- data/libnet/acconfig.h +36 -0
- data/libnet/acinclude.m4 +463 -0
- data/libnet/aclocal.m4 +1337 -0
- data/libnet/autom4te.cache/CVS/Entries +1 -0
- data/libnet/autom4te.cache/CVS/Repository +1 -0
- data/libnet/autom4te.cache/CVS/Root +1 -0
- data/libnet/autom4te.cache/output.0 +6225 -0
- data/libnet/autom4te.cache/requests +111 -0
- data/libnet/autom4te.cache/traces.0 +272 -0
- data/libnet/config.guess +1314 -0
- data/libnet/config.sub +1410 -0
- data/libnet/configure +6225 -0
- data/libnet/configure.in +235 -0
- data/libnet/doc/BUGS +19 -0
- data/libnet/doc/CHANGELOG +527 -0
- data/libnet/doc/CONTRIB +53 -0
- data/libnet/doc/COPYING +31 -0
- data/libnet/doc/CVS/Entries +12 -0
- data/libnet/doc/CVS/Repository +1 -0
- data/libnet/doc/CVS/Root +1 -0
- data/libnet/doc/DESIGN_NOTES +134 -0
- data/libnet/doc/MIGRATION +172 -0
- data/libnet/doc/PACKET_BUILDING +161 -0
- data/libnet/doc/PORTED +45 -0
- data/libnet/doc/RAWSOCKET_NON_SEQUITUR +41 -0
- data/libnet/doc/TODO +96 -0
- data/libnet/doc/html/acconfig_8h-source.html +49 -0
- data/libnet/doc/html/annotated.html +17 -0
- data/libnet/doc/html/bpf_8h-source.html +277 -0
- data/libnet/doc/html/config_8h-source.html +125 -0
- data/libnet/doc/html/doxygen.css +169 -0
- data/libnet/doc/html/doxygen.png +0 -0
- data/libnet/doc/html/files.html +29 -0
- data/libnet/doc/html/functions.html +26 -0
- data/libnet/doc/html/functions_vars.html +26 -0
- data/libnet/doc/html/getopt_8h-source.html +97 -0
- data/libnet/doc/html/globals.html +219 -0
- data/libnet/doc/html/globals_defs.html +104 -0
- data/libnet/doc/html/globals_func.html +136 -0
- data/libnet/doc/html/gnuc_8h-source.html +56 -0
- data/libnet/doc/html/graph_legend.dot +22 -0
- data/libnet/doc/html/graph_legend.html +75 -0
- data/libnet/doc/html/ifaddrlist_8h-source.html +65 -0
- data/libnet/doc/html/in__systm_8h-source.html +90 -0
- data/libnet/doc/html/index.html +17 -0
- data/libnet/doc/html/libnet-asn1_8h-source.html +268 -0
- data/libnet/doc/html/libnet-functions_8h-source.html +742 -0
- data/libnet/doc/html/libnet-functions_8h.html +8844 -0
- data/libnet/doc/html/libnet-headers_8h-source.html +1655 -0
- data/libnet/doc/html/libnet-headers_8h.html +3053 -0
- data/libnet/doc/html/libnet-macros_8h-source.html +161 -0
- data/libnet/doc/html/libnet-macros_8h.html +358 -0
- data/libnet/doc/html/libnet-structures_8h-source.html +233 -0
- data/libnet/doc/html/libnet-types_8h-source.html +58 -0
- data/libnet/doc/html/libnet_8h-source.html +119 -0
- data/libnet/doc/html/libnet_8h.html +24 -0
- data/libnet/doc/html/structlibnet__802__1q__hdr.html +145 -0
- data/libnet/doc/html/structlibnet__802__1x__hdr.html +97 -0
- data/libnet/doc/libnet.doxygen.conf +1102 -0
- data/libnet/doc/man/CVS/Entries +1 -0
- data/libnet/doc/man/CVS/Repository +1 -0
- data/libnet/doc/man/CVS/Root +1 -0
- data/libnet/doc/man/man3/libnet-functions.h.3 +3136 -0
- data/libnet/doc/man/man3/libnet-headers.h.3 +1872 -0
- data/libnet/doc/man/man3/libnet-macros.h.3 +172 -0
- data/libnet/doc/man/man3/libnet.h.3 +17 -0
- data/libnet/doc/man/man3/libnet_802_1q_hdr.3 +53 -0
- data/libnet/doc/man/man3/libnet_802_1x_hdr.3 +41 -0
- data/libnet/include/CVS/Entries +10 -0
- data/libnet/include/CVS/Repository +1 -0
- data/libnet/include/CVS/Root +1 -0
- data/libnet/include/Makefile.am +7 -0
- data/libnet/include/Makefile.in +395 -0
- data/libnet/include/bpf.h +264 -0
- data/libnet/include/config.h.in +118 -0
- data/libnet/include/gnuc.h +43 -0
- data/libnet/include/ifaddrlist.h +52 -0
- data/libnet/include/libnet/CVS/Entries +9 -0
- data/libnet/include/libnet/CVS/Repository +1 -0
- data/libnet/include/libnet/CVS/Root +1 -0
- data/libnet/include/libnet/Makefile.am +12 -0
- data/libnet/include/libnet/Makefile.in +294 -0
- data/libnet/include/libnet/libnet-asn1.h +255 -0
- data/libnet/include/libnet/libnet-functions.h +2157 -0
- data/libnet/include/libnet/libnet-headers.h +1662 -0
- data/libnet/include/libnet/libnet-macros.h +186 -0
- data/libnet/include/libnet/libnet-structures.h +222 -0
- data/libnet/include/libnet/libnet-types.h +45 -0
- data/libnet/include/libnet.h.in +132 -0
- data/libnet/include/stamp-h.in +1 -0
- data/libnet/include/win32/CVS/Entries +5 -0
- data/libnet/include/win32/CVS/Repository +1 -0
- data/libnet/include/win32/CVS/Root +1 -0
- data/libnet/include/win32/config.h +112 -0
- data/libnet/include/win32/getopt.h +84 -0
- data/libnet/include/win32/in_systm.h +77 -0
- data/libnet/include/win32/libnet.h +106 -0
- data/libnet/install-sh +250 -0
- data/libnet/libnet-config.in +62 -0
- data/libnet/libnet.doxygen.conf +1102 -0
- data/libnet/man/CVS/Entries +1 -0
- data/libnet/man/CVS/Repository +1 -0
- data/libnet/man/CVS/Root +1 -0
- data/libnet/missing +283 -0
- data/libnet/mkinstalldirs +40 -0
- data/libnet/sample/CVS/Entries +47 -0
- data/libnet/sample/CVS/Repository +1 -0
- data/libnet/sample/CVS/Root +1 -0
- data/libnet/sample/Makefile.am +63 -0
- data/libnet/sample/Makefile.in +729 -0
- data/libnet/sample/arp-new.c +144 -0
- data/libnet/sample/arp.c +151 -0
- data/libnet/sample/bgp4_hdr.c +225 -0
- data/libnet/sample/bgp4_notification.c +242 -0
- data/libnet/sample/bgp4_open.c +266 -0
- data/libnet/sample/bgp4_update.c +337 -0
- data/libnet/sample/cdp.c +187 -0
- data/libnet/sample/dhcp_discover.c +257 -0
- data/libnet/sample/dns.c +260 -0
- data/libnet/sample/dot1x.c +113 -0
- data/libnet/sample/fddi_tcp1.c +213 -0
- data/libnet/sample/fddi_tcp2.c +209 -0
- data/libnet/sample/get_addr.c +112 -0
- data/libnet/sample/gre.c +410 -0
- data/libnet/sample/icmp6_echoreq.c +184 -0
- data/libnet/sample/icmp_echo_cq.c +201 -0
- data/libnet/sample/icmp_redirect.c +200 -0
- data/libnet/sample/icmp_timeexceed.c +190 -0
- data/libnet/sample/icmp_timestamp.c +157 -0
- data/libnet/sample/icmp_unreach.c +204 -0
- data/libnet/sample/ieee.c +177 -0
- data/libnet/sample/ip_link.c +201 -0
- data/libnet/sample/ip_raw.c +180 -0
- data/libnet/sample/isl.c +167 -0
- data/libnet/sample/libnet_test.h +60 -0
- data/libnet/sample/mpls.c +251 -0
- data/libnet/sample/ntp.c +193 -0
- data/libnet/sample/ospf_hello.c +179 -0
- data/libnet/sample/ospf_lsa.c +190 -0
- data/libnet/sample/ping_of_death.c +171 -0
- data/libnet/sample/rpc_tcp.c +214 -0
- data/libnet/sample/rpc_udp.c +213 -0
- data/libnet/sample/sebek.c +299 -0
- data/libnet/sample/smurf.c +194 -0
- data/libnet/sample/stp.c +227 -0
- data/libnet/sample/synflood.c +200 -0
- data/libnet/sample/synflood6.c +209 -0
- data/libnet/sample/synflood6_frag.c +234 -0
- data/libnet/sample/tcp1.c +227 -0
- data/libnet/sample/tcp2.c +192 -0
- data/libnet/sample/tftp.c +207 -0
- data/libnet/sample/tring_tcp1.c +214 -0
- data/libnet/sample/tring_tcp2.c +210 -0
- data/libnet/sample/udp1.c +223 -0
- data/libnet/sample/udp2.c +232 -0
- data/libnet/sample/win32/CVS/Entries +9 -0
- data/libnet/sample/win32/CVS/Repository +1 -0
- data/libnet/sample/win32/CVS/Root +1 -0
- data/libnet/sample/win32/arp/CVS/Entries +2 -0
- data/libnet/sample/win32/arp/CVS/Repository +1 -0
- data/libnet/sample/win32/arp/CVS/Root +1 -0
- data/libnet/sample/win32/arp/arp.vcproj +136 -0
- data/libnet/sample/win32/cdp/CVS/Entries +2 -0
- data/libnet/sample/win32/cdp/CVS/Repository +1 -0
- data/libnet/sample/win32/cdp/CVS/Root +1 -0
- data/libnet/sample/win32/cdp/cdp.vcproj +136 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Entries +2 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Repository +1 -0
- data/libnet/sample/win32/dhcp_discover/CVS/Root +1 -0
- data/libnet/sample/win32/dhcp_discover/dhcp_discover.vcproj +139 -0
- data/libnet/sample/win32/dns/CVS/Entries +2 -0
- data/libnet/sample/win32/dns/CVS/Repository +1 -0
- data/libnet/sample/win32/dns/CVS/Root +1 -0
- data/libnet/sample/win32/dns/dns.vcproj +139 -0
- data/libnet/sample/win32/get_addr/CVS/Entries +2 -0
- data/libnet/sample/win32/get_addr/CVS/Repository +1 -0
- data/libnet/sample/win32/get_addr/CVS/Root +1 -0
- data/libnet/sample/win32/get_addr/get_addr.vcproj +139 -0
- data/libnet/sample/win32/getopt.c +121 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Entries +2 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Repository +1 -0
- data/libnet/sample/win32/icmp_echo_cq/CVS/Root +1 -0
- data/libnet/sample/win32/icmp_echo_cq/icmp_echo_cq.vcproj +139 -0
- data/libnet/sample/win32/tcp1/CVS/Entries +2 -0
- data/libnet/sample/win32/tcp1/CVS/Repository +1 -0
- data/libnet/sample/win32/tcp1/CVS/Root +1 -0
- data/libnet/sample/win32/tcp1/tcp1.vcproj +142 -0
- data/libnet/sample/win32/udp1/CVS/Entries +3 -0
- data/libnet/sample/win32/udp1/CVS/Repository +1 -0
- data/libnet/sample/win32/udp1/CVS/Root +1 -0
- data/libnet/sample/win32/udp1/dns.vcproj +125 -0
- data/libnet/sample/win32/udp1/udp1.vcproj +139 -0
- data/libnet/src/CVS/Entries +60 -0
- data/libnet/src/CVS/Repository +1 -0
- data/libnet/src/CVS/Root +1 -0
- data/libnet/src/Makefile.am +71 -0
- data/libnet/src/Makefile.in +428 -0
- data/libnet/src/libnet_advanced.c +136 -0
- data/libnet/src/libnet_asn1.c +436 -0
- data/libnet/src/libnet_build_802.1q.c +115 -0
- data/libnet/src/libnet_build_802.1x.c +103 -0
- data/libnet/src/libnet_build_802.2.c +167 -0
- data/libnet/src/libnet_build_802.3.c +101 -0
- data/libnet/src/libnet_build_arp.c +169 -0
- data/libnet/src/libnet_build_bgp.c +350 -0
- data/libnet/src/libnet_build_cdp.c +191 -0
- data/libnet/src/libnet_build_data.c +90 -0
- data/libnet/src/libnet_build_dhcp.c +156 -0
- data/libnet/src/libnet_build_dns.c +129 -0
- data/libnet/src/libnet_build_ethernet.c +173 -0
- data/libnet/src/libnet_build_fddi.c +191 -0
- data/libnet/src/libnet_build_gre.c +427 -0
- data/libnet/src/libnet_build_icmp.c +437 -0
- data/libnet/src/libnet_build_igmp.c +112 -0
- data/libnet/src/libnet_build_ip.c +892 -0
- data/libnet/src/libnet_build_ipsec.c +232 -0
- data/libnet/src/libnet_build_isl.c +113 -0
- data/libnet/src/libnet_build_link.c +90 -0
- data/libnet/src/libnet_build_mpls.c +112 -0
- data/libnet/src/libnet_build_ntp.c +121 -0
- data/libnet/src/libnet_build_ospf.c +699 -0
- data/libnet/src/libnet_build_rip.c +108 -0
- data/libnet/src/libnet_build_rpc.c +138 -0
- data/libnet/src/libnet_build_sebek.c +108 -0
- data/libnet/src/libnet_build_snmp.c +52 -0
- data/libnet/src/libnet_build_stp.c +222 -0
- data/libnet/src/libnet_build_tcp.c +365 -0
- data/libnet/src/libnet_build_token_ring.c +193 -0
- data/libnet/src/libnet_build_udp.c +111 -0
- data/libnet/src/libnet_build_vrrp.c +117 -0
- data/libnet/src/libnet_checksum.c +376 -0
- data/libnet/src/libnet_cq.c +395 -0
- data/libnet/src/libnet_crc.c +113 -0
- data/libnet/src/libnet_dll.c +47 -0
- data/libnet/src/libnet_error.c +55 -0
- data/libnet/src/libnet_if_addr.c +415 -0
- data/libnet/src/libnet_init.c +234 -0
- data/libnet/src/libnet_internal.c +310 -0
- data/libnet/src/libnet_link_bpf.c +348 -0
- data/libnet/src/libnet_link_dlpi.c +785 -0
- data/libnet/src/libnet_link_linux.c +310 -0
- data/libnet/src/libnet_link_nit.c +125 -0
- data/libnet/src/libnet_link_none.c +66 -0
- data/libnet/src/libnet_link_pf.c +179 -0
- data/libnet/src/libnet_link_snit.c +149 -0
- data/libnet/src/libnet_link_snoop.c +166 -0
- data/libnet/src/libnet_link_win32.c +346 -0
- data/libnet/src/libnet_pblock.c +511 -0
- data/libnet/src/libnet_port_list.c +295 -0
- data/libnet/src/libnet_prand.c +106 -0
- data/libnet/src/libnet_raw.c +257 -0
- data/libnet/src/libnet_resolve.c +414 -0
- data/libnet/src/libnet_version.c +54 -0
- data/libnet/src/libnet_write.c +502 -0
- data/libnet/version.h.in +6 -0
- data/libnet/win32/CVS/Entries +15 -0
- data/libnet/win32/CVS/Repository +1 -0
- data/libnet/win32/CVS/Root +1 -0
- data/libnet/win32/Libnet-1.1.1-2002.sln +77 -0
- data/libnet/win32/Libnet-1.1.1-2003.ncb +0 -0
- data/libnet/win32/Libnet-1.1.1-2003.sln +84 -0
- data/libnet/win32/Libnet-1.1.1-2003.suo +0 -0
- data/libnet/win32/Libnet-1.1.1.vcproj +311 -0
- data/libnet/win32/Libnet-latest.ncb +0 -0
- data/libnet/win32/Libnet-latest.opt +0 -0
- data/libnet/win32/Libnet-latest.sln +77 -0
- data/libnet/win32/Libnet-latest.suo +0 -0
- data/libnet/win32/Libnet-latest.vcproj +311 -0
- data/libnet/win32/Libnet.dsp +337 -0
- data/libnet/win32/Libnet.dsw +32 -0
- data/libnet/win32/README.txt +57 -0
- data/libnet/win32/libnet_dll.def +164 -0
- data/test/tc_arp.rb +169 -0
- data/test/tc_class.rb +219 -0
- data/test/tc_ethernet.rb +97 -0
- data/test/tc_header.rb +163 -0
- data/test/tc_init.rb +25 -0
- data/test/tc_ipv4.rb +219 -0
- data/test/tc_ipv6.rb +235 -0
- data/test/tc_udp.rb +229 -0
- data/test/tc_vlan.rb +118 -0
- data/test/ts_all.rb +15 -0
- metadata +401 -0
data/libnet/sample/gre.c
ADDED
@@ -0,0 +1,410 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* libnet 1.1
|
4
|
+
* Build a GRE packet
|
5
|
+
* To view: tcpdump -s 0 -n -X -vvv proto gre
|
6
|
+
*
|
7
|
+
* Copyright (c) 2003 Fr�d�ric Raynal <pappy@security-labs.org>
|
8
|
+
* All rights reserved.
|
9
|
+
*
|
10
|
+
*
|
11
|
+
* KNOWN BUG
|
12
|
+
* the encapsulated headers have wrong checksums. I guess this is due to
|
13
|
+
* the one pass libnet_pblock_coalesce() which is really to complicated :(
|
14
|
+
*
|
15
|
+
*
|
16
|
+
* Default packet:
|
17
|
+
* # ./gre -d 1.2.3.4
|
18
|
+
* libnet 1.1 packet shaping: GRE 1701 [link]
|
19
|
+
* Wrote 78 byte GRE packet; check the wire.
|
20
|
+
*
|
21
|
+
* 18:58:12.112157 192.168.1.2 > 1.2.3.4: gre 198.35.123.50.1234 > 103.69.139.107.53: S [bad tcp cksum 698a!] 16843009:16843009(0) win 32767 (ttl 64, id 242, len 40, bad cksum 0!) (ttl 255, id 255, len 64)
|
22
|
+
* 0x0000 4500 0040 00ff 0000 ff2f f4df c0a8 0102 E..@...../......
|
23
|
+
* 0x0010 0102 0304 0000 0800 4500 0028 00f2 0000 ........E..(....
|
24
|
+
* 0x0020 4006 0000 c623 7b32 6745 8b6b 04d2 0035 @....#{2gE.k...5
|
25
|
+
* 0x0030 0101 0101 0202 0202 5002 7fff 6666 0000 ........P...ff..
|
26
|
+
*
|
27
|
+
* Packet with a computed checksum
|
28
|
+
* # ./gre -d 1.2.3.4 -c 0
|
29
|
+
* libnet 1.1 packet shaping: GRE 1701 [link]
|
30
|
+
* Wrote 82 byte GRE packet; check the wire.
|
31
|
+
*
|
32
|
+
* 18:58:22.587513 192.168.1.2 > 1.2.3.4: gre [Cv0] C:7c62 198.35.123.50.1234 > 103.69.139.107.53: S [bad tcp cksum 698a!] 16843009:16843009(0) win 32767 (ttl 64, id 242, len 40, bad cksum 0!) (ttl 255, id 255, len 68)
|
33
|
+
* 0x0000 4500 0044 00ff 0000 ff2f f4db c0a8 0102 E..D...../......
|
34
|
+
* 0x0010 0102 0304 8000 0800 7c62 0000 4500 0028 ........|b..E..(
|
35
|
+
* 0x0020 00f2 0000 4006 0000 c623 7b32 6745 8b6b ....@....#{2gE.k
|
36
|
+
* 0x0030 04d2 0035 0101 0101 0202 0202 5002 7fff ...5........P...
|
37
|
+
* 0x0040 6666 0000 ff..
|
38
|
+
*
|
39
|
+
*
|
40
|
+
* Packet with a forced checksum
|
41
|
+
* # ./gre -d 1.2.3.4 -c 6666
|
42
|
+
* libnet 1.1 packet shaping: GRE 1701 [link]
|
43
|
+
* Wrote 68 byte GRE packet; check the wire.
|
44
|
+
*
|
45
|
+
* 19:04:12.108080 192.168.1.2 > 1.2.3.4: gre [Cv0] C:1a0a 198.35.123.50.1234 > 103.69.139.107.53: S [bad tcp cksum 698a!] 16843009:16843009(0) win 32767 (ttl 64, id 242, len 40, bad cksum 0!) (ttl 255, id 255, len 68)
|
46
|
+
* 0x0000 4500 0044 00ff 0000 ff2f f4db c0a8 0102 E..D...../......
|
47
|
+
* 0x0010 0102 0304 8000 0800 1a0a 0000 4500 0028 ............E..(
|
48
|
+
* 0x0020 00f2 0000 4006 0000 c623 7b32 6745 8b6b ....@....#{2gE.k
|
49
|
+
* 0x0030 04d2 0035 0101 0101 0202 0202 5002 7fff ...5........P...
|
50
|
+
* 0x0040 6666 0000 ff..
|
51
|
+
*
|
52
|
+
*
|
53
|
+
*
|
54
|
+
*
|
55
|
+
* Redistribution and use in source and binary forms, with or without
|
56
|
+
* modification, are permitted provided that the following conditions
|
57
|
+
* are met:
|
58
|
+
* 1. Redistributions of source code must retain the above copyright
|
59
|
+
* notice, this list of conditions and the following disclaimer.
|
60
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
61
|
+
* notice, this list of conditions and the following disclaimer in the
|
62
|
+
* documentation and/or other materials provided with the distribution.
|
63
|
+
*
|
64
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
65
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
66
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
67
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
68
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
69
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
70
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
71
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
72
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
73
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
74
|
+
* SUCH DAMAGE.
|
75
|
+
*
|
76
|
+
*/
|
77
|
+
|
78
|
+
#if (HAVE_CONFIG_H)
|
79
|
+
#include "../include/config.h"
|
80
|
+
#endif
|
81
|
+
#include "./libnet_test.h"
|
82
|
+
|
83
|
+
|
84
|
+
void
|
85
|
+
usage(char *prog)
|
86
|
+
{
|
87
|
+
fprintf(stderr, "Usage: %s\n", prog);
|
88
|
+
fprintf(stderr, "\t IP options: -d <dst ip> [-s src ip]\n");
|
89
|
+
fprintf(stderr, "\t GRE options: [-v] set RFC 2637 mode (PPP in GRE) (default is RFC 1701 for IP in GRE)\n");
|
90
|
+
fprintf(stderr, "\t\t RFC 1701 options (IP in GRE):\n");
|
91
|
+
fprintf(stderr, "\t\t [-c sum] [-r routing] [-k key] [-n seqnum]\n");
|
92
|
+
fprintf(stderr, "\t\t IP in GRE options: [-S src ip] [-D dst ip]\n");
|
93
|
+
fprintf(stderr, "\t\t RFC 2637 options (PPP in GRE):\n");
|
94
|
+
fprintf(stderr, "\t\t [-a ack]\n");
|
95
|
+
|
96
|
+
exit(1);
|
97
|
+
}
|
98
|
+
|
99
|
+
/*
|
100
|
+
* ---------------------------------
|
101
|
+
* | Delivery Header |
|
102
|
+
* ---------------------------------
|
103
|
+
* | GRE Header |
|
104
|
+
* ---------------------------------
|
105
|
+
* | Payload packet |
|
106
|
+
* ---------------------------------
|
107
|
+
*/
|
108
|
+
int
|
109
|
+
main(int argc, char *argv[])
|
110
|
+
{
|
111
|
+
char c;
|
112
|
+
libnet_t *l;
|
113
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
114
|
+
u_long src_ip = 0, dst_ip = 0, gre_src_ip = 0, gre_dst_ip = 0;
|
115
|
+
u_short checksum = 0, offset = 0;
|
116
|
+
u_char *routing = NULL;
|
117
|
+
u_long key = 0, seq = 0;
|
118
|
+
u_short gre_flags = 0;
|
119
|
+
u_long len;
|
120
|
+
u_long size = 0;
|
121
|
+
libnet_ptag_t t;
|
122
|
+
|
123
|
+
printf("libnet 1.1 packet shaping: GRE [link]\n");
|
124
|
+
|
125
|
+
/*
|
126
|
+
* Initialize the library. Root priviledges are required.
|
127
|
+
*/
|
128
|
+
l = libnet_init(
|
129
|
+
LIBNET_LINK, /* injection type */
|
130
|
+
NULL, /* network interface */
|
131
|
+
errbuf); /* error buffer */
|
132
|
+
|
133
|
+
if (!l)
|
134
|
+
{
|
135
|
+
fprintf(stderr, "libnet_init: %s", errbuf);
|
136
|
+
exit(EXIT_FAILURE);
|
137
|
+
}
|
138
|
+
|
139
|
+
/*
|
140
|
+
* parse options
|
141
|
+
*/
|
142
|
+
while ((c = getopt(argc, argv, "d:s:D:S:c:r:k:n:va:")) != EOF)
|
143
|
+
{
|
144
|
+
switch (c)
|
145
|
+
{
|
146
|
+
|
147
|
+
case 'd':
|
148
|
+
if ((dst_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
149
|
+
{
|
150
|
+
fprintf(stderr, "Bad destination IP address: %s\n", optarg);
|
151
|
+
exit(EXIT_FAILURE);
|
152
|
+
}
|
153
|
+
break;
|
154
|
+
case 's':
|
155
|
+
if ((src_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
156
|
+
{
|
157
|
+
fprintf(stderr, "Bad source IP address: %s\n", optarg);
|
158
|
+
exit(EXIT_FAILURE);
|
159
|
+
}
|
160
|
+
break;
|
161
|
+
case 'D':
|
162
|
+
if ((gre_dst_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
163
|
+
{
|
164
|
+
fprintf(stderr, "Bad destination IP address (GRE): %s\n", optarg);
|
165
|
+
exit(EXIT_FAILURE);
|
166
|
+
}
|
167
|
+
break;
|
168
|
+
case 'S':
|
169
|
+
if ((gre_src_ip = libnet_name2addr4(l, optarg, LIBNET_RESOLVE)) == -1)
|
170
|
+
{
|
171
|
+
fprintf(stderr, "Bad source IP address (GRE): %s\n", optarg);
|
172
|
+
exit(EXIT_FAILURE);
|
173
|
+
}
|
174
|
+
break;
|
175
|
+
case 'c':
|
176
|
+
checksum = atoi(optarg);
|
177
|
+
gre_flags|=GRE_CSUM;
|
178
|
+
break;
|
179
|
+
case 'r':
|
180
|
+
routing = optarg;
|
181
|
+
gre_flags|=GRE_ROUTING;
|
182
|
+
break;
|
183
|
+
case 'k':
|
184
|
+
key = atoi(optarg);
|
185
|
+
gre_flags|=GRE_KEY;
|
186
|
+
break;
|
187
|
+
case 'n':
|
188
|
+
seq = atoi(optarg);
|
189
|
+
gre_flags|=GRE_SEQ;
|
190
|
+
break;
|
191
|
+
case 'v':
|
192
|
+
gre_flags|=(GRE_VERSION_1|GRE_KEY);
|
193
|
+
break;
|
194
|
+
case 'a':
|
195
|
+
if (! (gre_flags & GRE_VERSION_1))
|
196
|
+
usage(argv[0]);
|
197
|
+
seq = atoi(optarg); /* seq in v0 is ack in v1 */
|
198
|
+
gre_flags|=GRE_ACK;
|
199
|
+
break;
|
200
|
+
default:
|
201
|
+
exit(EXIT_FAILURE);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
/*
|
206
|
+
* check options
|
207
|
+
*/
|
208
|
+
if (!dst_ip)
|
209
|
+
{
|
210
|
+
usage(argv[0]);
|
211
|
+
}
|
212
|
+
|
213
|
+
if (!src_ip)
|
214
|
+
{
|
215
|
+
src_ip = libnet_get_ipaddr4(l);
|
216
|
+
}
|
217
|
+
|
218
|
+
if (!gre_dst_ip)
|
219
|
+
{
|
220
|
+
gre_dst_ip = libnet_get_prand(LIBNET_PRu32);
|
221
|
+
}
|
222
|
+
|
223
|
+
if (!gre_src_ip)
|
224
|
+
{
|
225
|
+
gre_src_ip = libnet_get_prand(LIBNET_PRu32);
|
226
|
+
}
|
227
|
+
|
228
|
+
|
229
|
+
if ( (gre_flags & GRE_VERSION_MASK) == 0)
|
230
|
+
{
|
231
|
+
/*
|
232
|
+
* Build a TCP/IP packet embedded in GRE message
|
233
|
+
*/
|
234
|
+
size = LIBNET_TCP_H;
|
235
|
+
t = libnet_build_tcp(
|
236
|
+
1234, /* source port */
|
237
|
+
53, /* destination port */
|
238
|
+
0x01010101, /* sequence number */
|
239
|
+
0x02020202, /* acknowledgement num */
|
240
|
+
TH_SYN, /* control flags */
|
241
|
+
32767, /* window size */
|
242
|
+
0, /* checksum */
|
243
|
+
0, /* urgent pointer */
|
244
|
+
size, /* TCP packet size */
|
245
|
+
NULL, /* payload */
|
246
|
+
0, /* payload size */
|
247
|
+
l, /* libnet handle */
|
248
|
+
0); /* libnet id */
|
249
|
+
if (t == -1)
|
250
|
+
{
|
251
|
+
fprintf(stderr, "Can't build TCP header (GRE): %s\n", libnet_geterror(l));
|
252
|
+
goto bad;
|
253
|
+
}
|
254
|
+
|
255
|
+
size += LIBNET_IPV4_H;
|
256
|
+
t = libnet_build_ipv4(
|
257
|
+
size, /* length */
|
258
|
+
0, /* TOS */
|
259
|
+
242, /* IP ID */
|
260
|
+
0, /* IP Frag */
|
261
|
+
64, /* TTL */
|
262
|
+
IPPROTO_TCP, /* protocol */
|
263
|
+
0, /* checksum */
|
264
|
+
gre_src_ip, /* source IP */
|
265
|
+
gre_dst_ip, /* destination IP */
|
266
|
+
NULL, /* payload */
|
267
|
+
0, /* payload size */
|
268
|
+
l, /* libnet handle */
|
269
|
+
0); /* libnet id */
|
270
|
+
if (t == -1)
|
271
|
+
{
|
272
|
+
fprintf(stderr, "Can't build IP header (GRE): %s\n", libnet_geterror(l));
|
273
|
+
goto bad;
|
274
|
+
}
|
275
|
+
}
|
276
|
+
|
277
|
+
if ( (gre_flags & GRE_VERSION_MASK) == 1)
|
278
|
+
{
|
279
|
+
offset = libnet_get_prand(LIBNET_PRu16);
|
280
|
+
if (~gre_flags & GRE_ACK)
|
281
|
+
{
|
282
|
+
u_char ppp[4] = "\x00\x01"; /* PPP padding */
|
283
|
+
checksum = 2; /* checksum is in fact payload_s in PPP/GRE (v1) */
|
284
|
+
size = 2;
|
285
|
+
gre_flags|=GRE_SEQ;
|
286
|
+
key = libnet_get_prand(LIBNET_PRu32);
|
287
|
+
|
288
|
+
/*
|
289
|
+
* Build a PPP packet embedded in GRE message
|
290
|
+
*/
|
291
|
+
t = libnet_build_data(
|
292
|
+
ppp,
|
293
|
+
checksum,
|
294
|
+
l,
|
295
|
+
0
|
296
|
+
);
|
297
|
+
if (t == -1)
|
298
|
+
{
|
299
|
+
fprintf(stderr, "Can't build PPP header (GRE): %s\n", libnet_geterror(l));
|
300
|
+
goto bad;
|
301
|
+
}
|
302
|
+
}
|
303
|
+
gre_flags&=~(GRE_CSUM|GRE_ROUTING);
|
304
|
+
}
|
305
|
+
|
306
|
+
/*
|
307
|
+
* Build the GRE message
|
308
|
+
*/
|
309
|
+
if (gre_flags & GRE_ROUTING)
|
310
|
+
{
|
311
|
+
/* as packet are stacked, start by the last one, ie null sre */
|
312
|
+
size += LIBNET_GRE_SRE_H;
|
313
|
+
t = libnet_build_gre_last_sre(l, 0);
|
314
|
+
if (t == -1)
|
315
|
+
{
|
316
|
+
fprintf(stderr, "Can't build GRE last SRE header: %s\n", libnet_geterror(l));
|
317
|
+
goto bad;
|
318
|
+
}
|
319
|
+
size += LIBNET_GRE_SRE_H + strlen(routing);
|
320
|
+
t = libnet_build_gre_sre(
|
321
|
+
GRE_IP, /* address family */
|
322
|
+
0, /* offset */
|
323
|
+
strlen(routing), /* routing length */
|
324
|
+
routing, /* routing info */
|
325
|
+
NULL, /* payload */
|
326
|
+
0, /* payload size */
|
327
|
+
l, /* libnet handle */
|
328
|
+
0); /* libnet id */
|
329
|
+
if (t == -1)
|
330
|
+
{
|
331
|
+
fprintf(stderr, "Can't build GRE last SRE header: %s\n", libnet_geterror(l));
|
332
|
+
goto bad;
|
333
|
+
}
|
334
|
+
}
|
335
|
+
|
336
|
+
len = libnet_getgre_length(gre_flags);
|
337
|
+
size += len;
|
338
|
+
t = libnet_build_gre(
|
339
|
+
gre_flags, /* flags & version */
|
340
|
+
(gre_flags & GRE_VERSION_1 ? GRE_PPP : GRE_IP), /* type */
|
341
|
+
checksum, /* v0: checksum / v1: payload_s */
|
342
|
+
offset, /* v0: offset / v1: callID */
|
343
|
+
key, /* v0: key / v1: seq bum */
|
344
|
+
seq, /* v0: seq num / v1: ack */
|
345
|
+
size, /* length */
|
346
|
+
NULL, /* payload */
|
347
|
+
0, /* payload size */
|
348
|
+
l, /* libnet handle */
|
349
|
+
0); /* libnet id */
|
350
|
+
if (t == -1)
|
351
|
+
{
|
352
|
+
fprintf(stderr, "Can't build GRE header: %s\n", libnet_geterror(l));
|
353
|
+
goto bad;
|
354
|
+
}
|
355
|
+
|
356
|
+
|
357
|
+
/*
|
358
|
+
* Build the "real" IP header
|
359
|
+
*/
|
360
|
+
size+=LIBNET_IPV4_H;
|
361
|
+
t = libnet_build_ipv4(
|
362
|
+
size, /* length */
|
363
|
+
0, /* TOS */
|
364
|
+
255, /* IP ID */
|
365
|
+
0, /* IP Frag */
|
366
|
+
255, /* TTL */
|
367
|
+
IPPROTO_GRE, /* protocol */
|
368
|
+
0, /* checksum */
|
369
|
+
src_ip, /* source IP */
|
370
|
+
dst_ip, /* destination IP */
|
371
|
+
NULL, /* payload */
|
372
|
+
0, /* payload size */
|
373
|
+
l, /* libnet handle */
|
374
|
+
0); /* libnet id */
|
375
|
+
if (t == -1)
|
376
|
+
{
|
377
|
+
fprintf(stderr, "Can't build IP header (GRE): %s\n", libnet_geterror(l));
|
378
|
+
goto bad;
|
379
|
+
}
|
380
|
+
|
381
|
+
t = libnet_autobuild_ethernet(
|
382
|
+
"11:11:11:11:11:11", /* ethernet destination */
|
383
|
+
ETHERTYPE_IP, /* protocol type */
|
384
|
+
l); /* libnet handle */
|
385
|
+
if (t == -1)
|
386
|
+
{
|
387
|
+
fprintf(stderr, "Can't build ethernet header: %s\n",
|
388
|
+
libnet_geterror(l));
|
389
|
+
goto bad;
|
390
|
+
}
|
391
|
+
/*
|
392
|
+
* Write it to the wire.
|
393
|
+
*/
|
394
|
+
|
395
|
+
c = libnet_write(l);
|
396
|
+
if (c == -1)
|
397
|
+
{
|
398
|
+
fprintf(stderr, "Write error: %s\n", libnet_geterror(l));
|
399
|
+
goto bad;
|
400
|
+
}
|
401
|
+
else
|
402
|
+
{
|
403
|
+
fprintf(stderr, "Wrote %d byte GRE packet; check the wire.\n", c);
|
404
|
+
}
|
405
|
+
libnet_destroy(l);
|
406
|
+
return (EXIT_SUCCESS);
|
407
|
+
bad:
|
408
|
+
libnet_destroy(l);
|
409
|
+
return (EXIT_FAILURE);
|
410
|
+
}
|
@@ -0,0 +1,184 @@
|
|
1
|
+
/*
|
2
|
+
* $Id: icmp6_echoreq.c,v 1.1.1.1 2003/06/26 21:55:10 route Exp $
|
3
|
+
*
|
4
|
+
* Poseidon++ (c) 1996 - 2002 Mike D. Schiffman <mike@infonexus.com>
|
5
|
+
* Redone from synflood example by Stefan Schlott <stefan@ploing.de>
|
6
|
+
*
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
8
|
+
* modification, are permitted provided that the following conditions
|
9
|
+
* are met:
|
10
|
+
* 1. Redistributions of source code must retain the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
12
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
13
|
+
* notice, this list of conditions and the following disclaimer in the
|
14
|
+
* documentation and/or other materials provided with the distribution.
|
15
|
+
*
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
17
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
18
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
19
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
20
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
21
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
22
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
23
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
24
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
25
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
26
|
+
* SUCH DAMAGE.
|
27
|
+
*
|
28
|
+
*/
|
29
|
+
|
30
|
+
#if (HAVE_CONFIG_H)
|
31
|
+
#include "../include/config.h"
|
32
|
+
#endif
|
33
|
+
#include "./libnet_test.h"
|
34
|
+
|
35
|
+
struct t_pack
|
36
|
+
{
|
37
|
+
struct libnet_ipv6_hdr ip;
|
38
|
+
struct libnet_tcp_hdr tcp;
|
39
|
+
};
|
40
|
+
|
41
|
+
|
42
|
+
int
|
43
|
+
main(int argc, char **argv)
|
44
|
+
{
|
45
|
+
struct libnet_in6_addr dst_ip;
|
46
|
+
struct libnet_in6_addr src_ip;
|
47
|
+
u_short dst_prt = 0;
|
48
|
+
u_short src_prt = 0;
|
49
|
+
libnet_t *l;
|
50
|
+
libnet_ptag_t t;
|
51
|
+
u_char *cp;
|
52
|
+
char errbuf[LIBNET_ERRBUF_SIZE];
|
53
|
+
int i, c, packet_amt, burst_int, burst_amt, build_ip;
|
54
|
+
char srcname[100],dstname[100];
|
55
|
+
|
56
|
+
packet_amt = 0;
|
57
|
+
burst_int = 0;
|
58
|
+
burst_amt = 1;
|
59
|
+
|
60
|
+
printf("libnet 1.1 echo request ICMP6[raw]\n");
|
61
|
+
|
62
|
+
/*
|
63
|
+
* Initialize the library. Root priviledges are required.
|
64
|
+
*/
|
65
|
+
l = libnet_init(
|
66
|
+
LIBNET_RAW6, /* injection type */
|
67
|
+
NULL, /* network interface */
|
68
|
+
errbuf); /* error buffer */
|
69
|
+
|
70
|
+
if (l == NULL)
|
71
|
+
{
|
72
|
+
fprintf(stderr, "libnet_init() failed: %s", errbuf);
|
73
|
+
exit(EXIT_FAILURE);
|
74
|
+
}
|
75
|
+
|
76
|
+
while((c = getopt(argc, argv, "t:a:i:b:")) != EOF)
|
77
|
+
{
|
78
|
+
switch (c)
|
79
|
+
{
|
80
|
+
case 't':
|
81
|
+
if (!(cp = strrchr(optarg, '/')))
|
82
|
+
{
|
83
|
+
usage(argv[0]);
|
84
|
+
exit(EXIT_FAILURE);
|
85
|
+
}
|
86
|
+
*cp++ = 0;
|
87
|
+
dst_prt = (u_short)atoi(cp);
|
88
|
+
dst_ip = libnet_name2addr6(l, optarg, 1);
|
89
|
+
if (strncmp((char*)&dst_ip,(char*)&in6addr_error,sizeof(in6addr_error))==0)
|
90
|
+
{
|
91
|
+
fprintf(stderr, "Bad IP6 address: %s\n", optarg);
|
92
|
+
exit(EXIT_FAILURE);
|
93
|
+
}
|
94
|
+
break;
|
95
|
+
case 'a':
|
96
|
+
packet_amt = atoi(optarg);
|
97
|
+
break;
|
98
|
+
case 'i':
|
99
|
+
burst_int = atoi(optarg);
|
100
|
+
break;
|
101
|
+
case 'b':
|
102
|
+
burst_amt = atoi(optarg);
|
103
|
+
break;
|
104
|
+
default:
|
105
|
+
usage(argv[0]);
|
106
|
+
exit(EXIT_FAILURE);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
if (!dst_prt || strncmp((char*)&dst_ip,(char*)&in6addr_error,sizeof(in6addr_error))==0 || !packet_amt)
|
111
|
+
{
|
112
|
+
usage(argv[0]);
|
113
|
+
exit(EXIT_FAILURE);
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
libnet_seed_prand(l);
|
119
|
+
libnet_addr2name6_r(src_ip,1,srcname,sizeof(srcname));
|
120
|
+
libnet_addr2name6_r(dst_ip,1,dstname,sizeof(dstname));
|
121
|
+
|
122
|
+
for(t = LIBNET_PTAG_INITIALIZER, build_ip = 1; burst_amt--;)
|
123
|
+
{
|
124
|
+
for (i = 0; i < packet_amt; i++)
|
125
|
+
{
|
126
|
+
char payload[56];
|
127
|
+
int i;
|
128
|
+
for (i=0; i<56; i++) payload[i]='A'+((char)(i%26));
|
129
|
+
t = libnet_build_icmpv4_echo(ICMP6_ECHO,0,0,1,0,payload,sizeof(payload),l,t);
|
130
|
+
|
131
|
+
if (build_ip)
|
132
|
+
{
|
133
|
+
build_ip = 0;
|
134
|
+
libnet_build_ipv6(0,0,
|
135
|
+
LIBNET_ICMPV6_H + sizeof(payload),
|
136
|
+
IPPROTO_ICMP6,
|
137
|
+
64,
|
138
|
+
src_ip,
|
139
|
+
dst_ip,
|
140
|
+
NULL,
|
141
|
+
0,
|
142
|
+
l,
|
143
|
+
0);
|
144
|
+
}
|
145
|
+
printf("%15s/%5d -> %15s/%5d\n",
|
146
|
+
srcname,
|
147
|
+
ntohs(src_prt),
|
148
|
+
dstname,
|
149
|
+
dst_prt);
|
150
|
+
c = libnet_write(l);
|
151
|
+
if (c == -1)
|
152
|
+
{
|
153
|
+
fprintf(stderr, "libnet_write: %s\n", libnet_geterror(l));
|
154
|
+
}
|
155
|
+
#if !(__WIN32__)
|
156
|
+
usleep(250);
|
157
|
+
#else
|
158
|
+
Sleep(250);
|
159
|
+
#endif
|
160
|
+
|
161
|
+
}
|
162
|
+
#if !(__WIN32__)
|
163
|
+
sleep(burst_int);
|
164
|
+
#else
|
165
|
+
Sleep(burst_int * 1000);
|
166
|
+
#endif
|
167
|
+
}
|
168
|
+
exit(EXIT_SUCCESS);
|
169
|
+
}
|
170
|
+
|
171
|
+
|
172
|
+
void
|
173
|
+
usage(char *nomenclature)
|
174
|
+
{
|
175
|
+
fprintf(stderr,
|
176
|
+
"\n\nusage: %s -t -a [-i -b]\n"
|
177
|
+
"\t-t target, (ip6:address/port, e.g. ::1/23)\n"
|
178
|
+
"\t-a number of packets to send per burst\n"
|
179
|
+
"\t-i packet burst sending interval (defaults to 0)\n"
|
180
|
+
"\t-b number packet bursts to send (defaults to 1)\n" , nomenclature);
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
/* EOF */
|