Chinaunix首页 | 论坛 | 博客
  • 博客访问: 380795
  • 博文数量: 114
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1219
  • 用 户 组: 普通用户
  • 注册时间: 2015-02-07 21:23
文章分类

全部博文(114)

文章存档

2018年(1)

2017年(5)

2016年(87)

2015年(21)

我的朋友

分类: 网络与安全

2015-09-05 00:06:07


  1. 在Cisco NAT 路由器中可以配置多种形式的NAT地址转换,但总体说就是两种静态和动态,在动态的nat中又有一种特殊的nat形式,那就是重载(Overloading NAT),也称为PAT端口地址转换,
  2. 静态NAT是指在本地局域网中一对一的映射到公网IP。
  3. 动态nat是把一个非注册地址动态映射到一个注册IP地址池的一个地址。
  4. 重载或复用NAT,PAT也是动态的一种形式。与IP地址的不同端口组合,把多个非注册IP地址映射到一个注册IP地址。
  5. 下面示例静态跟动态
  6. R2(config)#do show runn
  7. Building configuration...
  8. Current configuration : 687 bytes
  9. version 12.4
  10. no service timestamps log datetime msec
  11. no service timestamps debug datetime msec
  12. no service password-encryption
  13. hostname R2
  14. spanning-tree mode pvst
  15. interface FastEthernet0/0
  16.  ip address 10.1.1.1 255.255.255.0
  17.  ip nat inside
  18.  duplex auto
  19.  speed auto
  20. !
  21. interface FastEthernet0/1
  22.  ip address 61.159.62.130 255.255.255.248
  23.  ip nat outside
  24.  duplex auto
  25.  speed auto
  26. interface Vlan1
  27.  no ip address
  28.  shutdown
  29. ip nat inside source static 10.1.1.2 61.159.62.130 #静态直接一对一对应
  30. ip nat inside source static 10.1.1.3 61.159.62.131
  31. ip classless
  32. ip route 0.0.0.0 0.0.0.0 61.159.62.129

  33. 动态NAT。
  34. R2(config)#do show runn
  35. Building configuration...


  36. Current configuration : 800 bytes
  37. version 12.4
  38. no service timestamps log datetime msec
  39. no service timestamps debug datetime msec
  40. no service password-encryption
  41. hostname R2

  42. spanning-tree mode pvst
  43. interface FastEthernet0/0
  44.  ip address 10.1.1.1 255.255.255.0
  45.  ip nat inside
  46.  duplex auto
  47.  speed auto
  48. interface FastEthernet0/1
  49.  ip address 61.159.62.130 255.255.255.248
  50.  ip nat outside
  51.  duplex auto
  52.  speed auto
  53. interface Vlan1
  54.  no ip address
  55.  shutdown
  56. ip nat pool winsnet0 61.159.62.131 61.159.62.135 netmask 255.255.255.248 #(动态地址池)
  57. ip nat inside source list 1 pool winsnet0 #可以添加创建多个地址池如winsnet1 ,winsnet3
  58. ip nat inside source static tcp 10.1.1.3 80 61.159.62.133 80
  59. ip classless
  60. ip route 0.0.0.0 0.0.0.0 61.159.62.129 
  61. access-list 1 permit 10.1.1.0 0.0.0.255
  62. line con 0
  63. line aux 0
  64. line vty 0 4
  65.  login
  66. end
阅读(1192) | 评论(0) | 转发(0) |
0

上一篇:配置PAT

下一篇:centos时间同步的两种方法

给主人留下些什么吧!~~