shell 批量检测远程端口
Posted lixinliang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 批量检测远程端口相关的知识,希望对你有一定的参考价值。
[[email protected] li]$ cat port.sh #!/bin/bash # ip=`cat iplist` for i in $ip;do port=`ssh -t $i "sudo netstat -anput" |grep 19100 |awk ‘{print $4}‘ |column -x |tr ‘ ‘ ‘ ‘` echo -e "$i $port" >> 19100_port.csv done # 打印ip 和 端口信息
以上是关于shell 批量检测远程端口的主要内容,如果未能解决你的问题,请参考以下文章