Add note about disabling TCP offloading

master
Markus Koch 2023-08-25 15:34:27 +02:00
parent 6981889ea0
commit 1284a1617b
1 changed files with 2 additions and 3 deletions

View File

@ -47,9 +47,8 @@ m=socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.htons(ETH_P_ALL))
m.bind((dev, 0))
# TODO: IP Frames w/ MTU > 1500
# i = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_RAW)
# i.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, True)
# i.send(ip payload)
# Make sure to disable TCP segmentation offloading to use this:
# https://www.baeldung.com/linux/tcp-offload-disable
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if (mode == "s"):