标签:out 模式 res png ESS 网络 code isp 发表
企业或家庭使用的网络为私有网络,使用的是私有地址;运营商维护的网络为公共网络,使用的是公有地址。私有地址不能在公网中路由。
NAT一般部署在连接内网和外网的公关设备上
nat static global 8.8.8.8 inside 192.168.10.10
nat static enable
功能int g0/0/1
nat static enable
int g0/0/1
nat static global 8.8.8.8 inside 192.168.10.10
动态NAT基于地址池来实现私有地址和公有地址的转换。
动态NAT地址池中的地址用尽以后,只能等待被占用的公网地址被释放后,其他主机才能使用它来访问公网。
nat address-group 1 212.0.0.100 212.0.0.200 #新建一个名为1的nat地址池
acl 2000 #ACL编号
rule permit source 192.168.20.0 0.0.0.255
int g0/0/1 #外网口
nat outbound 2000 adress-ground 1 no-pat #将ACL2000匹配的数据转换为改接口的IP地址作为源地址(no-pat不做端口转换,只做IP地址转换,默认pat)
多个私网IP对应外网口公网IP地址
acl 3000 #允许源地址为192.168.30.0/24网段的数据通过
rule permit ip source 192.168.30.0 0.0.0.255
int g0/0/1 #外网口
nat outbound 3000
int g0/0/1 #外网口
nat server protocol tcp global 9.9.9.9 www inside 192.168.10.10 www
display nat session all ##查看NAT的流表信息
标签:out 模式 res png ESS 网络 code isp 发表
原文地址:https://www.cnblogs.com/lsq66/p/14810813.html