Python根据IP地址获取MAC地址

Posted 皓月盈江

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python根据IP地址获取MAC地址相关的知识,希望对你有一定的参考价值。

Python3根据IP地址获取MAC地址(不能获取本机IP,可以获取与本机同局域网设备IP的MAC)

main.py

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import platform
import re


class IP2MAC:
    """
    Python3根据IP地址获取MAC地址(不能获取本机IP,可以获取与本机同局域网设备IP的MAC)
    """
    def __init__(self):
        self.patt_mac = re.compile('([a-f0-9]{2}[-:]){5}[a-f0-9]{2}', re.I)

    def getMac(self, ip):
        sysstr = platform.system()

        if sysstr == 'Windows':
            macaddr = self.__forWin(ip)
        elif sysstr == 'Linux':
            macaddr = self.__forLinux(ip)
        else:
            macaddr = None

        return macaddr or '00-00-00-00-00-00'

    def __forWin(self, ip):
        os.popen('ping -n 1 -w 500 {} > nul'.format(ip))
        macaddr = os.popen('arp -a {}'.format(ip))
        macaddr = self.patt_mac.search(macaddr.read())

        if macaddr:
            macaddr = macaddr.group()
        else:
            macaddr = None

        return macaddr

    def __forLinux(self, ip):
        os.popen('ping -nq -c 1 -W 500 {} > /dev/null'.format(ip))

        result = os.popen('arp -an {}'.format(ip))

        result = self.patt_mac.search(result.read())

        return result.group() if result else None


if __name__ == '__main__':
    g = IP2MAC()

    print(g.getMac('192.168.2.105'))

关注公众号,获取更多资料

以上是关于Python根据IP地址获取MAC地址的主要内容,如果未能解决你的问题,请参考以下文章

python 实现获取电脑IP主机名Mac地址

使用python从MAC获取IP地址

android获取Mac地址和IP地址

跨网段获取MAC地址

如何在 PHP 中获取已连接客户端的 MAC 和 IP 地址?

Python通过snmp获取交换机VLAN号VLAN默认网关VLAN子网掩码和ARP表中的IP地址与MAC对应记录数据