- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: network card speed/mode 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
01-04-2001 02:35 AM
01-04-2001 02:35 AM
can anyone tell me how to find out which speed and which mode (10 HD / 100 FD) the network card is using and how to set e.g. the card fix to 100 FD ?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2001 05:44 AM
01-04-2001 05:44 AM
Re: network card speed/mode settings
One question : Which chipset on the lan interface ?
For certain chipsets there maybe some tools.
In general :
Try to transfer data from another computer with
the midnight commander. That will show you the
data transfer rate. If the rate is larger 1.25 MB, the speed is 100 MBit.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2001 08:24 AM
01-08-2001 08:24 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2001 02:12 PM
01-08-2001 02:12 PM
Re: network card speed/mode settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 03:36 AM
01-10-2001 03:36 AM
Re: network card speed/mode settings
alias eth0 eepro100
options eepro100 options=0x30
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 11:32 AM
01-10-2001 11:32 AM
Re: network card speed/mode settings
#lanadmin
then -> lan -> display
My output looks like this:
PPA Number = 0
Description = lan0 Hewlett-Packard 10/100 TX Half-Duplex TT = 1500
Type (value) = ethernet-csmacd(6)
MTU Size = 1500
Speed = 100000000
Station Address = 0x108327e7b5
Administration Status (value) = up(1)
Operation Status (value) = down(2)
Last Change = 1647
Inbound Octets = 0
Inbound Unicast Packets = 0
Inbound Non-Unicast Packets = 0
Inbound Discards = 0
Inbound Errors = 0
Inbound Unknown Protocols = 0
Outbound Octets = 410
Outbound Unicast Packets = 10
Outbound Non-Unicast Packets = 0
Outbound Discards = 0
Outbound Errors = 0
Outbound Queue Length = 0
Specific = 655367
Ovidiu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 11:44 AM
01-10-2001 11:44 AM
Re: network card speed/mode settings
.....
At least you know how to find this info on HP-UX systems :-)
Ovidiu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2001 08:58 AM
02-02-2001 08:58 AM
Re: network card speed/mode settings
If so the simple way of doing this will be, Go to
/etc/rc.config.d/hpbase100conf .
You can hard code the value as 10HD or 100FD etc...
vi this file and within this file you should be able to set the speed and duplex mode as you wish provided that the card is smart enough to detect that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2001 10:56 PM
08-21-2001 10:56 PM
Re: network card speed/mode settings
well this answer may well be far too late, for the original question in Jan/Feb. Hopefully will be useful for oter though.
Assuming we are using the eepro100 driver you need to make the following entries in /etc/modules.conf
alias eth0 eepro100
options eepro100 options=0x30
The various options are:
Hex Decimal Meaning
0x10 16 Force Full-Duplex operation (must be used with 0x20 or 0x40)
0x20 32 Force 100mbps-only operation
0x30 48 Force 100mbps-only with Full Duplex
0x40 64 Force 10mbps-only
0x50 80 Force 10mpps-only with Full Duplex
It is possible to give options for more than one LAN card by comma separeting the options.
How to find out current speed:
linux1:~ # mii-diag eth1
Basic registers of MII PHY #1: 2100 780d 02a8 0154 05e1 0081 0000 0000.
Basic mode control register 0x2100: Auto-negotiation disabled, with
Speed fixed at 100 mbps, full-duplex.
You have link beat, and everything is working OK.
Your link partner is generating 100baseTx link beat (no autonegotiation).
Here you need to have installed the mii-diag of course :)
All this worked fine for me on SuSE 7.0.
Hope this helps.
Lee