How To Setup Dhcp On a Cisco Router?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1. Configure the DHCP pool.
Router(config)# ip dhcp pool <poolname>
2. Set the subnet and mask.
Router(dhcp-config)# network <subnet> <subnet mask>
3. Configure the default router (aka gateway).
Router(dhcp-config)# default-router <ip address>
4. Configure the DNS server.
Router(dhcp-config)# dns-server <ip address>
5. Set the lease duration.
Router(dhcp-config)# lease <days> <hours> <minutes>
6. Configure the IP address range for the DHCP pool.
Router(dhcp-config)# ip address range <start ip> <end ip>
7. Enable the DHCP server.
Router(config)# ip dhcp server
8. Exit and save the configuration.
Router# write memory