45fan.com - 路饭网

搜索: 您的位置主页 > 路由器设置 > Cisco 思科路由器 > 阅读资讯:一步一步配置的静态NAT教程

一步一步配置的静态NAT教程

2012-10-27 19:36:45 来源:www.45fan.com 【

静态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按照这个一步一步的指导

无论是下载预配置的拓扑结构或创建自己的拓扑图中所示的

静态NAT  
PC和服务器上配置IP地址中给出的数字

R1配置:

  1. Router>enable  
  2. Router#configure terminal  
  3. Router(config)#hostname R1  
  4. R1(config)#interface fastethernet 0/0  
  5. R1(config-if)#ip address 10.0.0.1 255.0.0.0  
  6. R1(config-if)#no shutdown  
  7. R1(config-if)#exit  
  8. R1(config)#interface serial 0/0/0  
  9. R1(config-if)#ip address 20.0.0.2 255.0.0.0  
  10. R1(config-if)#no shutdown  
  11. R1(config-if)#exit  
  12. R1(config)#ip route 30.0.0.0 255.0.0.0 20.0.0.1  
  13. R1(config)#ip nat inside source static 10.0.0.2 50.0.0.1  
  14. R1(config)#interface fastEthernet 0/0  
  15. R1(config-if)#ip nat inside  
  16. R1(config-if)#exit  
  17. R1(config)#interface serial 0/0/0  
  18. R1(config-if)#ip nat outside  
  19. R1(config-if)#exit  
  20. R1(config)# 

R0配置:

  1. Router>enable  
  2. Router#configure terminal  
  3. Router(config)#hostname R0  
  4. R0(config)#interface fastethernet 0/0  
  5. R0(config-if)#ip address 30.0.0.1 255.0.0.0  
  6. R0(config-if)#no shutdown  
  7. R0(config-if)#exit  
  8. R0(config)#interface serial 0/0/0  
  9. R0(config-if)#ip address 20.0.0.1 255.0.0.0  
  10. R0(config-if)#clock rate 64000  
  11. R0(config-if)#bandwidth 64  
  12. R0(config-if)#no shutdown  
  13. R0(config-if)#exit  
  14. R0(config)#ip route 50.0.0.0 255.0.0.0 20.0.0.2  
  15. R0(config)# 

正如你所看到的配置有没有直接的路线为10.0.0.2。因此,PC从网络30.0.0.0将永远不会知道这件事。他们将访问50.0.0.1的Web服务器的IP。为了测试它,双击任何一台电脑和ping 50.0.0.1,你会得到重播。

  1. Packet Tracer PC Command Line 1.0  
  2. PC>ping 50.0.0.1  
  3. Pinging 50.0.0.1 with 32 bytes of data:  
  4. Reply from 50.0.0.1: bytes=32 time=141ms TTL=126 
  5. Reply from 50.0.0.1: bytes=32 time=80ms TTL=126 
  6. Reply from 50.0.0.1: bytes=32 time=109ms TTL=126 
  7. Reply from 50.0.0.1: bytes=32 time=125ms TTL=126 
  8.  
  9. Ping statistics for 50.0.0.1:  
  10.     Packets: Sent = 4Received = 4Lost = 0 (0% loss),  
  11. Approximate round trip times in milli-seconds:  
  12.     Minimum = 80msMaximum = 141msAverage = 113ms 

现在ping通10.0.0.2,你会得到目标主机不可达错误。

  1. PC>ping 10.0.0.2  
  2. Pinging 10.0.0.2 with 32 bytes of data:  
  3. Reply from 30.0.0.1: Destination host unreachable.  
  4. Reply from 30.0.0.1: Destination host unreachable.  
  5. Reply from 30.0.0.1: Destination host unreachable.  
  6. Reply from 30.0.0.1: Destination host unreachable.  
  7.  
  8. Ping statistics for 10.0.0.2:  
  9.     Packets: Sent = 4Received = 0Lost = 4 (100% loss) 

本文地址:http://www.45fan.com/cisco/755.html
Tags:
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部