一。nat
1.static
建立local到global地址的映射
ip nat inside source static local-ip global-ip
指定inside端口 ip nat inside
指定outside端口 ip nat outside
2.dynamic
指定inside端口
指定outside端口
下面的3步相当于static的第一步,即建立地址映射
建立可用ip pool 即global地址
ip nat pool name start-ip end-ip
建立允许使用pool的access-list 即local地址
access-list name ip
建立nat: ip nat inside source list name pool name
二。pat 是nat的一个特例
跟nat一样,只不过多了一个overloading
ip nat inside source static local-ip global-ip overloading
阅读(696) | 评论(0) | 转发(0) |