关于华为路由器地址转换
发布网友
发布时间:2022-04-29 01:21
我来回答
共1个回答
热心网友
时间:2022-06-27 11:05
^^;
我拿NE系列的路由器给你举例子.
1.先建立NAT地址池,这个池子里就是SP给你的公网地址,对应你的192的地址.
#
nat address-group 1 210.75.198.31 210.75.198.36
#
注:可以定义多个地址池
2.在连接内网的接口上定义私有地址段.
interface Ethernet4/2/0
ip address 210.75.198.1 255.255.255.0
nat outbound 2001 address-group 2 (这里是在做NAT时附加的ACL表,用来控制内部什么地址能被影射,什么地址可以用什么服务之类的.)
nat server protocol tcp global 210.75.198.185 www inside 10.11.110.14 www
nat server protocol tcp global 210.75.198.184 www inside 10.11.110.13 www
nat server protocol tcp global 210.75.198.153 www inside 10.11.105.83 www
nat server protocol tcp global 210.75.198.70 www inside 10.11.2.93 www
上面这些就是对应公网地址的私有地址. CISCO的要分outside inside 华为的不用. ^^