- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- auto negotiate
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
10-04-2002 03:56 AM
10-04-2002 03:56 AM
I have a K class server with a Ethernet card. the speed on this card is set at 10 Mb/s. I want to set it to auto negotiate and not sure if it is set so. Could you tell how I can set this card to auto negotiate.
appreciate your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 03:59 AM
10-04-2002 03:59 AM
Re: auto negotiate
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:03 AM
10-04-2002 04:03 AM
Re: auto negotiate
Match the product number on the card with the information in the link below. From this you will be able to deduce the correct configuraton file to change.
Moat folks find that auto-negotation is unreliable and set *both* their switch and their lan card to 100MG full duplex with no autonegotation.
http://techsolutions.hp.com/fe/tips.html
http://techsolutions.hp.com/fe/products.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:06 AM
10-04-2002 04:06 AM
Re: auto negotiate
In here you can set the speedto whatever you want, but you might come up against performace issue by setting it to autosense reather that 10 or 100.
You can also set the speed in /etc/rc.config.d/hppci100conf, set HP_PCI100_SPEED[0]=10FD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:08 AM
10-04-2002 04:08 AM
Re: auto negotiate
Run the script to get your current settings
#!/usr/bin/sh
PATH=/usr/sbin:/usr/bin
ppas=`lanscan | awk '$3~/^[0-9]$/{print $3}' | xargs`
for i in $ppas
do
printf "Card at PPA %s - " $i
ipa=`ifconfig lan${i} 2>/dev/null | awk '{ip=$2}END{if(ip==""){printf("Not assig
ned ")}else{printf("%s ",ip)}}'`
printf "IP Address: %15s- " "$ipa"
# lanadmin -s $i | awk '{printf("%4d Mbps\n",$NF/1000000)}'
lanadmin -x $i 2>/dev/null | awk '{$1="";printf("%s",$0)}'
echo ""
done
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:12 AM
10-04-2002 04:12 AM
Re: auto negotiate
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:16 AM
10-04-2002 04:16 AM
Re: auto negotiate
Have a look at these frequently asked questions
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:34 AM
10-04-2002 04:34 AM
SolutionSo perhaps the point is moot?
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 04:47 AM
10-04-2002 04:47 AM
Re: auto negotiate
thank you for your fast and helpfull hints. This is a development box and 8 Oracle instances are running. By the way my OS is 11.0. With regard to sam, there is no option to change the speed. when I use lanadmin with -X option says "do not support". So I used -S and I get "Unable to change speed error no 22". I am not sure if I have an option to change the speed, am I wrong? I have also took a look at /etc/rc.config.d/hpbase100conf and used the options in the comment portion of the file but, no luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 06:03 AM
10-04-2002 06:03 AM
Re: auto negotiate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 06:19 AM
10-04-2002 06:19 AM
Re: auto negotiate
OR
You can add one 100 mbps card to increase the network speed.
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 06:22 AM
10-04-2002 06:22 AM
Re: auto negotiate
Neither will lanadmin set a speed that is not supported for that NIC.
I don't know that the built-in NIC on K's were ever 100Mb cards. You can get add-on cards that are 10/100.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2002 08:03 AM
10-04-2002 08:03 AM
Re: auto negotiate
Thank you for your responses. From your inputs and my experience with the BUILT-IN card I have no choice but, deal with whatever I get which is 10 Mbp/s. NO budget for add ons.
again thank you