linux下檢測網絡的小工具使用集合

1、fping命令測試主機是否存活bash

一、fping  -a  -g 192.168.1.1 192.168.1.255ide

參數解釋:測試

-a  :顯示存活的(alive)spa

-g : 指定一個範圍 (group)ip

-u : 顯示不存活的(unreacheable)。和-a 是取反的效果it

二、更加精簡的寫法(掃描內網):io

fping -a -g 192.168.1.1/24function

三、將IP列表放在一個文件裏面,經過讀取文件來pingclass

fping -a -f ip.txtim

[root@host1 ~]# fping -a -f ip.txt

192.168.229.130

四、補充:

[root@host1 ~]# fping 192.168.229.130

192.168.229.130 is alive

[root@host1 ~]# fping www.baidu.com

www.baidu.com is alive

2、NC 及ping 檢測主機存活及端口狀態

#!/bin/bash
. /etc/init.d/functions
for i in `seq 130 133`
do
   {
        ping -w 1 -c 1 192.168.229.$i &>/dev/null
        if [ $? -eq 0 ];then
                echo "ip地址 192.168.229.$i 存活"    
                nc -z -w1 192.168.229.$i 22
                if [ $? -eq 0 ];then
                action "ip地址 192.168.229.$i 的22端口存活" /bin/true
                else
                action "ip地址 192.168.229.$i 的22端口未開放" /bin/false
                fi
        fi
   } &
done
wait
相關文章
相關標籤/搜索