- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- full/half duplex ?
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
04-25-2001 08:53 AM
04-25-2001 08:53 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2001 09:01 AM
04-25-2001 09:01 AM
Re: full/half duplex ?
# lanadmin -x
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2001 09:01 AM
04-25-2001 09:01 AM
SolutionFrom a C200 workstation:
Description = lan0 Hewlett-Packard 10/100 TX Half-Duplex
From a J5000 workstation:
Description = lan0 Hewlett-Packard 10/100 TX Full-Duplex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2001 09:10 AM
04-25-2001 09:10 AM
Re: full/half duplex ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2001 09:19 AM
04-25-2001 09:19 AM
Re: full/half duplex ?
HP_BASE100_SPEED[0]=100FD --> which means 100 Full Duplex
or if it is like my K460 then the line may just specify the duplex like:
HP_BASET_DUPLEX[0]=FULL
It should be something similar to one of those.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2001 11:13 AM
04-25-2001 11:13 AM
Re: full/half duplex ?
As you've already discovered lanadmin -x
(11.X) or
them permanently in the configuration scripts
in /etc/rc.config.d. One problem people sometimes have is figuring out which is the correct script. You L class system supports
three different versions of 100bt cards with
3 different scripts.
Use ioscan(1m) to find out which you have;
"ioscan -fnkC lan" will list all lan cards.
Look at the "driver" column to determine the
correct script;
driver script
btlan hpbtlanconf
btlan3 hpbase100conf
btlan5 hppci100conf
Remember that these only take effect when
you boot the system so if you want to set
them immediately without a reboot you use
lanadmin(1m), for instance
lanadmin -X 100fd 0
will set lan0 to 100mb/s full duplex on an
11.00 system.
Getting back to the scripts for a minute, as
Patrick pointed out you could see a line with
either "SPEED" or "DUPLEX". Hopefully you'll
see "SPEED", if not that means you have no
driver patch, an old driver patch, or have
patched but have not moved the updated configuration script from;
/usr/newconfig/etc/rc.config.d
to
/etc/rc.config.d
Hope this helps.