There is a socket method for getting the IP of a given network interface:

import socket
import fcntl
import struct

def get_ip_address(ifname):
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
    return socket.inet_ntoa(fcntl.ioctl(
        s.fileno(),
        0x8915,  # SIOCGIFADDR
        struct.pack('256s', ifname[:15])
    )[20:24])

Which returns the following:

>>> get_ip_address('lo')
'127.0.0.1'

>>> get_ip_address('eth0')
'38.113.228.130'

Is there a similar method to return the network transfer of that interface? I know I can read /proc/net/dev but I'd love a socket method.

link|improve this question

1  
'network transfer'? Byte counts? network protocol? Wiring type? – Marc B Oct 11 '11 at 19:30
1  
A socket != network interface. If you mean that you want TX/RX bytes/packets, that's at the link level. You should be able get the info from the kernel via a NETLINK socket (which is how the ip command works), but it would be much easier to simply parse /proc/net/dev and get the same information. – JimB Oct 11 '11 at 20:55
feedback

1 Answer

up vote 4 down vote accepted

The best way to poll ethernet interface statistics is through SNMP...

  • It looks like you're using linux... if so, load up your snmpd with these options... after installing snmpd, in your /etc/defaults/snmpd (make sure the line with SNMPDOPTS looks like this):

    SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -I -smux,usmConf,iquery,dlmod,diskio,lmSensors,hr_network,snmpEngine,system_mib,at,interface,ifTable,ipAddressTable,ifXTable,ip,cpu,tcpTable,udpTable,ipSystemStatsTable,ip,snmp_mib,tcp,icmp,udp,proc,memory,snmpNotifyTable,inetNetToMediaTable,ipSystemStatsTable,disk -Lsd -p /var/run/snmpd.pid'

  • You might also need to change the ro community to public See Note 1 and set your listening interfaces in /etc/snmp/snmpd.conf (if not on the loopback)...

  • Now install easy_install -U pysnmp and easy_install -U pysnmp-mibs

  • Assuming you have a functional snmpd, at this point, you can poll ifHCInBytes and ifHCOutBytes See Note 2 for your interface(s) in question using this...

poll_bytes.py:

# See SNMP.py, below
from SNMP import v2c
import time

def poll_eth0(manager=None):
    in_bytes = manager.get_index('ifHCInOctets', 'eth0').value
    out_bytes = manager.get_index('ifHCOutOctets', 'eth0').value
    return (time.time(), int(in_bytes), int(out_bytes))

# Prep an SNMP manager object...
mgr = v2c('localhost')
mgr.index('ifName')
stats = list()
# Insert condition below, instead of True...
while True:
    stats.append(poll_eth0(mgr))
    print poll_eth0(mgr)
    time.sleep(5)
# Do something here with stats...

SNMP.py:

import re
import string
from pysnmp.smi import builder, view, error
from pysnmp.entity.rfc3413.oneliner import cmdgen
from collections import namedtuple as NT

# NOTE!!!
# It is best to install the pysnmp-mibs package from pypi... this makes
# a lot of symbolic MIB names "just work"


# Full SNMP support is incomplete... See this link below for many oneliner examples...
# http://pysnmp.sourceforge.net/examples/4.x/v3arch/oneliner/index.html

class v2c(object):
    """Build an SNMPv2c manager object"""
    def __init__(self, ipaddr=None, community='public', retries=3, timeout=9):
        self.ipaddr = ipaddr
        self.community = community
        self.SNMPObject = NT('SNMPObject', ['modName', 'symName', 'index', 
            'value'])
        self.SNMPIndexed = NT('SNMPIndexed', ['modName', 'symName', 'index', 
            'value'])
        self.query_timeout = float(timeout)/int(retries)
        self.query_retries = int(retries)
        self._index = None

        self.cmdGen = cmdgen.CommandGenerator()
        #mibBuilder = builder.MibBuilder()
        #mibPath = mibBuilder.getMibPath()+('/opt/python/Models/Network/MIBs',)
        #mibBuilder.setMibPath(*mibPath)
        #mibBuilder.loadModules(
        #    'RFC-1213',
        #    )
        #mibView = view.MibViewController(mibBuilder)

    def index(self, oid=None):
        """Build an index to get or walk from.  First v2c.index('ifName').  Then, v2c.get_index('ifHCInOctets', 'eth0') or v2c.walk_index('ifHCInOctets')"""
        self._index = dict()
        snmpidx = self.walk(oid=oid)
        for ii in snmpidx:
            self._index[ii.index] = ii.value


    def get_index(self, oid=None, index=None):
        """Example usage, first index with v2c.index('ifName'), then v2c.get_index('ifHCInOctets', 'eth0')"""
        if not (self._index is None):
            tmp = list()
            for idx, value in self._index.items():
                if index == value:
                    snmpvals = self.get(oid=oid, index=idx)
            for idx, ii in enumerate(snmpvals):
                tmp.append([ii.modName, ii.symName, self._index[ii.index], ii.value])

            return map(self.SNMPIndexed._make, tmp)[0]
        else:
            raise ValueError, "Must populate with SNMP.v2c.index() first"

    def get(self, oid=None, index=None):
        if isinstance(self._format(oid), tuple):
            errorIndication, errorStatus, errorIndex, \
            varBindTable = cmdgen.CommandGenerator().getCmd(  
                        cmdgen.CommunityData('test-agent', self.community),  
                        cmdgen.UdpTransportTarget((self.ipaddr, 161),
                        retries=self.query_retries,
                        timeout=self.query_timeout),  
                        self._format(oid),
                    )
            # Parsing only for now... no return value...
            self._parse(errorIndication, errorStatus, errorIndex, varBindTable)
        elif isinstance(oid, str) and isinstance(index, int):
            errorIndication, errorStatus, errorIndex, \
                             varBindTable = self.cmdGen.getCmd(
                # SNMP v2
                cmdgen.CommunityData('test-agent', self.community),
                # Transport
                cmdgen.UdpTransportTarget((self.ipaddr, 161)),
                (('', oid), index),
                )
            return self._parse_resolve(errorIndication, errorStatus, 
            errorIndex, [varBindTable])
        else:
            raise ValueError, "Unknown oid format: %s" % oid

    def walk_index(self, oid=None):
        """Example usage, First index with v2c.index('ifName'), then v2c.walk_index('ifHCInOctets')"""
        if not (self._index is None):
            tmp = list()
            snmpvals = self.walk(oid=oid)
            for idx, ii in enumerate(snmpvals):
                tmp.append([ii.modName, ii.symName, self._index[ii.index], ii.value])
            return map(self.SNMPIndexed._make, tmp)
        else:
            raise ValueError, "Must populate with SNMP.v2c.index() first"

    def walk(self, oid=None):
        if isinstance(self._format(oid), tuple):
            errorIndication, errorStatus, errorIndex, \
            varBindTable = cmdgen.CommandGenerator().nextCmd(  
                        cmdgen.CommunityData('test-agent', self.community),  
                        cmdgen.UdpTransportTarget((self.ipaddr, 161),
                        retries=self.query_retries,
                        timeout=self.query_timeout),  
                        self._format(oid),
                    )
            # Parsing only for now... no return value...
            self._parse(errorIndication, errorStatus, errorIndex, varBindTable)
        elif isinstance(oid, str):
            errorIndication, errorStatus, errorIndex, \
                             varBindTable = self.cmdGen.nextCmd(
                # SNMP v2
                cmdgen.CommunityData('test-agent', self.community),
                # Transport
                cmdgen.UdpTransportTarget((self.ipaddr, 161)),
                (('', oid),),
                )
            return self._parse_resolve(errorIndication, errorStatus, 
                errorIndex, varBindTable)
        else:
            raise ValueError, "Unknown oid format: %s" % oid

    def bulkwalk(self, oid=None):
        """SNMP bulkwalk a device.  NOTE: This often is faster, but does not work as well as a simple SNMP walk"""
        if isinstance(self._format(oid), tuple):
            errorIndication, errorStatus, errorIndex, varBindTable = cmdgen.CommandGenerator().bulkCmd(  
                        cmdgen.CommunityData('test-agent', self.community),  
                        cmdgen.UdpTransportTarget((self.ipaddr, 161),  
                        retries=self.query_retries,
                        timeout=self.query_timeout), 
                0,
                25,
                self._format(oid),
                )
            return self._parse(errorIndication, errorStatus, 
                errorIndex, varBindTable)
        elif isinstance(oid, str):
            errorIndication, errorStatus, errorIndex, varBindTable = cmdgen.CommandGenerator().bulkCmd(  
                        cmdgen.CommunityData('test-agent', self.community),  
                        cmdgen.UdpTransportTarget((self.ipaddr, 161),  
                        retries=self.query_retries,
                        timeout=self.query_timeout), 
                0,
                25,
                (('', oid),),
                )
            return self._parse_resolve(errorIndication, errorStatus, 
                errorIndex, varBindTable)
        else:
            raise ValueError, "Unknown oid format: %s" % oid

    def _parse_resolve(self, errorIndication=None, errorStatus=None, 
        errorIndex=None, varBindTable=None):
        """Parse MIB walks and resolve into MIB names"""
        retval = list()
        if errorIndication:
            print errorIndication
        else:
            if errorStatus:
                print '%s at %s\n' % (
                    errorStatus.prettyPrint(),
                    varBindTable[-1][int(errorIndex)-1]
                    )
            else:
                for varBindTableRow in varBindTable:
                    for oid, val in varBindTableRow:
                        (symName, modName), indices = cmdgen.mibvar.oidToMibName(
                            self.cmdGen.mibViewController, oid
                            )
                        val = cmdgen.mibvar.cloneFromMibValue(
                            self.cmdGen.mibViewController, modName, symName, 
                            val)
                        index = int(string.join(map(lambda v: v.prettyPrint(), 
                            indices), '.'))
                        value = val.prettyPrint()
                        retval.append(self.SNMPObject._make([modName, symName, 
                            index, value]))
            return retval

    def _parse(self, errorIndication, errorStatus, errorIndex, 
        varBindTable):
        if errorIndication:
           print errorIndication
        else:
            if errorStatus:
                print '%s at %s\n' % (
                    errorStatus.prettyPrint(),
                    errorIndex and varBindTable[-1][int(errorIndex)-1] or '?'
                    )
            else:
                for varBindTableRow in varBindTable:
                    for name, val in varBindTableRow:
                        print '%s = %s' % (name.prettyPrint(), val.prettyPrint())

    def _format(self, oid):
        """Format a numerical OID in the form of 1.3.4.1.2.1 into a tuple"""
        if re.search('(\d+\.)+\d+', oid):
            tmp = list()
            for ii in oid.split('.'):
                tmp.append(int(ii))
            return tuple(tmp)

END NOTES:

  1. SNMP v2c uses clear-text authentication. If you are worried about security / someone sniffing your traffic, change your community and restrict queries to your linux machine by source ip address. The perfect world would be to modify the SNMP.py above to use SNMPv3 (which encrypts sensitive data); most people just use a non-public community and restrict snmp queries by source IP.

  2. ifHCInOctets and ifHCOutOctets provide instantaneous values for the number of bytes transferred through the interface. If you are looking for data transfer rate, of course there will be some additional math involved.

link|improve this answer
Incidentally, once you have snmpd running on your server, you can leverage the all the power of cacti and nagios in your server management endeavors – Mike Pennington Oct 17 '11 at 13:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.