Answer the question
In order to leave comments, you need to log in
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
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 questionAsk a Question
731 491 924 answers to any question