将 AWK TCP 连接绑定到特定 IP
/inet/tcp/80/0/0
端口 80 已被 eth0:1(lighttpd 服务器)使用,但我想在 eth0 上绑定我的 AWK 进程。
有什么方法可以定义绑定 AWK 进程的 IP 吗?
/inet/tcp/80/0/0
Port 80 is already in use by eth0:1 (lighttpd server) but I'd like to bind my AWK process on eth0.
Is there any way you can define IP on which to bind AWK process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方法是在 AWK 中使用“netcat -l -p 80 -s you.ip.number”。
A workaround would be to use "netcat -l -p 80 -s you.ip.number" within AWK.