静态NAT的配置是非常简单的。在这个例子中,我们有一个Web服务器与路由器1。我们的网站服务器使用的IP地址为10.0.0.2。但由于透水文章中讨论的各种原因,我们的公司要,使用50.0.0.1此服务器的IP地址。现在我们的任务是配置NAT路由器1上的翻译10.0.0.2内部本地Web服务器地址50.0.0.1 [内部全局IP地址]。
配置静态NAT按照这个一步一步的指导
无论是下载预配置的拓扑结构或创建自己的拓扑图中所示的
PC和服务器上配置IP地址中给出的数字
R1配置:
- Router>enable
- Router#configure terminal
- Router(config)#hostname R1
- R1(config)#interface fastethernet 0/0
- R1(config-if)#ip address 10.0.0.1 255.0.0.0
- R1(config-if)#no shutdown
- R1(config-if)#exit
- R1(config)#interface serial 0/0/0
- R1(config-if)#ip address 20.0.0.2 255.0.0.0
- R1(config-if)#no shutdown
- R1(config-if)#exit
- R1(config)#ip route 30.0.0.0 255.0.0.0 20.0.0.1
- R1(config)#ip nat inside source static 10.0.0.2 50.0.0.1
- R1(config)#interface fastEthernet 0/0
- R1(config-if)#ip nat inside
- R1(config-if)#exit
- R1(config)#interface serial 0/0/0
- R1(config-if)#ip nat outside
- R1(config-if)#exit
- R1(config)#
R0配置:
- Router>enable
- Router#configure terminal
- Router(config)#hostname R0
- R0(config)#interface fastethernet 0/0
- R0(config-if)#ip address 30.0.0.1 255.0.0.0
- R0(config-if)#no shutdown
- R0(config-if)#exit
- R0(config)#interface serial 0/0/0
- R0(config-if)#ip address 20.0.0.1 255.0.0.0
- R0(config-if)#clock rate 64000
- R0(config-if)#bandwidth 64
- R0(config-if)#no shutdown
- R0(config-if)#exit
- R0(config)#ip route 50.0.0.0 255.0.0.0 20.0.0.2
- R0(config)#
正如你所看到的配置有没有直接的路线为10.0.0.2。因此,PC从网络30.0.0.0将永远不会知道这件事。他们将访问50.0.0.1的Web服务器的IP。为了测试它,双击任何一台电脑和ping 50.0.0.1,你会得到重播。
- Packet Tracer PC Command Line 1.0
- PC>ping 50.0.0.1
- Pinging 50.0.0.1 with 32 bytes of data:
- Reply from 50.0.0.1: bytes=32 time=141ms TTL=126
- Reply from 50.0.0.1: bytes=32 time=80ms TTL=126
- Reply from 50.0.0.1: bytes=32 time=109ms TTL=126
- Reply from 50.0.0.1: bytes=32 time=125ms TTL=126
- Ping statistics for 50.0.0.1:
- Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
- Approximate round trip times in milli-seconds:
- Minimum = 80ms, Maximum = 141ms, Average = 113ms
现在ping通10.0.0.2,你会得到目标主机不可达错误。
- PC>ping 10.0.0.2
- Pinging 10.0.0.2 with 32 bytes of data:
- Reply from 30.0.0.1: Destination host unreachable.
- Reply from 30.0.0.1: Destination host unreachable.
- Reply from 30.0.0.1: Destination host unreachable.
- Reply from 30.0.0.1: Destination host unreachable.
- Ping statistics for 10.0.0.2:
- Packets: Sent = 4, Received = 0, Lost = 4 (100% loss)
本文地址:http://www.45fan.com/cisco/755.html