PAT Configuration in Cisco Packet Tracer

PAT Configuration in Cisco Packet Tracer, Cisco Packet Tracer CCNA Labs Adventures! For more visit : www.ipcisco.com NAT Configuration Lessons -------------------------------------------------------- NAT Overview : https://ipcisco.com/lesson/nat-networ... Static NAT : https://ipcisco.com/lesson/static-nat... Dynamic NAT : https://ipcisco.com/lesson/dynamic-na... PAT : https://ipcisco.com/lesson/pat-config... Cisco Trainings on IPCisco.com : ----------------------------------------------------------- CCNA : https://ipcisco.com/course/ccna/ CCNP Route : https://ipcisco.com/course/ccnp-route/ CCNP Switch : https://ipcisco.com/course/ccnp-switch/ CCIE : https://ipcisco.com/course/ccie/ Cisco Hands On : https://ipcisco.com/course/cisco-hand... PACKET TRACER FILES : https://ipcisco.com/cisco-packet-trac... CHEAT SHEETS : https://ipcisco.com/protocol-cheat-sh... QUIZ SECTION : https://ipcisco.com/all-quizes/ #NAT #packettracer #configuration #PAT #DynamicNAT #StaticNAT Конфигурация PAT в Packet Tracer, Configuración de PAT en Packet Tracer, Configuração PAT no Packet Tracer, Configurazione PAT su Packet Tracer, Configuration PAT sur Packet Tracer Packet Tracer PAT Konfigürasyonu, تكوين PAT على حزمة التتبع पैकेट ट्रेसर पर PAT कॉन्फ़िगरेशन In some cases there can be hundreds of inside local addresses and at the same time your global ip addresses can be limited.At this time you can use PAT instead of static and dynamic NAT translation. Here, with PAT(Port Address Translation), we translate each PC to a unique port number of a single public address. Firstly we identify the interfaces as inside and outside as before static and dynamic NAT configurations. Here, we will use the same topology like Dynamic NAT configuration article. Because, for PAT configuration, we need a small change on the configuration. Here, we will start with the IP address configurations firstly. Our PCs on Packet Tracer will be configured with below IP addresses. PC0 : 10.0.0.2 255.255.255.0 GW:10.0.0.1 PC1 : 10.0.0.3 255.255.255.0 GW:10.0.0.1 PC2 : 10.0.0.4 255.255.255.0 GW:10.0.0.1 Router1(config)# interface FastEthernet0/0 Router1(config-if)# ip address 10.0.0.1 255.255.255.0 Router1(config-if)# no shutdown Router1(config-if)# exit Router1(config)# interface FastEthernet0/1 Router1(config-if)# ip address 212.100.100.2 255.255.255.0 Router1(config-if)# no shutdown Router1(config-if)# exit Router2(config)# interface FastEthernet0/0 Router2(config-if)# ip address 212.100.100.1 255.255.255.0 Router2(config-if)# no shutdown Router2(config-if)# exit Router2(config)# ip default-gateway 212.100.100.2 Router2(config)# no ip routing Now, let’s do the classical NAT configuration and plus PAT configuration (overload). Router1 (config)# int e0/0 Router1 (config-if)# ip nat inside Router1 (config-if)# exit Router1 (config)# int s0/0 Router1 (config-if)# ip nat outside Router1 (config-if)# exit After that we will use the below commands for PAT configuration: Router1 (config)# access-list 10 permit 10.0.0.0 0.0.0.255 Router1 (config)# ip nat pool IPCISCO 50.50.50.80 50.50.50.80 netmask 255.255.255.0 Router1 (config)# ip nat inside source list 10 pool IPCISCO overload For more, visit www.ipcisco.com https://ipcisco.com/lesson/pat-config...