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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can Cisco Router provide DHCP and/or DNS? 2

Status
Not open for further replies.

hinesjrh

MIS
Joined
Jan 4, 2005
Messages
260
Location
US
I have 51 locations that each have a Cisco router (2610 or 2620XM). Is it possible that these 2600's can provide DHCP and DNS to the clients at the location?

If yes, how would that be configured on the 2610?

[ponder]
 
You can create multiple DHCP pools like this:

!
no ip dhcp conflict logging
ip dhcp excluded-address 192.168.0.1 192.168.0.10
ip dhcp excluded-address 192.168.1.1 192.168.1.10
!
ip dhcp pool POOL1
import all
network 192.168.0.0 255.255.255.0
default-router 192.168.0.1
domain-name pool1.com
netbios-name-server 192.168.0.2
netbios-node-type h-node
dns-server 192.168.0.2 192.168.0.3
lease 30
!
ip dhcp pool POOL2
import all
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
domain-name pool2.com
netbios-name-server 192.168.1.2
netbios-node-type h-node
dns-server 192.168.1.2 192.168.1.3
lease 30
!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top