- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Changing a LAN card Driver
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
08-02-2006 04:16 AM
08-02-2006 04:16 AM
Re: Changing a LAN card Driver
The first linkloop failure with the Unix errno of 57 suggests there is no link up - either no cable, bad cable, or nothing live at the other end of the cable:
$ grep 57 /usr/include/sys/errno.h
#define ENOLINK 57 /* the link has been severed */
#define ECONFIG 157 /* Configured kernel resource exhausted */
The second failure looks a bit more obscure:
$ grep 4 /usr/include/sys/errno.h
# if defined(_REENTRANT) && !defined(_PTHREADS_DRAFT4)
# else /* ! _REENTRANT || _PTHREADS_DRAFT4 */
# endif /* ! _REENTRANT || _PTHREADS_DRAFT4 */
# define ERANGE 34 /* Math result not representable */
#define EINTR 4 /* interrupted system call */
#define EFAULT 14 /* Bad address */
I'm guessing that is a timer popping when there was no reply from the remote MAC, which brings us back to the bit about the remote needing to grok the frame sent by linkloop.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2006 04:41 AM
08-02-2006 04:41 AM
Re: Changing a LAN card Driver
At least the build in NICs will indicate the connection as 10/100/1000.
How about this?
(just for the case of a bad cable)
This is similar for the A7012A NIC.
There is an activity/link LED and the other will indicate the speed.
http://docs.hp.com/en/5971-4261/ch01s02.html#d0e710
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2006 05:50 AM
08-02-2006 05:50 AM
Re: Changing a LAN card Driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-02-2006 06:17 AM
08-02-2006 06:17 AM
Re: Changing a LAN card Driver
you can probly check the following
1. check physically whether link led glow properly.
2. connect an cross cable and check the ping status.
3. you can check the nettl log output for any cable issues/harware issues.
4. check whether local ping and telnet works well.
5. check the parameters of ip_send_source_quench and ip_ire_gw_probe using ndd get command.
ndd -get /dev/ip ip_send_source_quench
ndd -get /dev/ip ip_ire_gw_probe
if above return stauts 1 try change to 0 by.
ndd -set /dev/ip ip_send_source_quench 0
ndd -set /dev/ip ip_ire_gw_probe 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2006 07:10 AM
08-11-2006 07:10 AM
Re: Changing a LAN card Driver
I had to open a call with HP support. They are still working on the problem.
Thanks for all your suggestions.
Andrew
- « Previous
-
- 1
- 2
- Next »