Linux下网络工具

1.fping

apt-get install fping

-a 显示存活的
-g 查找范围

查看当前网络上的主机

fping -a -g 192.168.16.1 192.168.16.254
or
fping -a -g 192.168.16.0/24

2.nmap

nmap -PS 192.168.16.*  or nmap -PS 192.168.16.0/24

3.hping

wget https://github.com/antirez/hping/archive/master.zip
unzip master
cd hping-master
apt-get install libpcap-devel
./configure
make //提示:如果提示bpf.h 无法找到你
ln -s /usr/include/pcap/bpf.h  /usr/include/net/bpf.h
make install

你可能感兴趣的:(linux,网络,nmap)