0% found this document useful (0 votes)
1K views

Como Reservar Una Dirección Ip A Una Mac en Cisco

To assign static IP addresses to two computers while allowing the remaining three computers to receive dynamic IP addresses from a pool, the document describes configuring DHCP on a router running IOS to create separate pools for each static device based on their unique MAC addresses and a third pool for the dynamic addresses.

Uploaded by

aleman844
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views

Como Reservar Una Dirección Ip A Una Mac en Cisco

To assign static IP addresses to two computers while allowing the remaining three computers to receive dynamic IP addresses from a pool, the document describes configuring DHCP on a router running IOS to create separate pools for each static device based on their unique MAC addresses and a third pool for the dynamic addresses.

Uploaded by

aleman844
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

To set a static IP binding in DHCP on a device with IOS, you have to create a se parate pool for each device.

So, for example, say I have five computers. Two of them need static IPs and the rest can just grab them from a pool. The MAC addresses for the computers are 000 x.000x.000x, where x is the computer number, so 0001.0001.0001 for computer 1, e tc... The ip of the router in this example is 10.0.0.1. Here's a sample config for that: ip dhcp pool computer1 host 10.0.0.2 255.255.255.0 client-identifier 0100.0100.0100.01 default-router 10.0.0.1 dns-server 1.2.3.4 5.6.7.8 ip dhcp pool computer2 host 10.0.0.3 255.255.255.0 client-identifier 0100.0200.0200.02 default-router 10.0.0.1 dns-server 1.2.3.4 5.6.7.8 ip dhcp pool EveryoneElse network 10.0.0.0 255.255.255.0 default-router 10.0.0.1 dns-server 1.2.3.4 5.6.7.8

You might also like