1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-25 14:44:09 +00:00

Disable IPv6 to work

This commit is contained in:
Christian Bremvåg 2019-03-28 19:13:09 +01:00 committed by GitHub
parent ea6ef1c9e7
commit d856d3a62a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,4 +20,15 @@ RESULT=$?
echo "Finished running dkms install steps." echo "Finished running dkms install steps."
if echo "net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1" >> /etc/sysctl.conf; then
echo "Disabled IPv6 Successfuly "
else
echo "Could not disable IPv6"
fi
exit $RESULT exit $RESULT