cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1637
Views
0
Helpful
1
Replies

Static DHCP reservation on Cisco 3560 switch

Martin Hahmann
Level 1
Level 1

I have a DHCP pool on my 3560.

ip dhcp pool Data
   network 10.221.14.0 255.255.255.192
   default-router 10.221.14.1
   dns-server 10.205.10.1 192.168.116.27
   lease 0 0 5

I need to create a static reservation in this pool for 10.221.14.10 but the command

address 10.221.14.10 hardware-address aaaa.bbbb.cccc doesnt work like i did on my old switches. Ive tried a few things using the "host" command, but it doesnt like that either. Any ideas?

1 Reply 1

You can try to configure a new DHCP pool like this:

ip dhcp pool STATIC
   host XXX.XXX.XXX.10 255.255.255.0
   hardware-address aabb.ccdd.eeff
   default-router XXX.XXX.XXX.1
   dns-server XXX.XXX.XXX.XXX
   netbios-name-server XXX.XXX.XXX.14
   domain-name domain.local

I have configured one DHCP pool like this in a Cisco 1800 Series and is working fine.....

I hope it's useful for you

Regards.

David.