Skip to content Skip to sidebar Skip to footer

Django Connection Aborted: Address Family Not Supported By Protocol

I'm running a script on a raspberry pi that sends a POST request to my Django app once every minute. I ran it for 3 hours at my apartment and it was fine, but then I took it home a

Solution 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

Post a Comment for "Django Connection Aborted: Address Family Not Supported By Protocol"