El Wed, 31 Aug 2011 19:20:52 -0400, linux escribió: > saludos lista, como puedo hacer reservas en un server DHCP sobre debian > 6
¿Te refieres a asignar la misma IP a los equipos? http://wiki.debian.org/DHCP_Server#Assign_fixed_addresses *** Advanced configuration Assign fixed addresses To assign a fixed address, e.g. 192.168.1.5, to a particular machine, e.g. cinnamon, add a statement like the following to the configuration file. host cinnamon { hardware ethernet 00:0D:87:B3:AE:A6; fixed-address 192.168.1.5; } The cryptic number 00:0D:87:B3:AE:A6 is the hardware address of the interface of cinnamon. It identifies the client to the server. You can get it by running the ifconfig command on the client if the interface is up. The name (cinnamon) given here is pretty arbitrary at this point and not used for anything yet, as far as I can tell. More information Consult the man pages for advanced options. user> man dhcpd.conf *** Saludos, -- Camaleón -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

