你需要发送或接收非常简单的网络流量,但你没有安装netcat这样的工具。
如果你的bash 2.04以上版本是用--enable-net-reredictions
编译的(在Debian和衍生产品中不是这样编译的),你可以使用bash本身。
# exec 3<> /dev/tcp/baidu.com/443
# echo -e "GET" >&3
# cat <&3
HTTP/1.1 302 Moved Temporarily
Server: bfe/1.0.8.18
Date: Mon, 05 Jun 2023 11:41:11 GMT
Content-Type: text/html
Content-Length: 161
Connection: 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>
Copy
同样,这个方法也能用于判断端口是否开放,可用于替换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
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。