Blog

How to Configure Cisco NAT

  • by

Network Address Translation (NAT) has been using for a number of years, the main reason for using NAT is; the IPv4 has limited number of IP Addresses, Generally one public IP Address is provided to every users. While sending and receiving packets… Read More »How to Configure Cisco NAT

Cisco DHCP Server Configuration

  • by

Cisco DHCP Server Configuration Router#conf t Router(config)#ip dhcp pool POOL_NAME Router(dhcp-config)#network 192.168.10.0 255.255.255.0 [This will create a DHCP pool] Router(dhcp-config)#default-router 192.168.10.1 [This IP is the Gateway Address] Router(dhcp-config)#dns-server 100.100.100.1 [This IP is the DNS Server IP] If you want to… Read More »Cisco DHCP Server Configuration

Cisco PPPoE Configuration

  • by

Cisco PPPoE Configuration ip name-server 15.15.15.1 ! ip dhcp pool 10 network 172.16.100.0 255.255.255.0 ! username cisco password 0 sisco ! ! bba-group pppoe 1 virtual-template 1 ! ! interface FastEthernet0/0 no ip address speed auto ! interface FastEthernet0/0.1 encapsulation… Read More »Cisco PPPoE Configuration