njalin 发表于 2010-6-18 13:38:13

四个网卡,三个是外网,回流如何设置

以下是我的配置,回流方法用了各种办法,就是不行。

/ ip firewall mangle

add chain=prerouting src-address=192.168.0.1-192.168.0.254 \
    action=mark-routing new-routing-mark=adsl passthrough=yes comment="走ADSL" \
    disabled=no

add chain=prerouting src-address=192.168.1.1-192.168.1.254 \
    action=mark-routing new-routing-mark=dianxin passthrough=yes \
    comment="电信固定地址" disabled=no

add chain=prerouting src-address=192.168.2.1-192.168.2.254 action=mark-routing \
    new-routing-mark=edu passthrough=yes comment="走教育网" disabled=no

/ ip firewall nat

add chain=srcnat out-interface=dianxin src-address=192.168.0.0/21 \
    action=masquerade comment="通过电信固定地址上网" disabled=no

add chain=srcnat out-interface=adsl src-address=192.168.0.0/21 \
    action=masquerade comment="通过电信ADSL上网" disabled=no

add chain=srcnat out-interface=edu src-address=192.168.0.0/21 \
    action=masquerade comment="通过教育固定地址上网" disabled=no

YAWPYNG 发表于 2010-6-18 13:40:29

本帖最后由 YAWPYNG 于 2010-6-18 13:41 编辑

太舊的ROS版本才需要設定回流吧!
現在的ROS版本跟本不用阿.

你設回流原因是?????

njalin 发表于 2010-6-18 14:05:51

/ ip firewall nat
add chain=dstnat in-interface=dianxin dst-address=外网地址protocol=tcp \
    dst-port=80 action=dst-nat to-addresses=192.168.0.2 to-ports=80 comment="" \
    disabled=no
外网的80端口映射到192.168.0.2的80端口。这样外网可以访问了,但是内网不能!

zhjchina 发表于 2010-6-18 15:12:49

新版的一般不需要做回流,你这个是因为多线引起的问题
页: [1]
查看完整版本: 四个网卡,三个是外网,回流如何设置