我在 15.01 有一个 Cisco 3925。
我试图让工程网络上的机器通过静态 NAT 访问 VLAN10 上管理网络上的网络服务器。管理网络上的 Web 服务器配置为 192.168.1.125。任何工程机器都可以在https://10.230.32.132访问网站的主页,但只要我点击网页上的链接,NAT 似乎就停止工作。我可以看到它试图从 192.168.1.125 而不是 10.230.32.132 加载下一个网页,因为我认为它应该直到它超时。从工程网络上的任何机器的角度来看,从该 Web 服务器加载的所有网页似乎都是从 10.230.32.132 加载的。
管理网络上的特定机器可以通过接口 gi/0/0 访问互联网,但工程网络上的机器不允许。最后一点可能不相关。网络服务器也可以访问互联网。
这里的相关设置:
Interface gi0/1.10
description Management Network
ip address 192.168.1.1 255.255.255.128
ip nat inside
encapsulation dot1Q 10
Interface gi0/2
description Engineering Network
ip address 10.230.32.132 255.255.255.0
ip nat outside
Interface gi0/0/0
description Connection to the Internet
ip address x.x.x.x 255.255.255.240
ip nat outside
ip nat inside source list 1 interface GigabitEthernet0/0 overload
ip nat inside source static 192.168.1.125 10.230.32.132
ip route 0.0.0.0 0 0.0.0.0 X.X.X.X <-- default gateway to the internet.
access-list 1 permit 192.168.1.111
access-list 1 permit 192.168.1.121
access-list 1 permit 192.168.1.125
access-list 1 deny any
关于如何解决这个问题的任何建议?