- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Ethtool and not taking the 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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-24-2005 08:46 AM
тАО05-24-2005 08:46 AM
I am trying to set my eth0 interface to the following:
speed = 1000
duplex = full
autoneg = off
I run the command:
ethtool -s speed 1000 duplex full autoneg off
and it doesn't take it. Is there an error in there? Is there another way I can change the settings?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-24-2005 09:14 AM
тАО05-24-2005 09:14 AM
Re: Ethtool and not taking the settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-24-2005 10:46 AM
тАО05-24-2005 10:46 AM
Re: Ethtool and not taking the settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-24-2005 11:43 AM
тАО05-24-2005 11:43 AM
Re: Ethtool and not taking the settings
Most cards (but not all) drivers will accept settings such as this from 'ethtool', but others need to be set when the driver it's self initializes.
grep eth0 /etc/modules.conf
Should show what driver is being used for the moment, and 'modinfo
Generally to use this method, you add an:
options
To your '/etc/modules.conf', and every time the driver initializes (assuming 'insmod' isn't used directly), it sets those options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 02:48 AM
тАО05-25-2005 02:48 AM
Re: Ethtool and not taking the settings
Settings for eth0:
Supported ports: [ TP ]
Supported link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Half 1000baseT/Full
Advertised auto-negotiation: Yes
Speed: 100Mb/s
Duplex: Half
Port: Twisted Pair
PHYAD: 0
Transceiver: internal
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Link detected: yes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 03:08 AM
тАО05-25-2005 03:08 AM
Re: Ethtool and not taking the settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 03:21 AM
тАО05-25-2005 03:21 AM
Re: Ethtool and not taking the settings
alias eth0 bcm5700
alias eth1 bcm5700
alias scsi_hostadapter cciss
alias usb-controller ohci-hcd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 03:33 AM
тАО05-25-2005 03:33 AM
SolutionHere is a site from BrodCom that gives some details as to what you may need to do.
http://www1.jpn.hp.com/products/software/oe/linux/mainstream/bin/support/doc/option/nic/bcm5700/bcm5700-7.4.12b-1_ldistrib.txt
At this other site, I noticed and newer driver, just built May 11, 2005. (some 14 days ago)
http://www.broadcom.com/drivers/downloaddrivers.php
Lots of other posts to be found. From google I searched bcm5700 + linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 09:18 AM
тАО05-25-2005 09:18 AM
Re: Ethtool and not taking the settings
ethtool -s eth0 speed 100 duplex full autoneg off ... it worked...well, sort of. Still won't take "speed 1000" even though it is a gigabit card. This is the error:
Cannot set new settings: Invalid argument
not setting speed
not setting duplex
not setting autoneg
Guess I will look into this one too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2005 09:19 AM
тАО05-25-2005 09:19 AM
Re: Ethtool and not taking the settings
Thanks for all the help everybody.
Sally