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

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


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

wget *.*.*.11:8000


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


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

curl *.*.*.11:8000


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