windows 怎么写一个脚本 定时测试五个IP地址的端口通不通 使用telnet
时间: 2024-06-08 22:09:01 浏览: 153
Windows下bat批处理脚本使用telnet批量检测远程端口小记
在Windows中可以使用批处理脚本来定时测试多个IP地址的端口通不通,使用telnet命令。以下是一个示例脚本:
```
@echo off
set ip1=192.168.0.1
set port1=80
set ip2=192.168.0.2
set port2=443
set ip3=192.168.0.3
set port3=22
set ip4=192.168.0.4
set port4=3389
set ip5=192.168.0.5
set port5=1433
:START
cls
echo Testing ports on the following IPs:
echo %ip1%:%port1%
echo %ip2%:%port2%
echo %ip3%:%port3%
echo %ip4%:%port4%
echo %ip5%:%port5%
echo.
echo Testing %ip1%:%port1%...
telnet %ip1% %port1%
echo.
echo Testing %ip2%:%port2%...
telnet %ip2% %port2%
echo.
echo Testing %ip3%:%port3%...
telnet %ip3% %port3%
echo.
echo Testing %ip4%:%port4%...
telnet %ip4% %port4%
echo.
echo Testing %ip5%:%port5%...
telnet %ip5% %port5%
echo.
timeout /t 60 > nul
goto START
```
此脚本会测试五个IP地址的指定端口是否通畅,并且每隔60秒重复测试。你可以根据需要修改IP地址和端口号。
阅读全文