—–EIGRP
router eigrp [instance number]
network [ip] [wildcard] – Turn on for interface
no auto-summary – stop guessing classful subnets from different networks
[Interface to send new summary route out]
ip summary-address eigrp [instance] [ip network] [subnet]

——NAT overload (PAT)
ip nat inside – label the interfaces
ip nat outside -Label the interfaces
ip access-list standard NAT_ADDRESSES
permit [ip] [wildcard] any
ip nat inside source list NAT_ADDRESSES interface [outside int] overload

—–STATIC NAT
Interface Gi0/0
ip nat inside   – label the interfaces
Interface Gi0/1
ip nat outside  -Label the interfaces
ip nat inside source static [inside ip] [outside ip]
OR
ip nat inside source static tcp [inside ip] [port] interface [outside ip] [port]

—-Dynamic NAT

Interface Gi0/0
ip nat inside   – label the interfaces
Interface Gi0/1
ip nat outside  -Label the interfaces

ip access-list standard  NAT_ADDRESSES
permit [ip] [wildcard] any
ip nat pool [pool name] [start ip] [end ip] [subnet]
ip nat inside source list [NAT ADDRESSES] pool [pool name] overload

Leave a Reply