I was setting up my laptop for traveling and adding Wireguard VPN configuration.

The Wireguard config generated by router only contains IPv4 address (10.0.5.x), and while testing the VPN to my surprise “what is my ip” websites can find my IPv6 address (I USB tethered mobile connection to my laptop).

It looks like NetworkManager does nothing about IPv6 connection if VPN doesn’t have IPv6 settings, which is bad for road warrior type of VPN configuration.

Is there an easy toggle to turn of IPv6 if VPN is connected and otherwise? Or is only option to disable all IPv6 no matter what?

  • Arthur Besse@lemmy.mlM
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    7 hours ago

    You could edit your configuration to change the wireguard connection’s AllowedIPs from 0.0.0.0/0 to 0.0.0.0/0,::/0 so that IPv6 traffic is routed over it. Regardless of if your wireguard endpoint actually supports it, this will at least stop IPv6 traffic from leaking.

      • Arthur Besse@lemmy.mlM
        link
        fedilink
        English
        arrow-up
        1
        ·
        6 hours ago

        If you have ::/0 in your AllowedIPs and v6 connections are bypassing your VPN, that is strange.

        What does ip route get 2a00:1450:400f:801::200e (an IPv6 address for google) say?

        I haven’t used wireguard with NetworkManager, but using wg-quick it certainly adds a default v6 route when you have ::/0 in AllowedIPs.

  • Supermariofan67@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    1 day ago

    Best to set a firewall rule with nftables to block non-vpn traffic from leaving (you should also do the save for IPv4 traffic to prevent leaks in case the tunnel disconnects)

  • axzxc1236@lemm.eeOP
    link
    fedilink
    arrow-up
    3
    ·
    1 day ago

    I tried the same setup with Ubuntu 24.04.1 desktop live system and I can replicate this IP leak issue, I guess I will have to disable IPv6.

  • LainTrain@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    2
    arrow-down
    5
    ·
    edit-2
    1 day ago

    I’d also like to know, is there a way to just turn off this ipv6 trashfire? Preferably in a universal, cross-distro way?

    Seems like the most universal way is: GRUB_CMDLINE_LINUX_DEFAULT=“ipv6.disable=1”

    • corsicanguppy@lemmy.ca
      link
      fedilink
      English
      arrow-up
      1
      ·
      9 hours ago

      I keep hoping someone will come up with a half-measure that looks like ipv4 with an extra octet and writable in hex.

      • Let people stew a bit on their 00c0a8011f IP which is like a 192.168.1.31 IP.
      • increment the big number. Oh shit, we’ve got lots.
      • repeat
      • start adding the cool parts of ipv6
      • moar
      • add a 00 to the end that old shit just skips
      • somewhere in there, switch the engine

      We can either take yeeeears to do it well, or we can take more decades to try and big-bang it. This ain’t 1983.

    • Supermariofan67@programming.dev
      link
      fedilink
      arrow-up
      7
      arrow-down
      1
      ·
      1 day ago

      Or you could just… learn to use the modern internet that 60% of internet traffic uses? Not everyone has a dedicated IPv4 anymore, we are in the days of mobile networks and CGNAT. IPv4 exhaustion is here today.

    • axzxc1236@lemm.eeOP
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      edit-2
      1 day ago

      In my case just disable IPv6 in WiFi is enough.

      sysctl looks like the most universal way.

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