Question

On Sunos netstat -in gives me below output.

Name  Mtu  Net/Dest      Address        Ipkts  Ierrs Opkts  Oerrs Collis Queue 
lo0   832 127.0.0.0     127.0.0.1      20026 0     20026 0     0      0     
nxge0 100 192.168.0.0  192.168.0.31 40957 0     465768 0     0      0

Is it possible to change the input/output values to volume i.e. in KB, etc. OR Please advise if there is any other way to find how much data (in Kb or Mb) transmitted from my NIC.

Was it helpful?

Solution

You can get these values on Solaris by using kstat.

eg:

kstat -c net -n nxge0 | grep bytes64

PS: There's nothing in /proc which isn't process related, unlike Linux.

OTHER TIPS

You can't get that info from netstat, but there's probably something in the /proc filesystem that will give the statistics.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top