我已在python中编程,其中将发送一个字节数组以激活汽车网关中的协议功能。基本上我正在构建一个较低级别的ISO-OSI结构,它发送一个以太网层数据包以及ARP协议结构。我已经通过以太网LAN电缆将Raspberry pi 2连接到网关。我在Raspberry中使用API来运行代码。我正在使用python 3进行编译。
#start of program
from socket import *
def sendeth(ethernet_packet,payload,interface = "eth0"):
"""Sending RAW Ethernet packets with ARP protocol."""
s= socket(AF_PACKET, SOCK_RAW)
s.bind((interface,0))
return s.send(ethernet_packet + payload)
def pack(byte_sequence):
"""convert list of bytes to byte string"""
return b"".join(map(chr, byte_sequence))
if __name__ == "__main__":
#desadd,srcadd,ethtype
ethernet_packet= [0x00, 0x36, 0xf8, 0x00, 0x5b, 0xed, 0xb8, 0x27, 0xcb, 0x8c, 0x1c, 0xf9, 0x08, 0x06]
#arpprotocol
arp_packet = [0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01, 0xf0, 0x1f, 0xaf, 0x57, 0x33, 0xb1, 0xa9, 0xfe, 0x00, 0x14, 0x00, 0x36, 0xf8, 0x00, 0x5b, 0xed, 0xa9, 0xfe, 0x3f, 0x29]
payload = "".join(map(chr, arp_packet))
r = sendeth(pack(ethernet_packet),
pack(arp_packet))
printf("sent Etherent with ARP_Paket payload length is %d bytes" % r)
当我在我的树莓PI中运行该程序时
$sudo python3 APR.py
它会抛出错误,
Traceback (most recent call test):
File"APR.py", line 24,in <module>
r = sendeth(pack(ethernet_packet),
File"APR.py", line 13,in pack
return b"".join(map(chr, byte_sequence))
TypeError: sequence intem 0: expected Bytes, bytearray, or an object with the buffer Interface, str found.
我已经在Google和维基百科上尝试了我最好的Level这个似乎错误的错误,但是找不到任何错误。我只用了一个月的Python。因此,任何有关此问题的线索或帮助都会有所帮助。
可能的解决方案
由于我使用的是python 3,因此会引发错误。在Python 2中它的完美精致。可能在python 3中我无法将hexa小数作为字符串发送!!如果这是问题,有人可以帮助我如何克服错误。
答案 0 :(得分:0)
您的pack()函数不起作用,因为raco pkg install rsound
函数
返回chr
但不是字节字符串。有关可能的解决方案,请参阅chr() equivalent returning a bytes object, in py3k。
在您的情况下,最简单的解决方案是直接使用str
:
bytearray