You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for /L %i in (1,1,255) do @ping.exe -n 1 -w 50 10.10.10.%i | findstr TTL
22
+
```
23
+
24
+
tab - linux
25
+
26
+
```
27
+
for x in (1..255); do ping -c 1 -w 50 10.10.10.x | grep TTL
28
+
```
29
+
30
+
Change the IP `10.10.10.` to match the network you are scanning. This is set up to scan a /24 network by default, and will require some customization to do other size networks.
0 commit comments