Skip to main content

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

Project description

https://travis-ci.org/sebschrader/python-arpreq.svg?branch=master https://img.shields.io/pypi/v/arpreq?cacheSeconds=2592000&style=for-the-badge https://img.shields.io/pypi/pyversions/arpreq?cacheSeconds=2592000&style=for-the-badge https://img.shields.io/pypi/implementation/arpreq?cacheSeconds=2592000&style=for-the-badge https://img.shields.io/pypi/wheel/arpreq?cacheSeconds=2592000&style=for-the-badge https://img.shields.io/pypi/l/arpreq?cacheSeconds=2592000&style=for-the-badge

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

Usage

The arpreq module exposes two functions arpreq and arpreqb, that try to resolve a given IPv4 address into a MAC address by querying the ARP cache of the Kernel.

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

Please note, that no ARP request packet is sent out by this module, only the cache is queried. If the IP address hasn’t been communicated with recently, there may not be cache entry for it. You can refresh the cache, by trying to communicate with IP (e.g. by sending and ICMP Echo-Request aka ping) before probing the ARP cache.

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

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

If an 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'

Instead of a hexadecimal string representation, MAC addresses may also be returned as native bytes when using the arpreqb function:

>>> arpreq.arpreqb('127.0.0.1')
b'\x00\x00\x00\x00\x00\x00'
>>> arpreq.arpreqb('192.0.2.1')
b'\x00\x11"3DU'

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 and Linux. MacOS X does not work anymore, because Apple has removed the interface.

IPv6-Support and Alternatives

The SIOCGARP ioctl interface described in arp(7) and used by this module is a fairly old mechanism and as the name suggests, works only for ARP and therefore only for IPv4. For IPv6 the Linux Kernel uses the modern and extensible rtnetlink(7) interface based on netlink(7) to manage link-layer neighbor information.

Until Linux 5.0 however only whole tables could be dumped via rtnetlink(7) RTM_GETNEIGH messages and it was not possible to query for specific IP addresses. If entries need to be queried often or there are a lot of entries, this might be too inefficient. As an optimization querying the tables only once and subscribing to change events afterwards was possible, albeit more complicated. Since Linux 5.0 RTM_GETNEIGH messages can be used to query specific addresses on specific interfaces.

The pure-python netlink implementation pyroute2 can be used to access the rtnetlink(7) and other netlink(7) interfaces. Since version 0.5.14 specific addresses can be queried.

Changelog

v0.3.4 (2021-12-21)

  • Enable PEP-489 on PyPy3 5.8 and later

  • Improve testing

  • Move Debian packaging to separate branches

  • Add docker-compose infrastructure for different manylinux variants

  • Add arpreqb function, which returns the MAC as Python bytes object

  • Support 8-byte/64-bit MAC addresses

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

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.4.tar.gz (12.8 kB view hashes)

Uploaded Source

Built Distributions

arpreq-0.3.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (11.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp311-cp311-musllinux_1_1_x86_64.whl (32.2 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp311-cp311-musllinux_1_1_i686.whl (31.9 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

arpreq-0.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.5 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.9 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp310-cp310-musllinux_1_1_x86_64.whl (31.2 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp310-cp310-musllinux_1_1_i686.whl (30.8 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

arpreq-0.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.5 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.7 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp39-cp39-musllinux_1_1_x86_64.whl (30.9 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp39-cp39-musllinux_1_1_i686.whl (30.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

arpreq-0.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.2 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.4 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp38-cp38-musllinux_1_1_x86_64.whl (31.3 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp38-cp38-musllinux_1_1_i686.whl (30.9 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

arpreq-0.3.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.7 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp37-cp37m-musllinux_1_1_x86_64.whl (31.4 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp37-cp37m-musllinux_1_1_i686.whl (30.8 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

arpreq-0.3.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.3 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp36-cp36m-musllinux_1_1_x86_64.whl (30.5 kB view hashes)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

arpreq-0.3.4-cp36-cp36m-musllinux_1_1_i686.whl (29.9 kB view hashes)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

arpreq-0.3.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.1 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (27.3 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (25.6 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (25.0 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (23.6 kB view hashes)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (22.9 kB view hashes)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ i686

arpreq-0.3.4-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (23.6 kB view hashes)

Uploaded CPython 2.7m manylinux: glibc 2.5+ x86-64

arpreq-0.3.4-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (22.9 kB view hashes)

Uploaded CPython 2.7m manylinux: glibc 2.5+ i686

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