Cisco 路由器 NAT 不起作用

Cisco 路由器 NAT 不起作用

我有来自提供商 的有效互联网连接,festethernret0并且还有vlan1。我需要从festethernret0到我的建立互联网连接vlan1。我这样做:

access-list 2 remark CCP_ACL Category=2
access-list 2 permit 10.0.1.0 0.0.0.255
interface Vlan1
 ip nat inside
 exit
interface FastEthernet0
 ip nat outside
 exit
ip nat inside source list 2 interface FastEthernet0 overload

此脚本由 Cisco Configuration Professional 生成。我连接到的计算机上没有互联网连接vlan1。它 ping 路由器和其他设备,但有互联网连接。请帮忙。

答案1

我有来自提供商的有效互联网连接,festethernret1并且还有vlan1。我需要从festethernret1到我的建立互联网连接vlan1

如果您的 Internet 连接处于 状态FastEthernet 1,则您的配置是错误的。您的配置既适用ip nat outsideFastEthernet 0,也用于FastEthernet 0NAT 过载配置 ( ip nat inside source list 2 interface FastEthernet0 overload)

相关内容