Skip to main content

Get MAC addresses of remote hosts and local interfaces

Project description

Latest version on PyPI Travis CI build status Appveyor build status

Get the MAC address of remote hosts or network interfaces using Python.

It provides a platform-independant interface to get the MAC addresses of:

  • System network interfaces (by interface name)
  • Remote hosts on the local network (by IPv4/IPv6 address or hostname)

It provides one function: get_mac_address()

Features

  • Pure-Python
  • Supports Python 2.6+, 3.4+, pypy, and pypy3
  • No dependencies
  • Small size
  • Can be used as an independant .py file
  • Simple terminal tool (when installed as a package)

Usage

Python examples

from getmac import get_mac_address
eth_mac = get_mac_address(interface="eth0")
win_mac = get_mac_address(interface="Ethernet 3")
ip_mac = get_mac_address(ip="192.168.0.1")
ip6_mac = get_mac_address(ip6="::1")
host_mac = get_mac_address(hostname="localhost")
updated_mac = get_mac_address(ip="10.0.0.1", network_request=True)

Terminal examples

get-mac --help
get-mac --version

# No arguments will return MAC of the default interface.
get-mac
python -m getmac

# Interface names, IPv4/IPv6 addresses, or Hostnames can be specified
get-mac --interface ens33
get-mac --ip 192.168.0.1
get-mac --ip6 ::1
get-mac --hostname home.router

# Running as a Python module with shorthands for the arguments
python -m getmac -i 'Ethernet 4'
python -m getmac -4 192.168.0.1
python -m getmac -6 ::1
python -m getmac -n home.router

# Getting the MAC address of a remote host obviously requires
# the ARP table to be populated. By default, get-mac will do
# this for you by sending a small UDP packet to a high port (55555)
# If you don't want this to happen, you can disable it.
# This is useful if you're 100% certain the ARP table will be
# populated already, or in red team/forensic scenarios.
get-mac --no-network-request -4 192.168.0.1
python -m getmac --no-network-request -n home.router

# Debug levels can be specified with '-d'
get-mac --debug
python -m getmac -d -i enp11s4
python -m getmac -dd -n home.router

Note: the terminal interface will not work on Python 2.6 and older (Sorry RHEL 6 users!).

get_mac_address()

  • interface: Name of a network interface on the system.
  • ip: IPv4 address of a remote host.
  • ip6: IPv6 address of a remote host.
  • hostname: Hostname of a remote host.
  • network_request: If an network request should be made to update and populate the ARP/NDP table of remote hosts used to lookup MACs in most circumstances. Disable this if you want to just use what's already in the table, or if you have requirements to prevent network traffic. The network request is a empty UDP packet sent to a high port, 55555 by default. This can be changed by setting getmac.PORT to the desired integer value.

Notes

  • If none of the arguments are selected, the default network interface for the system will be used.
  • "Remote hosts" refer to hosts in your local layer 2 network, also commonly referred to as a "broadcast domain", "LAN", or "VLAN". As far as I know, there is not a reliable method to get a MAC address for a remote host external to the LAN. If you know any methods otherwise, please open a GitHub issue or shoot me an email, I'd love to be wrong about this.
  • The first four arguments are mutually exclusive. network_request does not have any functionality when the interface argument is specified, and can be safely set if using in a script.
  • The physical transport is assumed to be Ethernet (802.3). Others, such as Wi-Fi (802.11), are currently not tested or considored. I plan to address this in the future, and am definitely open to pull requests or issues related to this, including error reports.
  • Exceptions will be handled silently and returned as a None. If you run into problems, you can set DEBUG to true and get more information about what's happening. If you're still having issues, please create an issue on GitHub and include the output with DEBUG enabled.
  • Messages are output using the warnings module, and print() if getmac.DEBUG enabled (any value greater than 0). If you are using logging, they can be captured using logging.captureWarnings(). Otherwise, they can be suppressed using warnings.filterwarnings("ignore"). https://docs.python.org/3/library/warnings.html

Platforms

  • Windows
    • Versions: 2000, XP, Vista, 7, 8/8.1, 10
    • Commands: getmac, ipconfig
    • Libraries: uuid, ctypes
    • Third-party Packages: netifaces, psutil, scapy
  • Linux/Unix
    • Commands: arp, ip, ifconfig, netstat, ip link
    • Libraries: uuid, fcntl
    • Third-party Packages: netifaces, psutil, scapy, arping
    • Default interfaces: route, ip route list
    • Files: /sys/class/net/X/address, /proc/net/arp
  • Mac OS X (Darwin)
    • networksetup
    • Same as Linux

Caveats & Known issues

Caveats

  • Depending on the platform, there could be a performance detriment, due to heavy usage of regular expressions.
  • Platform test coverage is imperfect. If you're having issues, then it might very well be you're using a platform I haven't been able to test. If that's the case, keep calm, open a GitHub issue, and I'd be more than happy to help. Testing is only on a few platforms (Ubuntu 14+, Windows 10, Windows Server 2012R2), so your mileage will vary. Please report any problems by opening a issue on GitHub!

Known Issues

  • Hostnames for IPv6 devices are not yet supported.
  • Windows: the "default" of selecting the default route interface for the platform currently attempts to use Ethernet as the default, not the actual default.

Sources

Many of the methods used to acquire an address and the core logic framework are attributed to the CPython project's UUID implementation.

TODO

Full list of tasks and bugs can be found in TODO.md

License

MIT. Feel free to copy, modify, and use to your heart's content. Have fun!

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

get-mac-0.4.0.tar.gz (28.2 kB view hashes)

Uploaded Source

Built Distribution

get_mac-0.4.0-py2.py3-none-any.whl (12.8 kB view hashes)

Uploaded Python 2 Python 3

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