cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4300
Views
5
Helpful
2
Replies

How can I configure DHCP server on 4948

jojupj_josep
Level 1
Level 1

Pls help me in configuring DHCP server in a Catalyst 4948 switch to deliver Ip's to a particular Vlan and intervlan routing .

2 Replies 2

jackyoung
Level 6
Level 6

I can't ensure that Cat4k can support DHCP server but it do support DHCP relay. Please check below link for the sample and try to configure it.

http://www.cisco.com/en/US/products/sw/iosswrel/ps1830/products_feature_guide09186a008008743b.html

http://www.cisco.com/en/US/products/ps6021/products_installation_and_configuration_guides_list.html

Please advise if you find any information that indicated Cat4k support DHCP server.

Hope this helps.

Roberto Salazar
Level 8
Level 8

4948 is an IOS based platform that supports L3 functions such as inter-vlan routing. It supports IOS based DHCP server much like a regular router:

DHCP Server on IOS configuration example on the router:

http://www.cisco.com/en/US/products/sw/iosswrel/ps1830/products_feature_guide09186a008008743b.html#25541

ip dhcp excluded-address 172.16.1.100 172.16.1.103

ip dhcp excluded-address 172.16.2.100 172.16.2.103

!

ip dhcp pool 0

network 172.16.0.0 /16

domain-name cisco.com

dns-server 172.16.1.102 172.16.2.102

netbios-name-server 172.16.1.103 172.16.2.103

netbios-node-type h-node

!

ip dhcp pool 1

network 172.16.1.0 /24

default-router 172.16.1.100 172.16.1.101

lease 30

!

ip dhcp pool 2

network 172.16.2.0 /24

default-router 172.16.2.100 172.16.2.101

lease 30

Please rate helpful posts.