- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /usr/adm/syslog: hardware address not found
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
05-28-2001 06:37 AM
05-28-2001 06:37 AM
every minute I get 2 error messages in /usr/adm/syslog:
hardw.addr. not found:0030840E9033
How can I find out, which hardware is meant?
How can I disable this hardware, if possible/necessary?
Thank you, bye
Michael
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2001 06:51 AM
05-28-2001 06:51 AM
Re: /usr/adm/syslog: hardware address not found
If you are not booting any bootp devices from this server/workstation then the simplest solution would be:
1) vi /etc/inetd.conf
Find the bootps antry and comment it out by placing a '#' at the beginning of the line.
2) inetd -c to force a re-read of the config file.
These messages do no harm but they are annoying.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2001 07:18 AM
05-28-2001 07:18 AM
Re: /usr/adm/syslog: hardware address not found
my bootps entry is:
dgram udp wait root /etc/bootpd bootpd
- is this ok?
These entries,
could they belong to an old workstation?
to an old printer?
Where could I find out?
Thank you for your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2001 07:58 AM
05-28-2001 07:58 AM
Re: /usr/adm/syslog: hardware address not found
You can look up the vendor code for the first 6 digits and that will tell you most likely who the vendor of the devices broadcasting the boot requests:
http://ftp.cavebear.com/CaveBear/Ethernet/vendor.html
You can also capture these devices on a sniffer trace most easily. Contact your network LAN support technicians to have that done. If you're that person, and do not have access to a sniffer, you can always attempt to capture a nettl trace while the broadcasts are going on.
Check out the IT Resource Center documents
HOW TO TAKE A NETWORK TRACE ON HP-UX KBRC00001272
or
HOW TO TAKE A NETWORK TRACE ON HP- KBAN00000068
Hope this helps,
-> Brian Hackley
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2001 08:12 AM
05-28-2001 08:12 AM
Re: /usr/adm/syslog: hardware address not found
Yes, that's the line to comment out if you are not a bootp server. You can use this website http://standards.ieee.org/regauth/oui to get a listing mapping the first 6 digits of a MAC address to a manufacturer. That should help point you to the equipment. You should note that these guys are broadcasting to your network for boot instructions and nobody is responding.
Good Hunting, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 03:32 AM
05-29-2001 03:32 AM
Re: /usr/adm/syslog: hardware address not found
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 03:57 AM
05-29-2001 03:57 AM
SolutionOr you could try this:
vi the /etc/syslog.conf file and change the line that reads :
*.info,mail.none /usr/adm/syslog
to
*.warning,mail.none /usr/adm/syslog
then do:
/sbin/init.d/syslogd stop
/sbin/init.d/syslogd start
HTH