Linux / UNIX Tech Support Forum
This is a discussion on DHCP server within the Linux software forums, part of the Linux Getting Started category; I want my dhcp server to assign static ip to a pxe enabled dell box.So this client (pxe enabled dell ...
|
|||||||
| Linux software General questions and discussion about Redhat/Fedora Core/Cent OS, Debian and Ubuntu Linux related to softwares should go here. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
I want my dhcp server to assign static ip to a pxe enabled dell box.So this client (pxe enabled dell box) has to get ip while booting only.
how should my dhcpd.conf look under this scenario. |
| Sponsored Links | ||
|
|
|
|||
|
You can assign specific IP addresses/static based on clients ethernet address (MAC address) e.g. add following line to your dhcpd.conf file (/etc/dhcpd.conf):
Code:
host dellbox {
hardware ethernet 08:ac:2b:dc:51:11;
fixed-address 192.168.1.22;
}
This way dellbox getting "static" IP addresse. Next restart dhcpd and you are done. Boot dellbox. If you have a more question reply back. |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| single DHCP server with multiple VLAN's | frank | Computer Networking and Internet/broadband | 2 | 07-12-2007 12:38 PM |
| connecting to a DHCP network | ricc | Linux software | 2 | 24-04-2006 12:46 PM |
| Dynamic DNS , should get updates automatically from DHCP | sonaikar | Linux software | 1 | 28-03-2005 12:14 PM |
| How to update DNS through DHCP automatically | sonaikar | Shell scripting | 1 | 16-03-2005 06:42 PM |