LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 12-09-2013, 01:13 AM   #1
basheerpt
LQ Newbie
 
Registered: Aug 2009
Posts: 7

Rep: Reputation: 0
Question 10giga network speed


Hi,
Recently added a Broadcom 5711 dual port 10G NIC to my Redhat 5.3 server. The network is connected, but the ethtool shows the below information. The 'Supported Mode' says : 1000T/Full. What does it mean? I cannot get the 10G speed? How do i make sure i am getting the full 10G network speed? here is the ethtool eth1:
=================
Supported ports: [FIBRE]
Supported link modes: 1000BaseT/Full
Supports auto-negotiation: Yes
Advertised Link modes: 10000baseT/Full
Advertised auto-negotiation: No
Speed: 10000Mb/s
Duplex: Full
Port: FIBRE
PHYAD: 16
Transceiver: internal
Autonegotiation: Off
Supports wake-on: d
Wake-on: d
Current message level: 0x00000000 (0)
Link Detected: yes
==================================
 
Old 12-09-2013, 06:51 AM   #2
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,914
Blog Entries: 13

Rep: Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948
Quote:
Originally Posted by basheerpt View Post
Speed: 10000Mb/s
That is 10G

100M is one hundred Megs
1,000M is one Gig
10,000M is ten Gigs
 
Old 12-10-2013, 12:28 AM   #3
basheerpt
LQ Newbie
 
Registered: Aug 2009
Posts: 7

Original Poster
Rep: Reputation: 0
Thanks for your post.
My concern is, why it is showing supported link modes "Supported link modes: 1000BaseT/Full" (shown in RED in original post)?
Does it mean it may not support more that 1 Giga?

Thanks again
 
Old 12-10-2013, 10:20 AM   #4
vishesh
Member
 
Registered: Feb 2008
Distribution: Fedora,RHEL,Ubuntu
Posts: 661

Rep: Reputation: 66
Yes, Driver supporting Max 1G here.
 
Old 12-11-2013, 01:18 AM   #5
basheerpt
LQ Newbie
 
Registered: Aug 2009
Posts: 7

Original Poster
Rep: Reputation: 0
Is there any tweak to utilize the full advertised speed of 10G?
 
Old 12-11-2013, 11:28 AM   #6
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Does your entire infrastructure support 10G? Plugging a 10G network card into a 1G router/switch with 1G network cables will still limit you to 1G.
 
Old 12-12-2013, 08:15 AM   #7
basheerpt
LQ Newbie
 
Registered: Aug 2009
Posts: 7

Original Poster
Rep: Reputation: 0
Yes, this card is connected to a 10G force10 switch.
 
Old 12-12-2013, 08:35 AM   #8
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,914
Blog Entries: 13

Rep: Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948
Quote:
Originally Posted by basheerpt View Post
Thanks for your post.
My concern is, why it is showing supported link modes "Supported link modes: 1000BaseT/Full" (shown in RED in original post)?
Does it mean it may not support more that 1 Giga?

Thanks again
I've always understood that when ethtool shows Speed, that it is the speed at which it is operating.

This link suggests to check your system log, which sounds to be a great idea.

How to check network speed.

For instance, here's a clip out of mine, pretty definitive showing exactly what speed it is operating at:
Code:
dmesg | grep -i duplex | more
[2435549.872417] e1000: eth1 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX/TX
Something else, whether it be workstation, or server; the point brought up by suicidaleggroll about the network is important. There's no real benefit if you are going 10G if the network infrastructure does not support that.
 
Old 12-12-2013, 08:37 AM   #9
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,914
Blog Entries: 13

Rep: Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948Reputation: 4948
To add further to my last, when I run ethtool, my NIC capabilities state that it can do 1G, however my Speed is 100M.

Code:
sudo ethtool eth0
Settings for eth0:
	Supported ports: [ TP MII ]
	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 pause frame use: No
	Advertised auto-negotiation: Yes
	Link partner advertised link modes:  10baseT/Half 10baseT/Full 
	                                     100baseT/Half 100baseT/Full 
	Link partner advertised pause frame use: No
	Link partner advertised auto-negotiation: Yes
	Speed: 100Mb/s
	Duplex: Full
	Port: MII
	PHYAD: 0
	Transceiver: internal
	Auto-negotiation: on
	Supports Wake-on: pumbg
	Wake-on: g
	Current message level: 0x00000033 (51)
	Link detected: yes
 
Old 12-12-2013, 06:14 PM   #10
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,177

Rep: Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645Reputation: 3645
Speed: 10000Mb/s
Duplex: Full
Port: FIBRE

I'd assume it is in 10G mode.


Try to move some data to prove it. You'd need one heck of a system to feed that much data for a proper test by the way.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
network speed Phoebe Linux - Networking 12 03-12-2008 12:55 PM
Network speed problems on 15 user network to broadband wireless router AntWarrior Linux - Wireless Networking 2 12-02-2004 12:05 PM
Is there a tool to monitor Internet connection speed and also network speed? xleft4dexy Linux - Networking 4 10-14-2003 11:29 PM
Network speed penguinview Linux - Networking 6 04-28-2003 09:57 PM
network speed juanb Linux - Networking 9 12-11-2002 01:09 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 08:55 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration