- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: DHCP Question.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 09:32 PM
09-09-2008 09:32 PM
DHCP Question.
Servername MAC IP Subnet
machom 00:50:56:4c:f4:7d 1.22.0.X
I need to add the above server into DHCP server scope.
How we can do it?
Regards,
Sudhakaran.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 09:42 PM
09-09-2008 09:42 PM
Re: DHCP Question.
You mean you need to configure a DHCP server on this system, or you need to allow this system to be configured by an existing DHCP server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 09:44 PM
09-09-2008 09:44 PM
Re: DHCP Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 09:58 PM
09-09-2008 09:58 PM
Re: DHCP Question.
In general, you need to enable your NIC to use DHCP.
Add/change the line in /etc/rc.config.d/netconf for the appropriate card:
DHCP_ENABLE[0]=1
Also, touch /etc/dhcpclient.data
Then reboot.
Making sure your DHCP server will actually serve the configuration is a completely different matter and will depend on a myriad of factors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:06 PM
09-09-2008 10:06 PM
Re: DHCP Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:12 PM
09-09-2008 10:12 PM
Re: DHCP Question.
Check for existing entries in the file and add one of the same structure for your new server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:15 PM
09-09-2008 10:15 PM
Re: DHCP Question.
Other informations, I can use. Without fixed address, is it possible? to add in dhcpd.conf.
host kyhawotm10 {
hardware ethernet 00:11:43:5a:48:97;
fixed-address 1.22.0.60;
default-lease-time 2592000;
max-lease-time 2592000;
# DNS Servers - Domain Controller-Local MFS Server
option domain-name "weyer.com";
option domain-name-servers 1.22.0.1, 10.247.42.34, 10.150.17.3;
# Weyerhaeuser Central WINS Server
option netbios-dd-server 10.248.81.70, 10.247.40.20;
option netbios-name-servers 10.248.81.70, 10.247.40.20;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:18 PM
09-09-2008 10:18 PM
Re: DHCP Question.
So your new entry will be:
host machom {
hardware ethernet 00:50:56:4c:f4:7d;
fixed-address
default-lease-time 2592000;
max-lease-time 2592000;
# DNS Servers - Domain Controller-Local MFS Server
option domain-name "weyer.com";
option domain-name-servers 1.22.0.1, 10.247.42.34, 10.150.17.3;
# Weyerhaeuser Central WINS Server
option netbios-dd-server 10.248.81.70, 10.247.40.20;
option netbios-name-servers 10.248.81.70, 10.247.40.20;
}
Presuming it's using the same DNS servers, of course.
Is this OK?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:25 PM
09-09-2008 10:25 PM
Re: DHCP Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:30 PM
09-09-2008 10:30 PM
Re: DHCP Question.
Leave the "fixed address" line out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:52 PM
09-09-2008 10:52 PM
Re: DHCP Question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2008 10:57 PM
09-09-2008 10:57 PM
Re: DHCP Question.
Normally, yes.
Are you trying this stuff or just making notes???