如何检查ppp连接是否繁忙

时间:2013-10-23 20:01:05

标签: python linux debian ppp

要查看有关 ppp 连接的一些详细信息,可以运行以下命令:

$ ifconfig ppp
ppp0      Link encap:Point-to-Point Protocol  
          inet addr:197.108.58.82  P-t-P:10.64.64.64  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
          RX packets:479 errors:0 dropped:0 overruns:0 frame:0
          TX packets:479 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:3 
          RX bytes:68118 (68.1 KB)  TX bytes:32771 (32.7 KB)

为了检查是否有任何数据传输,可以重新运行该命令,同时注意 RX数据包 TX数据包以查看是否存在改变(也许有更好的方法吗?)。

无论如何,我可以用Python做同样的事情,但它很麻烦(使用子进程,然后解析输出),所以我想知道是否有更好的方法。我本来希望使用netifaces,但它提供了更多有限的信息:

$ python -c "import netifaces; print netifaces.ifaddresses('ppp0')"
{2: [{'peer': '10.64.64.64', 'netmask': '255.255.255.255', 'addr': '197.108.58.82'}]}

1 个答案:

答案 0 :(得分:2)

您可以在/proc中查找数据,如果这比调用ifconfig更容易。

def GetPacketCount(dev_name):
    '''Return (received_packets, transmitted_packets) for network device dev_name'''
    with open('/proc/net/dev') as fp:
        for line in fp:
            line = line.split()
            if line[0].startswith(dev_name):
                return int(line[2]), int(line[10])

if __name__ == '__main__':
    import sys
    print GetPacketCount(sys.argv[1])

参考:https://www.kernel.org/doc/Documentation/filesystems/proc.txt