It depends on what you mean by tangible.
I would try something like ping -c 1 -b 192.168.0.255 > hosts and then
grep and sed around.
Or what about "for i in `seq 0 254`; do ping -c 1 192.168.0.$i; done >
hosts" and then grepping. You should perhaps specify a timeout, too. Or
use fping, which can do ...
I would try something like ping -c 1 -b 192.168.0.255 > hosts and then
grep and sed around.
Or what about "for i in `seq 0 254`; do ping -c 1 192.168.0.$i; done >
hosts" and then grepping. You should perhaps specify a timeout, too. Or
use fping, which can do ...
[ more ]