重定向 ip6tables 中的端口
如何使用 ip6tables 将一个端口重定向到另一个本地端口? 例如这样的东西: ip6tables -t nat -A 预路由 -j 重定向 -p tcp --dport 443 --to-ports 8443
How can I redirect one port to another local port by using ip6tables ?
e.g. something like this :
ip6tables -t nat -A PREROUTING -j REDIRECT -p tcp --dport 443 --to-ports 8443
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ip6tables
不支持REDIRECT
。 (通常人们在 NAT 环境中使用此功能,而 IPv6 通常不支持 NAT。)如果您所需要做的就是作为普通用户绑定到低端口,为什么不尝试 这个答案?当然,就 Tomcat 而言,听起来这意味着为任何 Java 进程提供该功能。
ip6tables
does not supportREDIRECT
. (Normally people use this in a NAT environment, and NAT is generally not supported with IPv6.)If all you need to do is bind to the low port as a normal user, why not try the workaround described in this answer? Of course, in the case of Tomcat, it sounds like this would mean giving any Java process that capability.
嗯,这是一个老问题,但因为我需要做同样的事情......这是我发现的:
当然,这仅对 ip6tables 有效。所以我想这是有效的:
但是,我没有'还没有尝试一下。
Well this is an old question, but since I need to do the same thing… Here is what I've found:
This is valid for ip6tables only, of course. So I guess that this is valid:
However, I didn't try it yet.