路由器常用NAT命令

 

在外网通过公网IP访问
静态映射:
 

    在全局模式下:ip nat inside source static 服务器IP  公网IP
            例:ip nat inside source static 192.168.1.1  202.108.33.34

       端口映射:ip nat inside source static tcp 服务器IP 端口号 公网IP 端口号
            例: ip nat inside source static tcp 192.168.1.1 80 202.108.33.34 80

            反向地址转换(将外部地址转换成一个内网地址 )    ip nat outside source static 202.108.33.34 192.168.1.10

在内网通过公网IP访问(私服 )
 


    在全局模式下:ip nat service privateservice (启动私有服务)
                  ip-fast-swith  ena    开启了快速交换,在全局下启用后会与端口映射冲突。
                  ip nat outside destination static 公网IP     服务器IP  
            例:ip nat outside destination static  202.108.33.34 192.168.1.1 
 
     端口映射:ip nat outside destination static tcp 公网IP 端口号 内网IP 端口号
     例 :ip nat outside destination static tcp 202.108.33.34 80 192.168.1.1 80