Deshabilitar temporalmente IPv6

Deshabilitar temporalmente IPv6

solíaestas direccionespara configurar VPN de acceso privado a Internet (PIA) para mi Raspberry Pi 4. Estoy ejecutando Raspbian y usando el Pi como una mini computadora de escritorio conectada a mi televisor. Y me gustaría tener una conexión VPN para evitar compartir mi IP. Lamentablemente, mi IPv6 todavía se está transmitiendo. Así que uséestas instruccionespara desactivar IPv6.

Desafortunadamente, cuando ejecuto sudo openvpn ca_vancouver.ovpn, sigo recibiendo el siguiente error:

Tue Jun  1 07:49:22 2021 WARNING: file 'auth.txt' is group or others accessible
Tue Jun  1 07:49:22 2021 OpenVPN 2.4.7 arm-unknown-linux-gnueabihf [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Feb 20 2019
Tue Jun  1 07:49:22 2021 library versions: OpenSSL 1.1.1d  10 Sep 2019, LZO 2.10
Tue Jun  1 07:49:22 2021 TCP/UDP: Preserving recently used remote address: [AF_INET]208.78.42.222:1198
Tue Jun  1 07:49:22 2021 UDP link local: (not bound)
Tue Jun  1 07:49:22 2021 UDP link remote: [AF_INET]208.78.42.222:1198
Tue Jun  1 07:49:22 2021 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
Tue Jun  1 07:49:22 2021 [vancouver412] Peer Connection Initiated with [AF_INET]208.78.42.222:1198
Tue Jun  1 07:49:23 2021 OpenVPN ROUTE6: OpenVPN needs a gateway parameter for a --route-ipv6 option and no default was specified by either --route-ipv6-gateway or --ifconfig-ipv6 options
Tue Jun  1 07:49:23 2021 OpenVPN ROUTE: failed to parse/resolve route for host/network: 2000::/3
Tue Jun  1 07:49:23 2021 TUN/TAP device tun0 opened
Tue Jun  1 07:49:23 2021 /sbin/ip link set dev tun0 up mtu 1500
Tue Jun  1 07:49:23 2021 /sbin/ip addr add dev tun0 10.32.112.52/24 broadcast 10.32.112.255
Tue Jun  1 07:49:23 2021 WARNING: OpenVPN was configured to add an IPv6 route over tun0. However, no IPv6 has been configured for this interface, therefore the route installation may fail or may not work as expected.
Tue Jun  1 07:49:23 2021 Initialization Sequence Completed

Más aún, cuando intento navegar a cualquier sitio web en Chromium, aparece el siguiente error (en este caso estoy intentandowww.accesoprivadoainternet.com):

This site cant be reached www.privateinternetaccess.com. Server IP address could not be found.
Error: DNS_PROBE_FINISHED_BAD_CONFIG

¿Algún consejo o soporte disponible para ayudar a resolver este problema al bloquear mi IPv6?

Respuesta1

Pruebe estos pasos si su Ipv6 en realidad no se desactiva:

Deshabilitar temporalmente IPv6

para ver si OpenVPN con PIA se conecta como se esperaba:

sysctl -w net.ipv6.conf.all.disable_ipv6=1

Luego conéctese a PIA.
si eso funciona entonces:


Desactive IPv6 permanentemente.

Paso 1:

Agregue esto a la línea de su kernel en/boot/cmdline.txtpara deshabilitar IPv6 por completo:

ipv6.disable=1

Nota:* esto requiere reiniciar


Paso 2:

Para deshabilitar ipv6, debe abrir /etc/sysctl.conf usando cualquier editor de texto e insertar las siguientes líneas al final:

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

y reiniciar. Si IPv6 aún no está deshabilitado, entonces el problema es que sysctl.conf aún no está activado. Para resolver esto, escriba el comando:

sudo sysctl -p

Verás esto en la terminal:

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

Después de eso, si ejecutas:

cat /proc/sys/net/ipv6/conf/all/disable_ipv6

tomado deesta guía.

información relacionada