- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: bcm5700 problem
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
08-27-2004 02:19 PM
08-27-2004 02:19 PM
bcm5700 problem
I try input options to modules.conf as below.
alias eth0 bcm5700
alias eth1 bcm5700
options bcm5700 auto_speed=0,0 line_speed=1000,1000 full_duplex=1,1
everyone, I just active eth1 on boot up, it work. but I try to active eth1. The results is...
eth0 is down and linespeed auto switch to 100mb
eth1 is active and linespeed is 1G
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2004 02:36 AM
08-28-2004 02:36 AM
Re: bcm5700 problem
As far as I know (but I'm not sure), speed cannot be forced to 1000 at the server. Gigabit speed must be auto-negotiated. You should leave the default options and check your gigabit switch.
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2004 04:32 PM
08-28-2004 04:32 PM
Re: bcm5700 problem
You can't force Gibabit speeds, it must be autonegotiate. To get that off that NIC, you need the right driver.
The only gigabit card or nic I have every gotten to work right with Linux is Intel.
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
08-28-2004 09:50 PM
08-28-2004 09:50 PM
Re: bcm5700 problem
Good luck.
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2004 01:44 PM
08-29-2004 01:44 PM
Re: bcm5700 problem
options bcm5700 auto_speed=1,1 line_speed=1000,1000 full_duplex=1,1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2004 07:37 PM
08-29-2004 07:37 PM
Re: bcm5700 problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2004 09:04 PM
09-27-2004 09:04 PM
Re: bcm5700 problem
I have two bcm5700 on dl380 machine which is onboard adapter. i force those by put lines in /etc/modules.conf just like below
alias eth0 bcm5700 line_speed=1000 auto_speed=0 full_duplex=1
note: that is one line, same thing for eth1
try to run this command
service network restart (enter)
then do check the adapter status by
dmesg | grep eth0
note: same thing for eth1
bytheway, i'm using redhat AS 2.1
hope it's usefull
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2004 01:28 PM
09-29-2004 01:28 PM
Re: bcm5700 problem
Thank you for your help.