exec 3<>/dev/tcp/localhost/9999echo -e "Some Command\n" >&3
有时该套接字关闭并需要重新打开(重新启动服务器).
如何测试套接字(在这种情况下为fd#3)是否可写?
无论套接字是否已经关闭,回声总是会成功.
解决方法 解决方案是来自服务器的反馈.当您向服务器发送请求时,它需要回答它.
exec 3<>/dev/tcp/localhost/9999echo -e "Some Command\n" >&3sleep 5 # example max time given to server to respondcat <&3 #receive an answercheck is correct,restart server otherwise
编辑:
使用netcat确定端口是否打开
netcat -w 3 -z www.Google.com 80if[ $? -eq 0 ]then echo port openelse echo port closedfi总结
以上是内存溢出为你收集整理的linux – 检查socket是否在bash中关闭?全部内容,希望文章能够帮你解决linux – 检查socket是否在bash中关闭?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)