domingo, 25 de outubro de 2020

How to disable IPv6 in Raspbian [WORKING]

0 comentários

 Fonte: https://cwesystems.com/?p=231


I had connection problems with my Raspberry Pi, it dropped connection over IPv4 periodically.

My solution was to disable IPv6, and the Pi’s network connections (over IPv4) went stable!

To check if you have any IPv6 address, run:

1
$ ifconfig


Check for “inet6”, see picture above.

To disable IPv6:

  1. Edit “/etc/sysctl.conf”:
    $ sudo nano /etc/sysctl.conf
    Add this to the end:
    1
    2
    3
    4
    net.ipv6.conf.all.disable_ipv6=1
    net.ipv6.conf.default.disable_ipv6=1
    net.ipv6.conf.lo.disable_ipv6=1
    net.ipv6.conf.eth0.disable_ipv6 = 1
    Save and close the file.

  2. Edit “/etc/rc.local”:
    $ sudo nano /etc/rc.local
    Add this to the end (but before “exit 0”):
    1
    service procps reload
    Save and close the file.

  3. Reboot

  4. Check with “ifconfig” if the IPv6 address has disappeared.
    $ ifconfig
    See my result in picture below, “inet6” is missing:

Done!

Continue reading →