How would you probe the first few ports on TCP/UDP to see the host is alive like Angryipscanner but only on ipv6?Too see if the hosts are alive without ICMPv6?I am on Windows.
|
Technically speaking, host can be "alive" (define alive?) without replying to ICMP ping requests. E.g. you can block ICMPv4 and ICMPv6 traffic in the firewall (selectively, still allowing the crucial things like PMTU discovery), without any adverse effects. Same thing with TCP connection attempts. If you're trying to connect to a random port, you can get 3 different results:
How can you discriminate between 3 different possibilities in #3? Method to "ping" via TCP or UDPYou can "coerce" traceroute to make kind of "ping" via TCP or UDP:
Same request, only via UDP will fail:
You'll only need to pipe the results to grep, if you need this in a script. |
|||||
|
