You are on page 1of 1

CONFIGURAR WAN

#conf t
#int f4
#ip address WAN 255.255.255.0
#no sh

CONFIGURAR LAN
#conf t
#int vlan1
#ip address LAN 255.255.255.0
#no sh

CONFIGURAR DHCP
#conf t
#ip dhcp excluded-address 192.168.1.1 192.168.1.30
#ip dhcp pool LAN
#network 192.168.1.0 255.255.255.0
#default-router 192.168.1.1 GATEWAY
#dns-servers 190.108.84.82 190.108.84.83
#ip name-serve 190.108.84.82 190.108.84.83
#end

NAT
#conf t
#access-list 1 permit 192.168.1.0 0.0.0.255
#ip nat inside source list 1 int WAN
#int LAN
#ip nat inside
#exit
#
#int WAN
#ip nat outside
#end

ROUTES
#conf t
#ip route 0.0.0.0 0.0.0.0 GATEWAY
#end

You might also like