[关闭]
@llplmlyd 2018-10-07T15:21:09.000000Z 字数 287 阅读 989

ping、nmap 扫描在线 ip

Shell


ping

shell脚本,判断192.168.150.0/24网络中 在线ip有哪些
并发ping方案:

  1. #!bin/bash
  2. CMD="ping -W 2 -c 2"
  3. ip="192.168.150."
  4. for n in $(seq 254)
  5. do
  6. {
  7. $CMD $ip$n &> /dev/null
  8. [ $? -eq 0 ] && echo "$ip$n is ok"
  9. }& #z这里是并发检测
  10. done

nmap

shell脚本

  1. #!bin/bash
  2. CMD="nmap -sP"
  3. ip="192.168.150.0/24"
  4. $CMD $ip|awk '/Nmap scan report for/ {print $NF}'
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注