0
scapy経由でUDPパケットを送信しようとしましたが、少し大きめのもの(rawローディングの1800文字など)を送信しようとすると、全く送信しません。Scapyが大きなUDPパケットを送信しない
def send_info(info):
msg = IP(dst=MANAGER_IP)/UDP(dport = MANAGER_PORT)/\
Raw(load = ("AAAAAAAAAAAA" + info)) #for some reason it throws out the first 12 charaters
print("Sending...")
send(msg, verbose=False)
print("Sent!")