① 思科路由器如何配置nat
首先第一步写一个acl 匹配感兴趣的流量,例 access-list 1 permit 192.168.1.0 0.0.0.255第二步在接口下指定 nat的入接口ip nat inside出接口ip nat outside第三部 把nat与acl关联起来ip nat inside source list 1 int f0/1 overload以上是端口复用的地址转换,是nat最常用的。