Skip to main content

Query the Kernel ARP cache for the MAC address corresponding to IP address

Project description

https://travis-ci.org/sebschrader/python-arpreq.svg?branch=master https://img.shields.io/pypi/v/arpreq.svg?maxAge=2592000 https://img.shields.io/pypi/pyversions/arpreq.svg?maxAge=2592000 https://img.shields.io/pypi/implementation/arpreq.svg?maxAge=2592000 https://img.shields.io/pypi/wheel/arpreq.svg?maxAge=2592000 https://img.shields.io/pypi/l/arpreq.svg?maxAge=2592000

Python C extension to query the Kernel ARP cache for the MAC address of a given IP address.

Usage

The arpreq module exposes a single function arpreq, that will resolve a given IPv4 address into a MAC address.

An IP address can only be resolved to a MAC address if it is on the same subnet as your machine.

Let’s assume your current machine has the address 192.168.1.10 and another machine with the address 192.168.1.1 is on the same subnet:

>>> import arpreq
>>> arpreq.arpreq('192.168.1.1')
'00:11:22:33:44:55'

If a IP address can not be resolved to an MAC address, None is returned.

>>> arpreq.arpreq('8.8.8.8') is None
True

IP addresses may be also be specified as int or rich IP address data type of the common ipaddr, ipaddress, or netaddr modules.

>>> arpreq.arpreq(0x7F000001)
'00:00:00:00:00:00'
>>> import netaddr
>>> arpreq.arpreq(netaddr.IPAddress('127.0.0.1'))
'00:00:00:00:00:00'
>>> import ipaddr # on Python 2
>>> arpreq.arpreq(ipaddr.IPv4Address('127.0.0.1'))
'00:00:00:00:00:00'
>>> import ipaddress
>>> arpreq.arpreq(ipaddress.IPv4Address(u'127.0.0.1'))
'00:00:00:00:00:00'

Supported Platforms

This extension has only been tested on Linux, it should however work on any platform that supports the SIOCGARP ioctl, which is virtually every BSD, Linux and Mac OS.

Changelog

v0.3.3 (2017-05-03)

  • Disable PEP-489 on PyPy3

  • Disable PyModule_GetState on PyPy3

  • Provide a Debian package

v0.3.2 (2017-05-03)

  • Support point-to-point veth pairs (See #6)

  • Accept unicode objects on Python 2 and bytes objects on Python 3 (See #5)

  • Some test improvements

v0.3.1 (2016-07-06)

  • Don’t use private _PyErr_ChainExceptions (breaks on Debian Jessie)

v0.3.0 (2016-06-26)

  • Use PEP 489 multi-phase extension module initialization on Python 3.5+

  • Close socket if module initialization failed

  • Code cleanup

v0.2.1 (2016-06-26)

  • Fix memset overflow

v0.2.0 (2016-06-09)

  • Provide Python wheels

  • Support int and rich IP address objects as IP address arguments

  • Release the GIL during arpreq

  • Add units tests

  • Rework MAC string creation

  • Restructure module initialization

v0.1.0 (2015-11-28)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arpreq-0.3.3.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distributions

arpreq-0.3.3-cp36-cp36m-manylinux1_x86_64.whl (22.5 kB view hashes)

Uploaded CPython 3.6m

arpreq-0.3.3-cp36-cp36m-manylinux1_i686.whl (21.9 kB view hashes)

Uploaded CPython 3.6m

arpreq-0.3.3-cp35-cp35m-manylinux1_x86_64.whl (22.3 kB view hashes)

Uploaded CPython 3.5m

arpreq-0.3.3-cp35-cp35m-manylinux1_i686.whl (21.7 kB view hashes)

Uploaded CPython 3.5m

arpreq-0.3.3-cp34-cp34m-manylinux1_x86_64.whl (22.2 kB view hashes)

Uploaded CPython 3.4m

arpreq-0.3.3-cp34-cp34m-manylinux1_i686.whl (21.6 kB view hashes)

Uploaded CPython 3.4m

arpreq-0.3.3-cp33-cp33m-manylinux1_x86_64.whl (21.7 kB view hashes)

Uploaded CPython 3.3m

arpreq-0.3.3-cp33-cp33m-manylinux1_i686.whl (21.0 kB view hashes)

Uploaded CPython 3.3m

arpreq-0.3.3-cp27-cp27mu-manylinux1_x86_64.whl (20.3 kB view hashes)

Uploaded CPython 2.7mu

arpreq-0.3.3-cp27-cp27mu-manylinux1_i686.whl (19.8 kB view hashes)

Uploaded CPython 2.7mu

arpreq-0.3.3-cp27-cp27m-manylinux1_x86_64.whl (20.4 kB view hashes)

Uploaded CPython 2.7m

arpreq-0.3.3-cp27-cp27m-manylinux1_i686.whl (19.8 kB view hashes)

Uploaded CPython 2.7m

arpreq-0.3.3-cp26-cp26mu-manylinux1_x86_64.whl (20.3 kB view hashes)

Uploaded CPython 2.6mu

arpreq-0.3.3-cp26-cp26mu-manylinux1_i686.whl (19.7 kB view hashes)

Uploaded CPython 2.6mu

arpreq-0.3.3-cp26-cp26m-manylinux1_x86_64.whl (20.3 kB view hashes)

Uploaded CPython 2.6m

arpreq-0.3.3-cp26-cp26m-manylinux1_i686.whl (19.7 kB view hashes)

Uploaded CPython 2.6m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page