
452 Chapter 10 • Requirements For Network Address Translation in Remote Access Networks
2. Configure address overloading to permit all internal hosts access
to the Internet.
access-list 1 permit 10.0.0.0 0.255.255.255
!
ip nat pool employees 192.168.1.1 192.168.1.1 netmask 255.255.255.0
ip nat inside source list 1 pool employees overload
!
interface ethernet0
ip address 10.1.1.254 255.255.255.0
ip nat inside
!
interface serial0
ip address 192.168.2.254 255.255.255.0
ip nat outside
Note that the access list permits the entire 10.0.0.0 subnet
outbound access and that the pool is named employees. All
internal hosts will appear to be source from 192.168.1.1.
3.