[Fixed]-Django connection aborted: address family not supported by protocol

1👍

I think you are missing this kernel module af_packet, you can reload it like:

root@linux# depmod -a
root@linux# modprobe af_packet

if it doesnot work, you can try to load directly:

root@linux# insmod /lib/modules/2.6.13-15-default/kernel/net/packet/af_packet.ko

Leave a comment