Interface card using a lot of bandwith


 
Thread Tools Search this Thread
Operating Systems Solaris Interface card using a lot of bandwith
# 1  
Old 05-13-2012
Interface card using a lot of bandwith

I have system which is using a lot of bandwidth and this is not a big problem,
but how do you troubleshoot this issue?
How can I find out which connections are made for one interface card,
there are about 5 on this system and I can see how much traffic is going through one interface, but I need to drill down more.

Thx.
# 2  
Old 05-13-2012
The dtrace toolkit is your friend in such circumstances. Download the dtrace tookkit (DTK) and use one or more of the networking-related scripts such as:
Code:
tcpsnoop
tcptop
udpsnoop.d
connections

# 3  
Old 05-13-2012
thx, but the company has strict security policy and we can't install these tools, we need to use the standard OS tools


Quote:
Originally Posted by fpmurphy
The dtrace toolkit is your friend in such circumstances. Download the dtrace tookkit (DTK) and use one or more of the networking-related scripts such as:
Code:
tcpsnoop
tcptop
udpsnoop.d
connections

# 4  
Old 05-13-2012
Those tools are just DTrace scripts, which is standard OS tool. If you were fluent enough in DTrace you could write them yourself, but why do it, if it has already been done?

Last edited by bartus11; 05-13-2012 at 10:16 AM..
This User Gave Thanks to bartus11 For This Post:
# 5  
Old 05-13-2012
DTrace is part of the Solaris 10 distribution, you already have it. You may also have some other DTrace script to do what you want. look in /usr/demo/dtrace. google for brandan gregg, his site has some good information. You can certainly transcribe D code to your box without violating security - most of it has less than 20 lines of code anyway.
This User Gave Thanks to jim mcnamara For This Post:
# 6  
Old 05-14-2012
Have you tried:

dladm show-dev -s -i 1

That will tell you traffic per interface.. Other than that if you want to know which process is going through which interface then you can script that... shouldn't be that difficult.

1- Get the output from netstat -an|grep STABLISHED take the destination hostname column
2- run route get <ip> for each connection
3- get the interface for each route get and count.
4- Based on the port it uses you can determine which application is it. IF it is a well known port like 22 then that's it, if not you can use lsof as well.

And voila... you have your own statistic. Is quiet a bit of scripting but if you can't install external tools I think that's your only option.

Juan
This User Gave Thanks to juan.brein For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Looking for driver for SunSAI/P 3.0 (Serial Asynchronous Interface) card X2156A

I'm looking for driver for SunSAI/P 3.0 (Serial Asynchronous Interface) card X2156A for Solaris. It used to be on sun-solve, but I fail to find it on the Oracle site. Any help would be very appreciated! (1 Reply)
Discussion started by: Ira28
1 Replies

2. Red Hat

Interface card link goes down and recovers frequently

Hi Experts, I have an issue where the interface card went down for like four times in last one week in redhat linux server. Every time it goes down, it comes back. 2014 Oct 21 07:22:14 <hostname> kernel: nx_nic: NIC Link is down 2014 Oct 21 07:22:21 <hostname> kernel: nx_nic: NIC Link is... (3 Replies)
Discussion started by: dhanu1985
3 Replies

3. Red Hat

Regarding Network Interface Card

Dear All , While taking backups in one Linux Server , we find one alert came with regard to Network Interface Card. Pl find the below alert. Network Interface Card performance for NIC:eth1 has exceeded Major threshold. Bytes sent and received per second (Average)= 105540.303101... (6 Replies)
Discussion started by: jegaraman
6 Replies

4. IP Networking

OID for Bandwith and Throughput Measurement

Hey Guys, Does anybody know, which OID's of Net-SNMP is used to collect throughput and bandwith usage of machine?? I got these OID's ..iso.org.dod.internet.mgmt.mib-2.interfaces.ifTable.ifEntry.ifOutOctets ..1.3.6.1.2.1.2.2.1.16 ... (1 Reply)
Discussion started by: franzramadhan
1 Replies

5. Red Hat

Interface bandwith utilization in Mbps

Hi Experts, I want to plot graph for interface traffic of redhat machine. I am having hard time finding where to start. Any tools ? i found this php script which prints bytes send / received. but i need something which can give me value as mbps or kbps. If can can get output from some... (2 Replies)
Discussion started by: mtomar
2 Replies

6. SCO

Change SCO - GUI or Desktop interface to DOS based interface

Hi all I have installed a demo version of SCO OpenServer 5.0.2, I finally found it is Desktop Interface, I would like to know how to change its interface to dos based interface? If you have any ideas, please tell me then. Thank you (2 Replies)
Discussion started by: TinhNhi
2 Replies

7. Red Hat

How to configure network interface card in OEL.

Hi I have installed OEL 4 on my dell XPS laptop. But when i connect the LAN cable and try to acesss internet. it does not work. the led's in the port do not blink when i plug in the cable .do i need some drivers please suggest. Thanks Ankur (2 Replies)
Discussion started by: ankurk
2 Replies

8. UNIX for Dummies Questions & Answers

Multi Network card interface problem

My system info is show below:- #uname -a SunOS qfserver 5.8 Generic_117350-29 sun4u sparc SUNW,Sun-Blade-2500 and I have two network card as shown below:- #ifconfig -a lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1 inet 127.0.0.1 netmask ff000000 bge0:... (1 Reply)
Discussion started by: sarifudin
1 Replies

9. IP Networking

network bandwith for oracle

Hi, we should size our network (LAN and WAN) bandwidth regarding Oracle database and Oracle Applications that we will install. how to determine Bandwidth ? What is the relation between number of users, number of transactions and bandwidth ? Any Oracle documentation ? Please ? Many thanks. (0 Replies)
Discussion started by: big123456
0 Replies
Login or Register to Ask a Question