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

DHCP server on 2611

m.matteson
Level 2
Level 2

can you configure a DHCP pool only to issue ips from 10.10.10.1-10.10.10.2

also can you configure reservations?

1 Accepted Solution

Accepted Solutions

thisisshanky
Level 11
Level 11

ip dhcp pool TEST

network 10.10.10.0 255.255.255.0

ip dhcp excluded-address 10.10.10.3 10.10.10.254 ---- this will not allocate ip address from the specified range.

The above accounts for Excluding the ip address range from .3 to .254 and only issue ips .1 and .2

To configure reservations...yes you can...using manual bindings.

Use "host" command in config-dhcp mode to specify the ip address and the "hardware-address" command to specify the mac-address associated with the host for which you want to reserve the ip address.

Sankar Nair
UC Solutions Architect
Pacific Northwest | CDW
CCIE Collaboration #17135 Emeritus

View solution in original post

2 Replies 2

thisisshanky
Level 11
Level 11

ip dhcp pool TEST

network 10.10.10.0 255.255.255.0

ip dhcp excluded-address 10.10.10.3 10.10.10.254 ---- this will not allocate ip address from the specified range.

The above accounts for Excluding the ip address range from .3 to .254 and only issue ips .1 and .2

To configure reservations...yes you can...using manual bindings.

Use "host" command in config-dhcp mode to specify the ip address and the "hardware-address" command to specify the mac-address associated with the host for which you want to reserve the ip address.

Sankar Nair
UC Solutions Architect
Pacific Northwest | CDW
CCIE Collaboration #17135 Emeritus

It doesn't look like you can use the host or hardware-address command in the same pool you are using a network Pool. You get the error message "% This command may not be used with network pools.". I can't find any other way to reserve an IP address.