Link to home
Start Free TrialLog in
Avatar of Steve_I
Steve_I

asked on

how to reserve ip address on Cisco dhcp router

Hello,

I am interesting how to RESERVE an ip address for the servers, so I need a suggestion how to do it.
You will see that I have used command "lease infinite" this command disables expiration of the lease. I have booted the server first time and if the server got an ip for example 10.0.0.6 than I have just configured this ip as a static ip address for that server, so that no other pc can take it since the lease will not expire.

But this is not the right way to do it, so I would rather configure dhcp that clients can receive the ip address, but in the same time I will reserve couple ip addresses that my servers uses.

For example I have the network now : 10.0.0.0 /8
Than I will that clients range is : 10.0.0.0-10.0.0.50 and the rest can be reserved ip addresses or I can reserve these ip addresses:
10.0.0.51,52,53,54,55,56 so I need a suggestion how to accomplish this goal.

Below is the DHCP configuration I use right now.
___________________________________________
ip dhcp pool VLAN10_pool
   network 10.0.0.0 255.255.255.0
   domain-name vlan10.com
   dns-server 213.184.200.1 213.184.200.2
   default-router 10.0.0.2
   lease infinite
___________________________________________

Thank You
Best regards
Steve_I
ASKER CERTIFIED SOLUTION
Avatar of caddlady
caddlady

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Steve_I
Steve_I

ASKER

Thank You for answer !!!

I found :

Router(config)# ip dhcp excluded-address low-address [high-address]

I saw this before, but I am not sure can I use the excluded ip addresses for the servers ?? is it the same way as RESERVED ip addresses ??
In windows dhcp I know, there can we reserve and exclude both alternatives are there but not in cisco as I see.
I know that excluded addresses will not be assigned to the clients BUT can I use them for srevers ? or they need to be reserved ?

Steve_I
Yes, exclude means same as reserved.  In order for your servers to use them, you must assign them as static ip in the TCP/IP config for their network cards.
mybad...  

Wrong terminology...   exclude does not mean same as reserved...

exclude - means do not assign it to anything
reserved - assign it to only this MAC address

 :)

Avatar of Steve_I

ASKER

Exact my friend :) that was what I tought ;)

But I could not find the command which can "reserve an specified mac address to an ip address "

Do You know it maybe ??

Thank You for reply !!!!

Best regards
Steve_I
Try this link:

http://www.joe-ma.co.za/page.php?28

Good Luck!  Caddlady
Avatar of Steve_I

ASKER

Hi again !!

Thank You very much for helping !!

But I got simple problem, my pool looks like this below :

ip dhcp pool VLAN10_pool
   network 10.0.0.0 255.255.255.0
   domain-name vlan10.com
   dns-server 213.184.200.1 213.184.200.2
   default-router 10.0.0.2
   lease infinite

So I accessed the ip dhcp pool VLAN10_pool than I run the command :

host 10.0.0.15 255.255.255.0 and when I hit the enter I got the error message below:

Router(dhcp-config)#host 10.0.0.15 255.255.255.0
% This command may not be used with network, origin or vrf pools.

so I could not process the whole command as describedon the link You gave me:

ip dhcp pool STATIC-3
host 10.0.0.10 255.255.255.0
hardware-address 0014.3863.6c88

Steve_I


What is the model #, firmware ver, etc. for your equip?
Avatar of Steve_I

ASKER

The model is Cisco 2600 Series (2620) and the IOS version I use iz 12.3(20)
Avatar of Steve_I

ASKER

found any solutions for the problem ??

The dhcp pool that you would add the static (reserved) ips in is STATIC-3 - not VLAN10_pool.  Try creating the second pool.
There is a section on creating a Static Mapping Text File in the link below.

http://www.cisco.com/en/US/products/ps6350/products_configuration_guide_chapter09186a00804419eb.html#wp1114732
Avatar of Steve_I

ASKER

Hello !!

Nice description on the post above.
Thank You very much for helping me, I will test it now, so I will se how it works.

Best regards
Steve_I