Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - t13ru

Pages: [1]
1
Or you can ping whole subnet by tiping:

windows:
C:\> FOR /L %i in (1,1,255) do @ping -n 1 10.10.10.%i | find "Reply"

linux:

  • # ping -b -c 3 255.255.255.255 >/dev/null 2>&1; arp -an | awk '{print $2}'
  • $ for i in `seq 1 255`; do ping -c 1 10.10.10.$i | tr \\n ' ' | awk '/1 received/ {print $2}'; done

Pages: [1]