I never could get Nix working but maybe someone will

  • tatterdemalion@programming.dev
    link
    fedilink
    English
    arrow-up
    43
    arrow-down
    1
    ·
    edit-2
    3 days ago

    Wireguard is p2p.

    EDIT: I guess the point is it’s doing peer discovery without static public IPs or DNS. Pretty cool!

  • infeeeee@lemm.ee
    link
    fedilink
    English
    arrow-up
    28
    ·
    4 days ago

    Interesting, it’s on AUR, I will try it.

    So it doesn’t need any port forwarding, and works on CGNAT? How the “NAT hole punching” works? Both clients connect to something on IPFS?

    Afaik, for DHT with torrent, clients need to know at least one tracker, what is the “tracker” here? Something on IPFS? Who am I sending my IP addresses?

    How much overhead does this add to speed? I love with Wireguard, that it’s barely noticeable, really close to p2p speeds, OpenVPN was awful in this regard.

    • Possibly linux@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      2 days ago

      The PKGBUILD looks like it is just building via go. I’m not sure how you would configure it without Nix. I’ll try building it.

      • infeeeee@lemm.ee
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        Nix just calls the *.nix files, it’s still go under the hood. PKGBUILD is similar to the flake.nix and package.nix files to me, but I have no experience with nix.

    • Possibly linux@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      11
      ·
      edit-2
      4 days ago

      First off great find. I didn’t think to check the AUR. I personally wouldn’t use it as that version is 3 years out of date but its existence means that it might be entirely possible to get a non Nix version. I’m not sure I fully understand why it needs Nix OS but what do I know.

      It is all libp2p magic

      There have been lots if talks on libp2p and Nat traversal. I suggest you check them out. How it actually works is pretty complex and requires someone more knowledgeable than me to explain. One way it works is that both devices start a TCP connection at the same time which gets the proper ports to open up.

      • infeeeee@lemm.ee
        link
        fedilink
        English
        arrow-up
        13
        ·
        edit-2
        3 days ago

        AUR packages ending with"-git" or “-svn” always pull the latest commit from source. The version number means that was the last time the packager had to change something on the PKGBUILD script, not the actual version which would be installed.

        Where should I look? Where were these talks? I’m interested.

        Edit: I found the whitepaper about hole punching: https://research.protocol.ai/publications/decentralized-hole-punching/

        It says it connects to a “Hole Punch Coordination (DCUtR - Direct Connection Upgrade through Relay)”. So for NAT traversal to work, you need a third party, this relay. As I expected. I guess you can self host this, but than you could just host a wireguard server. I guess if you are on a locked down network where you cannot connect to any relay (e.g. how the Chinese Great Firewall works technically they could block it) you can’t initiate a connection behind a NAT.

        Nonetheless it seems interesting, but no magic here. Maybe the big difference that the relay servers are distributed, so no central authority to block easily.

        • Jenseitsjens@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          20 hours ago

          That doesn’t match my experience with AUR at all. Usually it pulls a specific git revision and checks the hash. This also ensures that the build shouldn’t suddenly fail to some extent.

          Though it’s entirely possible that it’s not like this for all packages, though I find it kind of counterintuitive since your package manager wouldn’t know when to perform an update in this case.

          • infeeeee@lemm.ee
            link
            fedilink
            English
            arrow-up
            2
            ·
            14 hours ago

            It’s documented in the wiki, they are called VCS packages, and it’s not the usual, they work a bit differently: https://wiki.archlinux.org/title/VCS_package_guidelines

            You can see in this instance, that it skips the sha checking for upstream source, in line 15 of the PKGBUILD it says ‘SKIP’: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=hyprspace-git#n15

            sha1sums parameter is documented in the wiki: https://wiki.archlinux.org/title/PKGBUILD#sha1sums

            In the PKGBUILD file you can list sources (line 12,13) and their respective checksums (line 14,15). In this PKGBUILD there are 2 sources: the first is the systemd unit file, it’s coming from the package’s AUR repo, not from upstream, you can see its checksum. The second source is the actual source, and you can see, it’s checksum is ‘SKIP’ so it shouldn’t be checked.

            With these kind of packages you can’t get notified if there is an update available, but if you install it again with your favorite AUR helper it would update itself for the latest version. It calculates version number from the latest commit hash, before building and installing, so if that is the same it won’t update again.

    • infeeeee@lemm.ee
      link
      fedilink
      English
      arrow-up
      31
      arrow-down
      1
      ·
      edit-2
      3 days ago
      what:
        is:
        your:
          - problem
          - with:
            YAML
      # At least you can have comments unlike in json. Who need comments in a config file anyway.
      
      • Zangoose@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        ·
        2 days ago

        Hey did you know that any JSON file is also a valid YAML file? I bet you’ll love YAML a lot more now that you have this information

      • itslilith@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        10
        ·
        3 days ago

        Nothing too major about how it’s usually used, but the yaml spec does allow arbitrary code execution when parsing a file and relies on the parser to have that feature disabled: https://en.m.wikipedia.org/wiki/YAML#Security

        That’s why for python, yaml.save_load() is a thing. That’s fine for your local config files and may even be a feature for you, but it shouldn’t be used to exchange information between services.

        • infeeeee@lemm.ee
          link
          fedilink
          English
          arrow-up
          7
          ·
          3 days ago

          My general view is similar, yaml is better if it should be written by humans, json is better if it should be written and read only by a machine. but hyprspace uses json for configuration, so I don’t really understand cellardoor’s comment

    • corsicanguppy@lemmy.ca
      link
      fedilink
      English
      arrow-up
      5
      ·
      3 days ago

      Careful. The yaml cult will come after you in a long and formless column, and only self destruct when one of them is a step too far to the left.

        • Possibly linux@lemmy.zipOP
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 days ago

          It uses libp2p

          I’ve never used Yggdrasil but it looks like a standalone project. It also appears have a smaller team and a little less funding but don’t know for sure.

          • exu@feditown.com
            link
            fedilink
            English
            arrow-up
            1
            ·
            2 days ago

            Fair, Yggdrasil is mainly intended for research in internet-scale routing through a mesh network and less as a finished product.

            Never heard of libp2p before, but apparently it’s used by IPFS? Looks pretty interesting indeed.

  • Matt@lemmy.ml
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    3
    ·
    edit-2
    3 days ago

    What about Tailscale? I know it’s Proprietary software, but still.

    • drathvedro@lemm.ee
      link
      fedilink
      English
      arrow-up
      11
      ·
      3 days ago

      Tailscale… is not that good. The underlying wireguard is robust, but tailscale control plane is completely proprietary, as well as their DERP servers that it too often uses completely needlessly. They can also block you off from downloading it, updating, or logging in, if you happen to be in a wrong country.

      I’m myself looking for an alternative to it, but having trouble finding something I could share with non tech savvy friends while not being as complex on my end as, say, open/strongswan ais. Any suggestions welcome.

      • sorter_plainview@lemmy.today
        link
        fedilink
        English
        arrow-up
        5
        ·
        3 days ago

        Have you considered having Headscale on a cheap VPS? We are actually doing that and it is pretty capable. IIRC, you can configure not to use the tailscale servers at all, and use your own public VPS for coordination. Bonus point, tailscale hired the Headscale developer and maintainer, and they are allowed to work on Headscale while on their payroll. The team looks very much into FOSS.

        • drathvedro@lemm.ee
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 days ago

          Yep. That’s the number one contender. Well right after overriding default DERP’s with my own VPS machines. I’ll definitely try it out over some weekend.

          One of my other concerns with this and other solutions suggested is the reliance on wireguard which can be subject to fingerprinting and censorship. Do you happen to know if it’d be possible to swap out Headscale’s implementation of wireguard to amnezia? I’ll have to do my homework anyway, but who knows, maybe there are some pitfalls to avoid.

          • sorter_plainview@lemmy.today
            link
            fedilink
            English
            arrow-up
            1
            ·
            2 days ago

            Oh, never heard of amnezia. Never needed actually. But it looks like a good improvement on Wireguard. I will need a separate setup to test it out and currently I’m away from home with no clue when I will return. If I happen to find anything, I will definitely ping you.

            In the HN page you linked many people mentioned v2ray. Have you tried that? How good is it?

            • drathvedro@lemm.ee
              link
              fedilink
              English
              arrow-up
              1
              ·
              43 minutes ago

              In the HN page you linked many people mentioned v2ray. Have you tried that? How good is it?

              Nope, haven’t actually read the comments, just sent the article as reference to the issue. It does indeed sound quite promising. Think it’d be nice to have even if as just a fallback, so I’ll try that too, whenever I get a moment.

      • GHiLA@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        2 days ago

        Headscale worked for me, but I get the non-tech saavy friends part doesn’t quite jive with it as a solution.

        Still, anyone wanna ditch Tailscale and only use it for hosting sites across proxies? Headscale is great.

        • drphungky@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 days ago

          Yeah I don’t understand how this is different than headscale, but I’m very much not savvy on the pipes and tubes that make the Internet go round. Can anyone explain?

    • Possibly linux@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      11
      ·
      3 days ago

      Tailscale is actually a lot more open than you think. The agents are all foss and there is a self hostable version.

        • Obinice@lemmy.world
          link
          fedilink
          English
          arrow-up
          22
          ·
          4 days ago

          Is IPFS something your family and friends check on regularly? I don’t even know what it is.

          Considering your reluctance to give any information about your assertion that such a project using it becomes useless, I’m not sure you know what it is either :P

          • 31337@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            13
            arrow-down
            1
            ·
            3 days ago

            I haven’t checked it out in years. From my understanding, IPFS aims to be a distributed filesystem that kinda works like Bittorent. If you access a file, you then seed it. Last time I checked it out, the project was jumping on the crypto bandwagon… Just checked out their website now, and don’t know WTF it is.

    • Valmond@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 days ago

      I sure wonder how this is supposed to function, any explanation anywhere, like a diagram or something?