Linux的shell脚本实战之检查主机IP是否存在
生活随笔
收集整理的這篇文章主要介紹了
Linux的shell脚本实战之检查主机IP是否存在
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Linux的shell腳本實戰之檢查主機IP是否存在
- 一、目的及要求
- 二、腳本內容
- 二、運行結果
一、目的及要求
二、腳本內容
二、運行結果
一、目的及要求
檢查 192.168.200.130~140 這段 IP 地址主機狀態是否正常。
二、腳本內容
#!/bin/bash ########################################################## #File Name:ipcheck.sh #Version:V1.0 #Aurhor:xx #Emali:xxxxxxxx #Created Time:2021-01-21 21:29:19 #Description: IP check ##########################################################for i in 192.168.200.{130..140} doping -c 2 -W 1 $i &> /dev/null if [ "$?" = "0" ];thenecho $i is OK! |tee /tmp/ip.txtelseecho $i is Error!fi done三、運行結果
[root@control scripts]# ./ipcheck.sh 192.168.200.130 is Error! 192.168.200.131 is Error! 192.168.200.132 is Error! 192.168.200.133 is OK! 192.168.200.134 is Error! 192.168.200.135 is OK! 192.168.200.136 is OK! 192.168.200.137 is Error! 192.168.200.138 is Error! 192.168.200.139 is Error! 192.168.200.140 is Error!總結
以上是生活随笔為你收集整理的Linux的shell脚本实战之检查主机IP是否存在的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux的文本字段统计方法
- 下一篇: Linux系统卡慢之调优方法