实验11:NAT网络地址转换
一、 实验目标
通过Cisco Packet Tracer来实现NAT网络地址转换的三种转换:静态转换、动态转换和端口多路复用
。
二、实验环境和拓扑
window 7操作系统,Cisco Packet Tracer软件。
拓扑结构见下图:
三、实验步骤
1、按照拓扑结构连接网络,并配置各个接口的IP,子网掩码与网关。其中路由router 2不要设置路由表,路由router 1设置默认路由。
2、实现NAT静态转换
全局模式:ip nat inside source static 192.168.1.1 61.159.62.132
然后在入口接口处ip nat inside
出口接口处ip nat outside
3、实现NAT动态转换
首先no掉步骤2中的ip nat inside source static 192.168.1.1 61.159.62.132语句
然后添加ACL命令——创建NAT池
全局模式:access-list 1 permit 192.168.1.0 0.0.0.255
ip nat pool dd 61.159.62.132 61.159.62.134 netmask 255.255.255.128
全局:ip nat inside source list 1 pool dd
然后在入口接口处ip nat inside
出口接口处ip nat outside
4、实现端口多路复用
将步骤3的命令no掉
全局模式:access-list 1 permit 192.168.1.0 0.0.0.255
ip nat inside source list interface f0/1 overload
然后在入口接口处ip nat inside
出口接口处ip nat outside
四、结果验证
步骤2的结果
步骤3的结果
步骤4
原文:http://407207512.blog.51cto.com/9262092/1541395