- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: network settings ?
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
11-29-2000 08:31 AM
11-29-2000 08:31 AM
Any ideas ?? - are there params that need looking at
Any help much appreciated
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 08:57 AM
11-29-2000 08:57 AM
Re: network settings ?
I would start by verifying the network connection characteristics with:
# lanscan
Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI
Path Address In# State NamePPA ID Type Support Mjr#
56.1 0x08000948ABF8 0 UP lan0 snap0 1 ETHER Yes 119
note the PPA for your lan0 (or whatever your primary interface is)
# lanadmin -x 0
Current Speed = 100 Full-Duplex Auto-Negotiation-OFF
verify that the result is correct. If not, you may have to edit the /etc/rc.config.d corresponding to the card of your servers to make it FULL-duplex Auto-Neg-Off...
I have found that sometimes if auto neg is turned on, performance is sub-par.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 09:34 AM
11-29-2000 09:34 AM
Re: network settings ?
output from the lanadmin command is
100 1/2 duplex and autoneg on
so I need it to be 100 full off - ok what file in rc.config.d do I change ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 09:58 AM
11-29-2000 09:58 AM
Re: network settings ?
# grep "=lan0" /etc/rc.config.d/hp*conf | awk -F: '{ print $1 }'
to tell you which file you need to edit.
now edit the file (there are lots of comments to guide you)
After you have made the changes, you would have to reboot for the changes to take effect. ( or reset the lancard with the following steps:
1. determine the rc script that initialises the card:
# grep `grep "=lan0" /etc/rc.config.d/hp*conf | awk -F: '{ print $1 }'` /sbin/init.d/* | awk -F: '{ print $1 }'
This will list the script name eg. hpgsc100 then you can reset the card with:
# /sbin/init.d/hpgsc100 stop ; /sbin/init.d/hpgsc100 start
then issue the commands from my previous post to confirm... if all fails reboot after making the changes (sometimes, switches do not behave well when cards get reset this way)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2000 08:32 PM
11-29-2000 08:32 PM
Re: network settings ?
you might want to make sure that there is a mismatch first - look at not just the NIC with lanadmin, but also the switch port stats.
you might also look at the TCP stats to make sure there are lost segments - if there is a duplex mismatch there will be a non-trivial number of TCP retransmissions.
once you have determined the mis-match, you can change the speed and duplex settings without rebooting by using lanadmin -X (iirc). as noted elsewhere, to have it happen again on the next boot, you need to edit the config file in /etc/rc.config.d/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 01:14 AM
11-30-2000 01:14 AM
Re: network settings ?
Have checked with our network guys and the switch is set to 100 full neg off
So will amend the settings using lanadmin to start with to see if response has improved
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 01:53 AM
11-30-2000 01:53 AM
Re: network settings ?
I have checked through all the hp*conf files and find no settings for any lans.In all the headers it states that to set the speed & duplex to use the lanadmin command which I have already done.Does this mean that lanadmin updates some config file ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 05:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 05:23 AM
11-30-2000 05:23 AM
Re: network settings ?
I think it is more related to the unix ftp client than to the network card.
I will try to check this, because I have an L box with the same card...
Antonio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 05:23 AM
11-30-2000 05:23 AM
Re: network settings ?
Thanks for your help - have made changes using the lanadmin command and all is now working ok.
Have read the notes on the pci 10/100 cards and found that I need to amend the hpbtlanconf file which I will now go off and do
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2000 06:37 AM
11-30-2000 06:37 AM
Re: network settings ?
It was not just ftp causing the problem but moving data across the network to a backup server was also very slow (which is the ultimate aim of what I am trying to do).Having done the changes to the lan config to match the switch the time to transfer the file has gone from 20 mins to 3.5 secs !!!.
Feel free to give me anymore assistance when you have had a chance to play on your server