NWEA
55 pts. | Oct 5 2009 9:49AM GMT
Consider you have link which is terminate in ethernet port of router and use internet in your LAN. ISP provide you LAN and WAN ip pool. So to configure steps on your router -
configure line console, aux, vty, enable, enable secret password.
configure interface fa0/0-
router#conf t
router<conf>#int fa0/0
router<config int># ip address <ip address>
router<config int># description WAN
router<config int># ip nat outside
router<config int># no shut
configure interface fa0/1
router#conf t
router<conf>#int fa0/1
router<config int># ip address <ip address>
router<config int># description LAN
router<config int># ip nat inside
router<config int># no shut
configure default route -
router<conf>#ip route 0.0.0.0 0.0.0.0 <ip address of ISP/Next hop ip add>
configure ACL and PAT -
router<conf>#access-list 1 permit any
router<conf>#ip nat inside source list 1 interface fa0/0 overload
Save configuration in startup-config file -
router#copy running-config startup-config
then check configuraiton by -
router#sh run
router#sh start
check port status -
router#sh ip int brief
check ping to each port and ISP ip address.






