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

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 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