- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: issue in syslog
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
04-13-2005 10:00 PM
04-13-2005 10:00 PM
Apr 14 10:38:24 host bootpd[1940]: stat on "/etc/dhcptab": No such file or directory
Apr 14 10:38:24 host bootpd[1940]: Received DHCPDISCOVER creating DHCPOFFER. Request data: ci = 01080020F0E052, req IP not sent, ciaddr 0.0.0.0, giaddr 0.0.0.0, broadcast reply off, server id not sent.
Apr 14 10:38:24 host ltid[17230]: ltid received request type 92
Apr 14 10:38:24 host above message repeats 54 times
Apr 14 10:38:24 host ltid[17230]: ltid received request type 92
seems to be a problem with the DHCP server, has anyone seen this previously?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 10:06 PM
04-13-2005 10:06 PM
Re: issue in syslog
ptyfork failed in ptysystem,
I'm pretty sure this haas something to do with the kernel params being exceeded but which one?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 10:11 PM
04-13-2005 10:11 PM
Re: issue in syslog
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 10:17 PM
04-13-2005 10:17 PM
Re: issue in syslog
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 10:29 PM
04-13-2005 10:29 PM
Re: issue in syslog
a somewhat similar problem is seen in the knowledge base:
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000076640931
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 03:41 AM
04-14-2005 03:41 AM
Solution(intentionally or not) your machine is running a
DHCP server. Since a DHCP server is supposed to
read a dhcptab file (which does not exist on your
machine), accept a DHCPDISCOVER and reply with
a DHCPOFFER, there is nothing really wrong in the
above messages.
Since you don't have a dhcptab file, my guess is,
it is not your intention to run DHCP server on
the system. So you need to stop running DHCP
server daemon. Steps to do this are:
1) Comment the line starting with bootps in file
/etc/inetd.conf (i.e place a '#' char as the first char
of the line).
2) Reconfigure inetd by executing
# inetd -C
3) Find pid of currently running bootpd process and
kill it.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 05:26 AM
04-14-2005 05:26 AM
Re: issue in syslog
thanks for your help