cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
902
Views
10
Helpful
4
Replies

How to configure DHCP system according to mac address

NguyenNgocBa
Level 1
Level 1

My system has two switches that act as DHCP (catalyst 3850), I configured the vtp domain down to 6 catalyst 2960x switches underneath the end user, my wifi system uses cisco 2500 contronler.
I have a wifi user but I want him to use only one ip address so I configured the dhcp level according to mac address but there is something wrong he did not receive the ip address as I desired, i also came back Trying to get one on my pc but it does not seem to work either.
I did not know where I was wrong
!
ip dhcp pool vlan 113
 network 193.168.113.0 255.255.255.0
 default-router 193.168.113.1
 dns-server 11.11.11.11 8.8.8.8
!
!
ip dhcp pool test
 host 193.168.113.113 255.255.255.0
 client-identifier 309c.2308.ae1f
 client-identifier IT-113
!
mac address my device when show up in mac address table of 2 types
309c.2308.ae1f or 0130.9c23.08ae.1f

4 Replies 4

johnd2310
Level 8
Level 8

Hi,

 

Allow the client to connect and check what the client-identifier is. Then use the client-identifier to create a reservation. The client-identifier should be something like 0130.9c23.08ae.1f

 

Thanks

John

**Please rate posts you find helpful**

thank you, I was able to handle the error, because the address of the user's mac address saved on the dhcp table, I use the command.

clear ip dhcp binding x.x.x.x

Hello,

 

make sure the formatting is correct:

 

ip dhcp pool test
host 193.168.113.113 255.255.255.0
client-identifier 0130.9c23.08ae.1f
client-identifier IT-113

 

or use the hardware address:

 

ip dhcp pool test
host 193.168.113.113 255.255.255.0
hardware-address 309c.2308.ae1f

 

thank you