Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 1720 router DHCP how-to

Status
Not open for further replies.

ttrsux

IS-IT--Management
Jul 28, 2004
112
US
Hi,

Can anyone tell me how to set up DHCP on a Cisco 1720 router? I've managed to get to the DHCP section, but I'm not that familiar with Cisco's commands. I'd like to set up the following scope:

192.168.1.50 - 192.168.1.100
no exclusions
lease time 1 week

I appreciate your help.
Thanks,
T
 
Oops, forgot some other info...

DNS - xxx.xxx.xxx.131
WINS - xxx.xxx.xxx.131
gateway will be the router itself - 192.168.1.5
parent domain: corp.companyname.com

Thanks!
 
ip dhcp pool XXXX
network 192.168.1.50 - 192.168.1.100
default-router 192.168.0.5
dns-server xxx.xxx.xxx.131

interface Ethernet0/1
description link to LAN
ip address 192.168.0.5 255.255.255.0
ip nat inside

interface Ethernet0/0
Description link to ISP
ip address dhcp
ip nat outside

ip nat inside source list 1 interface Ethernet0/0 overload
access-list 1 permit 192.168.0.0 0.0.0.255

This is just small example of thing you need to put in there

CCNA, CCNP..partly ;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top