- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: locking down 100Mbit FDX on BCM5700 and bondin...
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
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
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
тАО06-17-2004 11:34 AM
тАО06-17-2004 11:34 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 11:47 AM
тАО06-17-2004 11:47 AM
Re: locking down 100Mbit FDX on BCM5700 and bonding
If yes, then yes. Put that exact line in your '/etc/modules.conf', and give it a restart.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 03:47 PM
тАО06-17-2004 03:47 PM
Re: locking down 100Mbit FDX on BCM5700 and bonding
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 04:14 PM
тАО06-17-2004 04:14 PM
Re: locking down 100Mbit FDX on BCM5700 and bonding
I don't have any documented options for the modules.conf file, I just looked at a couple of posts and surmised that the "options bcm5700 auto_speed=0 line_speed=100 full_duplex=1" settings would set it to 100Mbut Full Duplex with auto-negotiation off. Please correct me if I'm wrong.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 04:39 PM
тАО06-17-2004 04:39 PM
Re: locking down 100Mbit FDX on BCM5700 and bonding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-17-2004 05:59 PM
тАО06-17-2004 05:59 PM
Solutionthe command modinfo will give you information on the bcm5700 driver.
It show all parms, but it is not clear what values are accepted:
linux]# modinfo bcm5700
filename: /lib/modules/2.4.9-e.40smp/kernel/drivers/addon/bcm5700/bcm5700.o
description: "BCM5700 Driver"
author: "Michael Chan
license: "GPL"
parm: debug int
parm: line_speed int array (min = 1, max = 16)
parm: auto_speed int array (min = 1, max = 16)
parm: full_duplex int array (min = 1, max = 16)
parm: rx_flow_control int array (min = 1, max = 16)
parm: tx_flow_control int array (min = 1, max = 16)
parm: auto_flow_control int array (min = 1, max = 16)
parm: mtu int array (min = 1, max = 16)
...
...
The options you mention are correct.
By the way, did you see my question: http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=517376
(I am not working on that issue right now).
JP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2004 03:51 AM
тАО06-18-2004 03:51 AM
Re: locking down 100Mbit FDX on BCM5700 and bonding
My /etc/modules.conf looks like :
alias parport_lowlevel parport_pc
alias scsi_hostadapter cciss
alias eth0 bcm5700
alias eth1 bcm5700
options bcm5700 auto_speed=0 line_speed=100 full_duplex=1
alias usb-controller usb-ohci
alias char-major-237 off
alias bond0 bonding
options bond0 miimon=100 primary=eth0 mode=1
Any suggestions ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-18-2004 06:23 AM
тАО06-18-2004 06:23 AM
Re: locking down 100Mbit FDX on BCM5700 and bonding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2004 02:27 AM
тАО07-02-2004 02:27 AM
Re: locking down 100Mbit FDX on BCM5700 and bonding
The above mods also hold true for SLES 8.
Note that if you do _not_ include the "auto=speed=0" other speed/duplex setting (will/may) get ignored.
You can verify that your changes have taken place by looking at /proc/net/nicinfo/ethX.info (where X = interface in question) or by looking at the output of /var/log/messages when you pull and re-insert the module.
Lastly, it's a good idea to run "depmod -a" after editing modules.conf - some kernels (like those under SuSE) will check it against modules.dep and generate a nag if the dates are skewed.
YMMV
Don