User's Manual

Table Of Contents
407
Users Manual of CS-6306R
Run one of the following commands in management mode to display the transfer information:
Run... To...
show ip nat translations [verbose]
Display active translation.
show ip nat statistics
Display translation statistics.
43.2.4 NAT Configuration Example
43.2.4.1 Dynamic Inside Source Transfer Example
The following example shows how to transfer all source addresses (192.168.1.0/24) that matches access list
a1 to one address in the net-208 pool whose address range is from 171.69.233.208 to 171.69.233.233.
ip nat pool net-208 171.69.233.208 171.69.233.233 255.255.255.240
ip nat inside source list a1 pool net-208
!
interface vlan10
ip address 171.69.232.182 255.255.255.240
ip nat outside
!
interface vlan11
ip address 192.168.1.94 255.255.255.0
ip nat inside
!
ip access-list standard a1
permit 192.168.1.0 255.255.255.0
!
43.2.4.2 Inside Global Address Reloading Example
An address pool named net-208 is created in the following example. The address pool contains all addresses
from 171.69.233.208 to 171.69.233.233. The a1 access list permits all packets from source addresses from
192.168.1.0 to 192.168.1.255. If there is no transfer, packets matching the a1 access list are to be transferred
to one address the net-208 address pool. The routing switch authorizes multiple local addresses (from
192.168.1.0 to 192.168.1.255) to use the same global address. The routing switch stores the port numbers to
distinguish every connection.
ip nat pool net-208 171.69.233.208 171.69.233.233 255.255.255.240
ip nat inside source list a1 pool net-208 overload
!
interface vlan10
ip address 171.69.232.182 255.255.255.240
ip nat outside
!
interface vlan11
ip address 192.168.1.94 255.255.255.0