分类: 系统运维
2011-10-20 10:39:13
如果你内部网络中的IP地址与另一个内部网络中的地址有重叠,则可以配置重叠网络静态NAT转换。它与前面介绍的常规静态NAT转换配置方法完全一样,具体的配置步骤如表5-9所示。
表5-9 重叠网络静态NAT转换
步骤 |
命令 |
说明 |
Step 1 |
enable
Router> enable |
|
|
terminal 例如: |
|
Step 3 |
ip nat inside source static local-ip global-ip
Router(config)# ip nat inside source static 191.168.121.33 2.2.2.1 |
NAT转换。示例中建立的是内部本地地址191.168.121.33与内部全局地址2.2.2.1之间的静态映射。 |
|
type number 例如: Router(config)# interface ethernet 1 |
|
|
ip-address mask 例如: (config-if)# ip address 10.114.11.39 255.255.255.0 |
IP地址。 |
|
ip nat inside 例如: (config-if)# ip nat inside |
NAT内部接口。 |
|
exit
Router(config-if)# exit |
|
Step 8 |
interface type number
Router(config)# interface ethernet 0 |
|
|
ip-address mask 例如: Router(config-if)# ip address 172.69.232.182 255.255.255.240 |
IP地址。 |
|
例如: (config-if)# ip nat outside |
NAT外部接口。 |