- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DHCP doesn't reply to Bootp
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
Discussions
Discussions
Discussions
Forums
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
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
тАО03-14-2002 10:24 AM
тАО03-14-2002 10:24 AM
DHCP doesn't reply to Bootp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2002 10:41 AM
тАО03-14-2002 10:41 AM
Re: DHCP doesn't reply to Bootp
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2002 10:50 AM
тАО03-14-2002 10:50 AM
Re: DHCP doesn't reply to Bootp
This is my dhcp file. 192.168.0.8 is my second LAN card on C360. and the directory img_2.2.* is in /home/tftpdir with all the permissions to all.
#-----------------
# Clearlake
#-----------------
dhcp_pool_group: pool-name=Clearlake: addr-pool-start-address=192.168.0.80: addr-pool-last-address=192.168.0.89: allow-bootp-clients=TRUE: lease-time=120: lease-policy=accept-new-clients: call-on-assignment=/home/jd/dev/nautilus/product/nautilus/release/bin/dhcpcall: hn: bf=img_2.2.04_release/bootImage: yd=img_2.2.04_release: nt=192.168.0.8: gw=192.168.0.8: subnet-mask=255.255.255.0
#-----------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2002 10:50 AM
тАО03-14-2002 10:50 AM
Re: DHCP doesn't reply to Bootp
1. Make sure that bootp services are enabled in the /etc/services file. The entries should look like this:
bootps 67/udp # Bootstrap Protocol Server
bootpc 68/udp # Bootstrap Protocol Client
2. Check that bootp service is enabled in the /etc/inetd.conf file. The entry looks like this:
bootps dgram udp wait root /etc/bootpd bootpd
If the entry is commented; uncomment it and run inetd -c to re-read the config file.
3. Test bootp's ability to respond to the test address 080009000000 (found in the default /etc/bootptab or /etc/newconfig//bootptab file. The form of the command line is:
bootpquery 080009000000 -s
where
bootpquery: Bootp servers not responding!
if the bootp daemon is not working (see steps 1 and 2), or
Received BOOTREPLY from x.x.x.com
followed other test data from the /etc/bootptab file.
4. Start inetd logging operations with:
inetd -l
Detailed service logging will begin in the file /usr/adm/syslog at which point the bootpquery test can be run again, or the device needing bootp services can be powered on or restarted for bootp service.
Then look at the end of the syslog file as in:
tail /usr/adm/syslog
Typical bootpquery logging might be:
machine bootpd[39]: request from hardware address 080009000000
machine bootpd[39]: sending RFC1048-style reply
(the date stamp was not shown above) which indicates bootpquery and bootp ran correctly.
5. The bootp daemon may be run manually with the command:
bootpd -s -d 3
In this case, bootpd will never exit. The -d 3 option sets the
debugging level to 3 (highest level of information). Using the
-s option causes bootpd to not terminate, thereby bypassing the
automatic scheduling of bootp by inetd. Verify that bootpd is
running with: ps -ef|grep bootpd.
6. To verify that bootpd is listening for bootp requests, type
netstat -a |grep boot
and the line:
udp 0 0 *.bootps *.*
should be shown, indicating that bootpd is responding to any
bootp network requests.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-14-2002 11:12 AM
тАО03-14-2002 11:12 AM
Re: DHCP doesn't reply to Bootp
I am running all commands from super user and after trying "bootpd -s -d 3" it says bootpd not found. I checked in /etc and it's there. Permissions on bootpd are lr-xr--r-T and link is /usr/lbin/bootpd
what else I should try ? Actually I donot want bootpserver to reply bootprequests but I want DHCP server to reply all bootp and dhcp requests. Is it possible ? and how ?