interface Dialer1
ppp chap password cipher $c$3$YEofTnWdr5KvCiP/pe4qw52eZZi5dk9h+CfU
ppp chap user adxxxxx
ppp pap local-user adxxxx password cipher $c$3$PZW00ZkOPbRZ6IV6mzue4p1JcfZo9f8phchy
dialer bundle enable
dialer-group 1
dialer timer idle 0
ip address ppp-negotiate
tcp mss 1024
nat outbound 3000
#
interface Dialer2
ppp chap password cipher $c$3$YP3Wtm4sG6LMnke/sLQoqRY/f3TTsL9S1r4d
ppp chap user adxxxx
ppp pap local-user adxxxx password cipher $c$3$2u2XaMcufyPHXadAzz9Ec9WatzTFgni+NgTy
dialer bundle enable
dialer-group 2
dialer timer idle 0
ip address ppp-negotiate
tcp mss 1024
nat outbound 3000
nat server protocol tcp global 116.226.218.xxx 5000 inside 10.10.17.38 3389
nat server protocol tcp global 116.226.218.xxx 6000 inside 10.10.17.38 3389
#
interface NULL0
#
interface GigabitEthernet0/0
port link-mode route
combo enable copper
ip address 10.10.100.101 255.255.255.0
nat hairpin enable
#
interface GigabitEthernet0/1
port link-mode route
pppoe-client dial-bundle-number 1
#
interface GigabitEthernet0/2
port link-mode route
nat outbound 3000
nat server protocol tcp global 116.226.218.xxx 3389 inside 10.10.17.38 3389
pppoe-client dial-bundle-number 2
路由器是双WAN口的,有2根外网。
安装上面的配置做了2条端口映射,遇到了以后问题:
1、外网访问时总是有一个可以访问,一个不可以访问,感觉是随机的。。。
2、在用内网主机通过外网IP访问是正常的。。。。
问什么会出现这种情况。。。。。是因为双WAN口的关系? 求指示。。。。
(0)
最佳答案
路由器缺省路由是否是等价的?
如果是,则是外网用户通过NAT映射的地址远程桌面服务器时,流量分别走两个dialer接口。部分用户出现流量来回路径不一致导致(进来的时候从dialer2口进,出公网从dialer1出)。可以在路由器内网口配置PBR,针对服务器应答外网用户的流量,直接从dialer2出公网。配置命令可以参考如下:
#
acl advanced 3998
rule 0 permit ip source 10.10.17.38 0.0.0.0 destination 内网用户的网段 反掩码
acl advanced 3999
rule 0 permit ip source 10.10.17.38 0.0.0.0
#
policy-based-route server permit node 1
if-match acl 3998
#
policy-based-route server permit node 2
if-match acl 3999
apply output-interface Dialer2
#
interface GigabitEthernet0/0
ip policy-based-route server
#
(0)
已搞定,感谢。。。
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
已搞定,感谢。。。