Eth0 Limitations

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Eth0 Limitations
# 8  
Old 05-16-2012
I appreciate your effort but you are incorrect, the driver and NIC compatibility is not the issue.

Code:
# lspci | grep -ieth
02:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
02:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
0c:04.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5715S Gigabit Ethernet (rev a3)
0c:04.1 Ethernet controller: Broadcom Corporation NetXtreme BCM5715S Gigabit Ethernet (rev a3)
0e:04.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5715S Gigabit Ethernet (rev a3)
0e:04.1 Ethernet controller: Broadcom Corporation NetXtreme BCM5715S Gigabit Ethernet (rev a3)
[root@lnprodapp02 ~]# ethtool -i eth0
driver: be2net
version: 4.0.100r
firmware-version: 3.102.517.701
bus-info: 0000:02:00.0

I use mostly iptraf & sar to check the network.

The cisco switch is 1Gb.

R,
D.
# 9  
Old 05-16-2012
I did not say the driver was incompatible, but rather you gave me erroneous information.

Sar is not going to give you throughput metrics, and neither will iptraf. You would need something like iperf or ttcp.

using a txqueuelen of 1000, and an MTU of 1500 will further limit you, but since you don't seem to know, or want to know what your actual throughput is, your latency, then I leave it up to you to keep tuning the app blindly.

You keep saying there are issues, but no information about where the numbers for the issues are. To put it into a bad car analogy:

Why do you care what the RPMs of the motor are if you have no idea how fast you are going?
# 10  
Old 05-17-2012
sar provides historical info on the total number of bytes recieved and transmitted per second, and iptraf gathers byte counts, and interface stats. This is needed to tace and compare the byte count at the time when the app crashed. Not sure if iperf provides historical data?

However, looks like a useful tool all the same. I gathered some output from the following command.

Can you explain then how I can obtain my max throughput info from this? - Don't want to drive my car too fast and break any speed limits in a restricted zone.

Code:
# iperf -c <host_ip> -d -p 8080
------------------------------------------------------------
Server listening on TCP port 8080
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
------------------------------------------------------------
Client connecting to <host_IP>, TCP port 8080
TCP window size: 49.3 KByte (default)
------------------------------------------------------------
[ 5] local <host_ip> port 40000 connected with <host_ip> port 8080
[ 4] local <host_ip> port 8080 connected with <host_ip> port 40000
[ ID] Interval Transfer Bandwidth
[ 5] 0.0-10.0 sec 18.3 GBytes 15.7 Gbits/sec
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-10.0 sec 18.3 GBytes 15.7 Gbits/sec




# 11  
Old 05-17-2012
Did you connect the client from the same machine?

That will not work if you do, because according to this, you are breaking physics.
# 12  
Old 05-18-2012
No in that case I am not in breach of breaking physics.
# 13  
Old 05-18-2012
The reason I ask is that you are taking a 1Gbit device to 15.7Gbit.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Limitations of 'pdftotext' in Linux...

Guys: I have a customer using the 'pdftotext' utility under Linux. PDFs are received via email, converted to text, etc. and it has worked nicely for years. They received a PDF from a customer and the utility will not read it. The text file is created but it's either empty or has 1-2 bytes of... (23 Replies)
Discussion started by: kenlenard
23 Replies

2. Solaris

Solaris limitations

Hi, I recently started working with Solaris, and what I noticed is that a lot of commands I used to regularly use don't work, like sed -i and grep -r. I have found work arounds for these problems though but it's a pain in the ass. I'm just wondering why they decided not to include these handy... (4 Replies)
Discussion started by: Subbeh
4 Replies

3. Shell Programming and Scripting

Limitations of tac/cat?

As part of a quiz assigned during my unix class I was asked to write a program to ask for a file name, print read errors, and "reverse elements in a list." I used the 'tac' command in my solution, however, I was then lectured for 5 min about the "limitations" of the 'tac' command and how a 'for'... (6 Replies)
Discussion started by: 127.0.0.1
6 Replies

4. Shell Programming and Scripting

perl limitations vs. bash?

I've building a bunch of bash scripts, and am thinking about "converting" to perl, and have a couple questions first: 1. Is there anything bash will do that perl won't? 2. How steep is the learning curve? 3. If perl's more powerful, why? 4. I've built a small app in python, which seemed nice,... (18 Replies)
Discussion started by: unclecameron
18 Replies

5. Red Hat

Limitations on the partition of linux

Hi, I need a documentation about limitations on the linux partition. On how many primary and extended I could create. And also on different type of storage, how many big capacity I can create. Thanks. (3 Replies)
Discussion started by: itik
3 Replies

6. UNIX and Linux Applications

gnuplot limitations

I'm running a simulation (programmed in C) which makes calls to gnuplot periodically to plot data I have stored. First I open a pipe to gnuplot and set it to multiplot: FILE * pipe = popen("gnuplot", "w"); fprintf(pipe, "set multiplot\n"); fflush(pipe); (this pipe stays open until the... (0 Replies)
Discussion started by: sedavidw
0 Replies

7. Solaris

Solaris 9 or 10 LUN Limitations

Is there a limit to the number of LUNS that can be concatenated using Solaris Volume manager with Soft partitions? I have worked with some AIX admins in the past and there was such a limitation therefore limiting the size the filesystem could grow to. Is there such a limitation in Solaris 9... (6 Replies)
Discussion started by: BG_JrAdmin
6 Replies

8. UNIX for Dummies Questions & Answers

Password limitations.

I would like to set my minimum password length to on Linux and AIX. However, doing this normally would only make it so newly added users will be affected by this. I would like for when I make this change, it either truncates everyone elses password, or prompts them to change it to 8+ characters.... (2 Replies)
Discussion started by: syndex
2 Replies

9. UNIX for Dummies Questions & Answers

csplit limitations

I am trying to use the csplit file on a file that contains records that have more than 2048 characters on a line. The resultant split file seems to ignore the rest of the line and I lose the data. Is there any way that csplit can handle record lengths greater than 2048? Thanks (0 Replies)
Discussion started by: ravagga
0 Replies

10. UNIX for Dummies Questions & Answers

mkdir limitations

What characters can't be used with a mkdir? Any limits on length of name? Thank you, Randy M. Zeitman http://www.StoneRoseDesign.com (12 Replies)
Discussion started by: flignar
12 Replies
Login or Register to Ask a Question