I have no idea why this is happening on my arch linux machine. I was trying to set it up as a client device, and now i have no internet connection on my wired network. This is bare metal not docker. I just wanted to add the device to my tailnet.

Any help is appreciated

Thank you for your time.

EDIT: I have completely uninstalled tailscale yet I still do not have internet access. I am connected to the network fine. If i cinnect through wifi it is the same result.

EDIT 2: the error I am recieving is limited connectivity.

EDIT 3: It has been fixed! scrion@lemmy.world solution fixed it!

  • badlotus@discuss.online
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    21 hours ago

    Did you undo the reverse path strict filtering your guide suggested?

    
    net.ipv4.conf.default.rp_filter = 1
    net.ipv4.conf.all.rp_filter = 1
    
    

    Above is what the guide suggests to force reverse path strict filtering. Try setting as shown below:

    
    net.ipv4.conf.default.rp_filter = 0
    net.ipv4.conf.all.rp_filter = 0
    
    

    According to the guide, “By default, these are set in /usr/lib/sysctl.d/50-default.conf

    • ludicolo@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      20 hours ago

      No I did not edit this at all. Bkth were set to the value ‘2’

      I changed them both to 0 and 1 and it did not fix my issue 🫤

      • Agility0971@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        11 hours ago

        Hold up. Dont change stuff in /usr/lib/. That directory contains default settings that comes with packages. If you need to overwrite those settings use /etc for that.