LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
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 10-23-2007, 11:48 AM   #1
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Rep: Reputation: 46
multiple interfaces and bandwidth


Hi,
Is there a co-relation between the number of IP address listed and the bandwidth from a traceroute?

I have two servers and am doing a traceroute to each for oracle server port 1521 from a common source server.

The first server returns with 7 IP addresses listed, while the second one comes back with just the destination IP address.

However, throughput is far slower on the second server than the first. Could it be anything to do with the network at all?

Thanks.
 
Old 10-23-2007, 12:23 PM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
no, there is absolutely no correlation whatsoever. your problem could certainly be network related, but you'd need to actually pay attention to the traceroute output rather than just count the lines. how long does it take to reach the destination? is there a part of the network where the delay suddenly jumps up?
 
Old 10-23-2007, 12:31 PM   #3
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by acid_kewpie View Post
you'd need to actually pay attention to the traceroute output rather than just count the lines. how long does it take to reach the destination? is there a part of the network where the delay suddenly jumps up?
The first server, the one with the 7 hops has the following times (all in ms): 0.710, 1.259, 1.92, 2.374, 2.883, 3.292, 4.69

The second server, with just the one hop over has 0.256ms.

I tried an scp of a large file and the second server's definitely got more bandwidth - about 4x.
But the roles are reversed for the transfer on port 1521.
 
Old 10-23-2007, 12:37 PM   #4
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
right, well sure, there's more bandwidth potentially... makes sense. obviously you are routing over different network infrastructures so there's a million and one variables that could be relevant.

so are you actually saying this is a problem or is that the end of the query?
 
Old 10-23-2007, 12:44 PM   #5
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by acid_kewpie View Post
right, well sure, there's more bandwidth potentially... makes sense. obviously you are routing over different network infrastructures so there's a million and one variables that could be relevant.
so are you actually saying this is a problem or is that the end of the query?
You're right.
I'm actually clutching at straws here because I'm not sure where to begin diagnosing the problem (I'm neither the network admin, the sysadmin, ora dba ... just an innocent by-stander).

Thanks for the responses acid_kewpie.
 
Old 10-23-2007, 12:48 PM   #6
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
well *my* first call would be a tool like wireshark. capture traffic on the client and see how it is coming. if there are whomping great gaps between the requests and responses then it's probably server related, if the data flows are evenly spread out then that would suggest the network is at fault. that's a pretty crude approximation, but is a reasonable start.
 
Old 10-23-2007, 12:52 PM   #7
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Original Poster
Rep: Reputation: 46
Thanks, Chris.
That's what I would have done as well ... if I had the access or the resources.
 
Old 10-23-2007, 01:32 PM   #8
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Original Poster
Rep: Reputation: 46
Snooping around a bit more, I see the ipfilter package on the second server where the transfer is so slow; while it's not on the other one.
But I don't have the privileges to run ipfstat.

Is there a way to check whether some rule is running without ipfstat? netstat (i'm taking a look now)?

Yeah, it's a solaris.

Last edited by h/w; 10-23-2007 at 01:45 PM.
 
Old 10-23-2007, 02:43 PM   #9
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
well you can't query a remote ruleset on any system i'm familiar with, as that would naturally be a cripplingly huge flaw in the design. in line with my comments above i would look to see if there are interesting features in the traffic which could suggest an anomaly down the line. maybe extra retransmissions, maybe you're using a different port... failing back to a lesser protocol? total guess work here of course...
 
Old 10-23-2007, 03:42 PM   #10
h/w
Senior Member
 
Registered: Mar 2003
Location: New York, NY
Distribution: Debian Testing
Posts: 1,286

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by acid_kewpie View Post
well you can't query a remote ruleset on any system i'm familiar with, as that would naturally be a cripplingly huge flaw in the design. in line with my comments above i would look to see if there are interesting features in the traffic which could suggest an anomaly down the line. maybe extra retransmissions, maybe you're using a different port... failing back to a lesser protocol? total guess work here of course...
Yup, total guess work. Thanks for the suggestions!
 
  


Reply



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
Multiple interfaces in one VLAN Fund-A-Mental Linux - Networking 1 03-06-2007 07:44 AM
multiple ethernet for multiple bandwidth khairilthegreat Linux - Networking 6 01-31-2007 12:36 PM
Red Hat 7.3 and multiple gateways on multiple interfaces bluefmc Linux - Networking 2 11-19-2004 05:01 PM
IPTables and multiple interfaces MaverickApollo Linux - Networking 7 12-28-2003 04:19 PM
DHCPd for multiple interfaces Noerr Linux - Networking 2 02-07-2003 06:40 PM

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

All times are GMT -5. The time now is 10:09 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