- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Where to Check Status of Ethernet Links in Log f...
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
02-11-2009 10:55 PM
02-11-2009 10:55 PM
Where to Check Status of Ethernet Links in Log files ?
Can anybody tell me where we can find the log files to check the Status of Ethernet Links ?
Thanks in Advance to HP-UX Gurus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2009 10:59 PM
02-11-2009 10:59 PM
Re: Where to Check Status of Ethernet Links in Log files ?
You can look in to the syslog.log file
/var/adm/syslog/syslog.log
Sagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2009 11:37 PM
02-11-2009 11:37 PM
Re: Where to Check Status of Ethernet Links in Log files ?
All network related errors will be logged in /var/adm/nettl.LOG000. It is binary file. You need to use "netfmt" command to read the binary file. Use the below command to check the log files for any errors.
# netfmt -Nlf /var/adm/nettl.LOG000
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 11:50 PM
02-12-2009 11:50 PM
Re: Where to Check Status of Ethernet Links in Log files ?
The netfm is giving error as corrutpted.
Also when we try to find the entries in the syslog file they are not available. We are trying to pull out the cable from interface. Does this physically bring down the interface? If not how do I bring down the interface and make it up again without disturbing the settings or connectivity?
Also i need the time stampto be visible when we do this activity...
Please do suggest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 12:48 AM
02-13-2009 12:48 AM
Re: Where to Check Status of Ethernet Links in Log files ?
If nettl.LOG000 file is corrupted just empty the file.
#> /var/adm/nettl.LOG000
If you want to bring down the interface temporarily you can use ifconfig command.
#ifconfig lan5 down
#ifconfig lan2 up
nettl.LOG000 will capture the cable disconnection entries. You need to plugout the cable if nettl to capture with timestamps.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 12:57 AM
02-13-2009 12:57 AM
Re: Where to Check Status of Ethernet Links in Log files ?
thank u for the reply... But if we do give ifconfig down command will it affect the lancard configuration?Do I need to reconfigure the Ip adrees and mask ,gateway information after the down up exercise?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 04:30 AM
02-13-2009 04:30 AM
Re: Where to Check Status of Ethernet Links in Log files ?
No. it won't. When an interface is marked "down", the system will not attempt to transmit messages through that interface.
When you bring up the interface using ifconfig up, all the setting will be retrieved as it was.
Ganesh.