I'm trying to create some captures on my linux box. The problem I have is that any captures I take from the loopback interface will contain massive packets that are much larger than the MTU. This appears to because of TCP segmentation offloading. I tried following the advice in this answer and placed the following in /etc/network/interfaces:
auto lo
iface lo intet loopback
mtu 1518
offload-tx off
offload-rx off
offload-sg off
offload-tso off
offload-rxvlan off
offload-txvlan off
but I am still getting massive packets that are much larger than the MTU in my captures. Is there any way to fix this?