17 February, 2011

CCNA Skills Integration Challenge PT Activity 8.6.1 - Task 3



Task 3: Configure Static and Dynamic NAT on HQ
Step 1. Configure NAT.
Use the following requirements:
Allow all addresses for the 10.0.0.0/8 address space to be translated. 
XYZ Corporation owns the 209.165.200.240/29 address space. 
The pool, XYZCORP, uses addresses .241 through .245 with a /29 mask. 
The www.xyzcorp.com website at 10.0.1.2 is registered with the public DNS system at IP address 209.165.200.246.
First we must specify new access-list for using NAT:
HQ(config)#ip access-list standard NAT_LIST
HQ(config-std-nacl)#permit 10.0.0.0 0.255.255.255
HQ(config-std-nacl)#exit
Second action is enabling dynamic NAT translation on HQ.
For this action follow the requirements we must create NAT Pool:
HQ(config)#ip nat pool XYZCORP 209.165.200.241 209.165.200.245 net 255.255.255.248
HQ(config)#ip nat inside source list NAT_LIST pool XYZCORP overload
And last action is enabling static NAT:
HQ(config)#ip nat inside source static 10.0.1.2 209.165.200.246
Also we must activate NAT mode on all interfaces include each subinteface on HQ router.
For all interfaces exclude serial 0/1/0 NAT mode must be configured as inside, for example:
HQ(config)#interface serial 0/0/0.41
HQ(config-subif)#ip nat inside
For serial 0/1/0 it must be:
HQ(config)#interface serial 0/1/0
HQ(config-subif)#ip nat outside
After completion your percentage must be 11%


3 comments:

  1. Awesome thanks a bunch. I was wondering if you have the rest of this somewhere?

    ReplyDelete
  2. Until the end of this week I'm going to finish this lab work.....

    ReplyDelete