0% found this document useful (0 votes)
6 views

DynamicNAT Configuration

The document outlines the steps to configure Network Address Translation (NAT) on a router. It includes defining inside and outside interfaces, creating a NAT pool for dynamic IP assignment, setting up an access list for inside hosts, and binding the access list to the NAT pool. Additionally, it provides optional commands to verify NAT operation.

Uploaded by

Habtamu Asayto
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

DynamicNAT Configuration

The document outlines the steps to configure Network Address Translation (NAT) on a router. It includes defining inside and outside interfaces, creating a NAT pool for dynamic IP assignment, setting up an access list for inside hosts, and binding the access list to the NAT pool. Additionally, it provides optional commands to verify NAT operation.

Uploaded by

Habtamu Asayto
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Step 1: Define inside and outside interfaces

R1(config)# interface FastEthernet0/0


R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# ip nat inside
R1(config-if)# no shutdown
R1(config-if)# exit

R1(config)# interface FastEthernet0/1


R1(config-if)# ip address 203.0.113.1 255.255.255.0
R1(config-if)# ip nat outside
R1(config-if)# no shutdown
R1(config-if)# exit

Step 2: Create a NAT Pool (public IPs to assign dynamically)


R1(config)# ip nat pool MY_POOL 203.0.113.10 203.0.113.20 netmask 255.255.255.0

Step 3: Create an Access List to Match Inside Hosts


R1(config)# access-list 1 permit 192.168.1.0 0.0.0.255

Step 4: Bind the Access List to the NAT Pool


R1(config)# ip nat inside source list 1 pool MY_POOL

Step 5: (Optional) Verify NAT Operation


R1# show ip nat translations
R1# show ip nat statistics

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy