cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
625
Views
0
Helpful
2
Replies

How to configure DHCP server in 2500 series

twu1966
Level 1
Level 1

Hi

Could you tell me how to setup dhcp server in 2500 seriers?

could you share with me some syntax to configure dhcp server?

thanks for your expertise

tom

2 Replies 2

marvin
Level 1
Level 1

Defining DNS and Netbios servers is optional. Defining Domain name is optional.

***SAMPLE***

Example using a router with address 172.16.0.1

no ip dhcp conflict logging

ip dhcp excluded-address 172.16.0.1

!

ip dhcp pool YOURPOOL

network 172.16.0.0 255.255.255.0

domain-name yourdomain.com

dns-server 172.17.0.1 172.17.0.2

netbios-name-server 172.17.0.1 172.17.0.2

netbios-node-type h-node

default-router 172.16.0.1

*****

See Also:

Configuring DHCP - Cisco IOS 12.1 Mainline -

http://www.cisco.com/en/US/products/sw/iosswrel/ps1831/products_configuration_guide_chapter09186a00800ca6b5.html

twu1966
Level 1
Level 1

thank you from your input.