You are on page 1of 2

NAT

NAT Estático ___________________________

BRANCH-1 ****
int g0/0/0
ip address 192.168.1.1 255.255.255.0
no shutdown

Sw1 ****
int vlan 1
ip address 192.168.1.2 255.255.255.0
no shutdown
ip default-gateway 192.168.1.1

Enlace WAN 1 ____


BRANCH-1 ****
int s0/1/0
ip address 172.16.1.2 255.255.255.252
no shutdown

CENTRAL ****
int s0/1/0
ip address 172.16.1.1 255.255.255.252
no shutdown

int g0/0/0
ip address 58.0.0.2 255.255.255.252
no shutdown

ISP ****
int g0/0/0
ip address 58.0.0.1 255.255.255.252
no shutdown

int g0/0/1
ip address 100.100.100.1 255.255.255.0
no shutdown

SW-ISP ****
int vlan 1
ip address 100.100.100.2 255.255.255.0
no shutdown
ip default-gateway 100.100.100.1

Laptop-ISP ***
ip --> 100.100.100.10

Server-ISP ****
ip --> 100.100.100.11

ENRUTAMIENTO ___________________________
BRANCH-1 ****
ip route 0.0.0.0 0.0.0.0 s0/1/0

CENTRAL ****
ip route 192.168.1.0 255.255.255.0 s0/1/0
ip route 100.100.100.0 255.255.255.0 g0/0/0
ISP ****
ip route 201.201.201.0 255.255.255.0 g0/0/0

NAT Estático ___________________________

Traduce de manera FIJA


Una IP privada a Una IP Pública
Siempre utilizará las mismas IP Privadas con Públicas
Sintaxis:
ip nat inside source static [IP inside Local] [IP inside Global]
int [int-privadas]
ip nat inside
int [int-públicas]
ip nat outside

CENTRAL ****
ip nat inside source static 192.168.1.10 201.201.201.10
ip nat inside source static 192.168.1.11 201.201.201.11
ip nat inside source static 192.168.1.12 201.201.201.12

int s0/1/0
ip nat inside

int g0/0/0
ip nat outside

VERIFICAR:
show ip nat translations

You might also like