S
S
shell_guy2021-12-07 11:35:35
Python
shell_guy, 2021-12-07 11:35:35

How to find out dynamic IPs using arp?

Good afternoon!
Faced the following problem: I have a list of test devices with mac addresses.
IP - dynamic.
How to know the actual IP of devices based on mac addresses?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Viktor Golovanenko, 2021-12-07
@shell_guy

Use the python_arptable module to read the ARP table:
pip install python_arptable

from typing import Optional

from python_arptable import get_arp_table


def get_ip_by_mac(macaddr: str) -> Optional[str]:
    if record := next(filter(lambda i: i['HW address'].lower() == macaddr.lower(), get_arp_table()), None):
        return record['IP address']


print(get_ip_by_mac('00:50:56:96:31:06'))  # 10.0.20.91

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question