python Amazon Dash Button ARP监听器脚本(不是我写的)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Amazon Dash Button ARP监听器脚本(不是我写的)相关的知识,希望对你有一定的参考价值。
import socket
import struct
import binascii
# Written by Bob Steinbeiser (https://medium.com/@xtalker)
rawSocket = socket.socket(socket.AF_PACKET, socket.SOCK_RAW,
socket.htons(0x0003))
MAC = '74c24671971c'
while True:
packet = rawSocket.recvfrom(2048)
ethernet_header = packet[0][0:14]
ethernet_detailed = struct.unpack('!6s6s2s', ethernet_header)
arp_header = packet[0][14:42]
arp_detailed = struct.unpack('2s2s1s1s2s6s4s6s4s', arp_header)
# skip non-ARP packets
ethertype = ethernet_detailed[2]
if ethertype != '\x08\x06':
continue
source_mac = binascii.hexlify(arp_detailed[5])
dest_ip = socket.inet_ntoa(arp_detailed[8])
if source_mac == MAC:
print "Dash button pressed!, IP = " + dest_ip
以上是关于python Amazon Dash Button ARP监听器脚本(不是我写的)的主要内容,如果未能解决你的问题,请参考以下文章
plotly dash:创建多个回调(带循环?)
Python 装饰器作为 Dash 中的回调使用作为实例变量的 Dash 对象 - 失败
无法使用 Python 3.6.4 版安装“dash”
《Python开发 - Python库》Dash安装与使用 (构建Web应用的 Python 库)
《Python开发 - Python库》Dash安装与使用 (构建Web应用的 Python 库)
ImportError:无法从部分初始化的模块“dash”导入名称“dcc”-python