测试目标主机应用端口是否开通:telnet/ssh/wget/curl

telnet ip port  #远程登录目标主机,安全性低,不建议

ssh -v -p port username@ip  #远程登录目标主机,安全性高


wget ip:port #下载目标主机资源

wget *.*.*.11:8000


image.png


curl ip:port  #下载目标主机资源

curl *.*.*.11:8000


image.png

猜你喜欢

转载自blog.51cto.com/13502993/2455717