使用Python扫描网络MAC地址对应的IP地址

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from scapy.all import srp,Ether,ARP,conf
ipscan='192.168.200.1/24'
try:
	    ans,unans = srp(Ether(dst="FF:FF:FF:FF:FF:FF")/ARP(pdst=ipscan),timeout=2,verbose=False)
except Exception,e:
	print str(e)
else:
	for snd,rcv in ans:
		#list_mac=rcv.sprintf("%Ether.src% - %ARP.psrc%")
		#print list_mac
		strmac = rcv.sprintf("%Ether.src%")
		if strmac == 'b8:27:eb:0e:ea:a5':
			strip = rcv.sprintf("%ARP.psrc%")
			print strip

  

原文地址:https://www.cnblogs.com/madlas/p/4774292.html