Options
Address Pool Question

in CCNA & CCENT
Ok so I have a question about making address pools for something like NAT. I noticed in the few examples I have seen that they always use consecutive IP addresses for this and even the Cisoc IOS asks for the starting IP and then the ending IP. What if you have multiple addresses that are not consecutive? How do you enter those into a Cisco device using the IOS?
Comments
-
Monkerz Member Posts: 842
Router(config)#ip nat pool NAT prefix-length 24
Router(config-ipnat-pool)#address 172.16.1.3 172.16.1.3
Router(config-ipnat-pool)#address 172.16.1.254 172.16.1.254
.
.
.
ETC...
Hope this helps -
Jackace Member Posts: 335
So you make multiple ranges that include only 1 IP address. That makes sense, thank you