User's Manual

Table Of Contents
408
Users Manual of CS-6306R
ip nat inside
!
ip access-list standard a1
permit 192.168.1.0 255.255.255.0
43.2.4.3 Example to overlapping address transfer
The following example shows that other users in the Internet are legally using the address in the local network.
Extra transfer is needed to access the outside network. The net-10 address pool is an outside local IP
address pool. The sentence ip nat outside source list 1 pool net-10 transfer the host addresses of the
outside overlapping network to the address in the net-10 address pool.
ip nat pool net-208 171.69.233.208 171.69.233.223 255.2555.255.240
ip nat pool net-10 10.0.1.0 10.0.1.255 255.255.255.0
ip nat inside source list a1 pool net-208
ip nat outside source list a1 pool net-10
!
interface vlan10
ip address 171.69.232.192 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.4 TCP Load Distribution Example
The following example shows that the connections between a virtual address and a group of actual hosts are
distributed. The address pool defines the addresses of actual hosts. The access list defines the virtual
address. The TCP packet that matches the access list and is from serial port 1/0 (outside interface) is to be
translated to the address in the pool.
ip nat pool real-hosts 192.168.15.2 192.168.15.15 255.255.255.240
ip nat inside destination list a2 pool real-hosts
!
interface vlan10
ip address 192.168.15.129 255.255.255.240
ip nat outside
!