File tree 4 files changed +60
-0
lines changed
4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ # impacket-ping
2
+
3
+ > This command is an alias of ` ping.py ` .
4
+ > Part of the Impacket suite.
5
+ > More information: < https://github.com/fortra/impacket > .
6
+
7
+ - View documentation for the original command:
8
+
9
+ ` tldr ping.py `
Original file line number Diff line number Diff line change
1
+ # impacket-ping6
2
+
3
+ > This command is an alias of ` ping6.py ` .
4
+ > Part of the Impacket suite.
5
+ > More information: < https://github.com/fortra/impacket > .
6
+
7
+ - View documentation for the original command:
8
+
9
+ ` tldr ping6.py `
Original file line number Diff line number Diff line change
1
+ # ping.py
2
+
3
+ > Simple ICMP ping using Impacket to check if an IPv4 host is reachable.
4
+ > Sends ICMP echo requests and listens for echo replies. Requires root privileges for raw socket access (e.g., run with ` sudo ` ).
5
+ > More information: < https://github.com/fortra/impacket > .
6
+
7
+ - Ping a host from a specified source IPv4 address:
8
+
9
+ ` ping.py {{source_ipv4}} {{destination_ipv4}} `
10
+
11
+ - Ping 192.168.1.100 from 192.168.1.10:
12
+
13
+ ` ping.py {{192.168.1.10}} {{192.168.1.100}} `
14
+
15
+ - Run continuously until interrupted (Ctrl+C):
16
+
17
+ ` ping.py {{source_ipv4}} {{destination_ipv4}} `
18
+
19
+ - Verify a single ping response from a host:
20
+
21
+ ` ping.py {{source_ipv4}} {{destination_ipv4}} `
Original file line number Diff line number Diff line change
1
+ # ping6.py
2
+
3
+ > Simple ICMPv6 ping using Impacket to check if an IPv6 host is reachable.
4
+ > Sends ICMPv6 echo requests and listens for echo replies. Requires root privileges for raw socket access (e.g., run with ` sudo ` ).
5
+ > More information: < https://github.com/fortra/impacket > .
6
+
7
+ - Ping an IPv6 host from a specified source IPv6 address:
8
+
9
+ ` ping6.py {{source_ipv6}} {{destination_ipv6}} `
10
+
11
+ - Ping 2001:db8::2 from 2001:db8::1:
12
+
13
+ ` ping6.py {{2001:db8::1}} {{2001:db8::2}} `
14
+
15
+ - Run continuously until interrupted (Ctrl+C):
16
+
17
+ ` ping6.py {{source_ipv6}} {{destination_ipv6}} `
18
+
19
+ - Verify a single ping response from an IPv6 host:
20
+
21
+ ` ping6.py {{source_ipv6}} {{destination_ipv6}} `
You can’t perform that action at this time.
0 commit comments