Ok, static DHCP is kind of an oxymoron but I can't find the right term. Basically I want to assign an address to a client using dhcp, but I want this address to be fixed based on the MAC address. My dhcp works fine for normal leases, but my specific client always gets a lease from the "dynamic" pool instead of the one that is tied to its MAC address.
Here's the related config:
My test client always gets another address than 11. (Basically it gets 12 all the time so the router seems to be aware that 11 is reserved, but it just does not trigger on the MAC).
Thanks in advance for your help, I'm sure I'm missing a small detail.
Pat
Here's the related config:
Code:
service dhcp
!
no ip dhcp use vrf connected
no ip dhcp conflict logging
ip dhcp excluded-address 192.168.192.1 192.168.192.10
ip dhcp excluded-address 192.168.192.253 192.168.192.254
!
ip dhcp pool 192.168.192.0/24
network 192.168.192.0 255.255.255.0
default-router 192.168.192.1
dns-server 67.69.184.24 67.69.184.155
!
ip dhcp pool testclient
host 192.168.192.11 255.255.255.0
hardware-address 0015.snip.snip
client-name testclient
default-router 192.168.192.1
dns-server 67.69.184.24 67.69.184.155
!
My test client always gets another address than 11. (Basically it gets 12 all the time so the router seems to be aware that 11 is reserved, but it just does not trigger on the MAC).
Thanks in advance for your help, I'm sure I'm missing a small detail.
Pat