amonw

最简单的CISCO中NAT配置

1.配置端口:

int s0/0

ip nat outside                  ;s0/0为外部端口

int f0/0

ip nat inside                     ;f0/0为内部端口

2.配置合法外部地址池:

ip nat pool natpool1 211.96.193.1 211.96.193.10 netmask 255.255.255.0

3.配置内部ip地址允许nat的地址范围:

access-list 1 permit 192.168.1.1 0.0.0.255

4.允许NAT:

ip nat inside source list 1 pool natpool1 overload

5.设置内部服务器映射:

ip nat inside source static 192.168.1.250 211.96.193.250

6.要取消NAT,需先clear ip nat trans

posted on 2004-10-23 17:01  Amonw\'s Weblog  阅读(898)  评论(1编辑  收藏  举报
 

分类:

技术点:

相关文章:

  • 2021-08-24
  • 2021-06-11
  • 2021-06-05
  • 2021-05-14
  • 2021-07-30
  • 2021-05-15
  • 2021-11-21
猜你喜欢
  • 2021-11-01
  • 2021-10-29
  • 2021-11-21
  • 2021-11-29
  • 2021-07-05
  • 2021-11-21
  • 2021-05-29
相关资源
相似解决方案