!!!Set up interfaces
enable
configure terminal
int g0/0
ip add 192.168.0.1 255.255.255.0
no sh
ip nat inside
int g0/1
ip dhcp
no sh
ip nat outside
end
!!!PAT
enable
configure terminal
access-list 1 permit 192.168.0.0 0.0.0.255
ip nat inside source list 1 interface g0/1 overload
end
!!!DNS Spoofing
no ip domain-lookup
ip dns server 8.8.8.8 4.4.4.4 1.1.1.1
!!!DHCP Server
enable
configure terminal
ip dhcp excluded-address 192.168.0.1 192.168.0.99
ip dhcp pool lan
network 192.168.0.1 255.255.255.0
dns-server 192.168.0.1
default-router 192.168.0.1
end
Looks standard right?