你需要发送或接收非常简单的网络流量,但你没有安装netcat这样的工具。
如果你的bash 2.04以上版本是用--enable-net-reredictions编译的(在Debian和衍生产品中不是这样编译的),你可以使用bash本身。
# exec 3<> /dev/tcp/baidu.com/443# echo -e "GET" >&3# cat <&3HTTP/1.1 302 Moved Temporarily Server: bfe/1.0.8.18 Date: Mon, 05 Jun 202311:41:11 GMT Content-Type: text/html Content-Length: 161Connection: close Location: http://www.baidu.com/error.html <html> <head><title>302 Found</title></head> <body bgcolor="white"> <center><h1>302 Found</h1></center> <hr><center>bfe/1.0.8.18</center> </body> </html>
同样,这个方法也能用于判断端口是否开放,可用于替换telnet和netcat在这方面的功能。
# 假如端口没问题,则返回0[root@ ~]# timeout 10s bash -c ':> /dev/tcp/baidu.com/443'[root@ ~]# echo $?0# 假如访问有问题,会返回其他值[root@ ~]# timeout 10s bash -c ':> /dev/tcp/google.com/443'[root@ ~]# echo $?124