免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: wchun
打印 上一主题 下一主题

多IP进行SNAT的问题 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2006-09-30 09:49 |只看该作者
11.16. SAME target
The SAME target works almost in the same fashion as the SNAT target, but it still differs. Basically, the SAME target will try to always use the same outgoing IP address for all connections initiated by a single host on your network. For example, say you have one /24 network (192.168.1.0) and 3 IP addresses (10.5.6.7-9). Now, if 192.168.1.20 went out through the .7 address the first time, the firewall will try to keep that machine always going out through that IP address.


谢谢,看起来很不错,等我试试~

论坛徽章:
0
12 [报告]
发表于 2006-09-30 10:13 |只看该作者
Option --to
Example iptables -t mangle -A PREROUTING -s 192.168.1.0/24 -j SAME --to 10.5.6.7-10.5.6.9
Explanation As you can see, the --to argument takes 2 IP addresses bound together by a - sign. These IP addresses, and all in between, are the IP addresses that we NAT to using the SAME algorithm.  
Option --nodst
Example iptables -t mangle -A PREROUTING -s 192.168.1.0/24 -j SAME --to 10.5.6.7-10.5.6.9 --nodst
Explanation Under normal action, the SAME target is calculating the followup connections based on both destination and source IP addresses. Using the --nodst option, it uses only the source IP address to find out which outgoing IP the NAT function should use for the specific connection. Without this argument, it uses a combination of the destination and source IP address.

论坛徽章:
0
13 [报告]
发表于 2006-09-30 11:33 |只看该作者
谢谢,现在已经正常了。

把原先的
/sbin/iptables -t nat -A POSTROUTING -s 0.0.0.0/0 -j SNAT --to-source xxx.xxx.xxx.1-xxx.xxx.xxx.6
修改为
/sbin/iptables -t nat -A POSTROUTING -s 0.0.0.0/0 -j SAME --to xxx.xxx.xxx.1-xxx.xxx.xxx.6

没有使用参数 --nodst
不知道加不加参数有什么实质上的不同。

论坛徽章:
0
14 [报告]
发表于 2006-09-30 14:44 |只看该作者
nodst我估计是应用在如下情况
用户要访问的是一个服务器群组,有很多个ip,而这些服务器群组形成一个应用。如果某一个用户用不用的ip去访问这个服务器群组中的不同服务器也会发生错误。
那么nodst可以让NAT无论某一用户访问什么网站,他第一次用什么ip出去以后还是用这个ip出去
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP