Discord isn’t exactly known for generous file-sharing limits, still, the messaging app offered a 25MB limit to free users. The company has now updated its support page to reflect the upload limit for free users has been lowered to 10MB.

  • Kairos@lemmy.today
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    12 days ago

    The issue is the absence of being able to port forward in a lot of places. UPNP exists on some networks but it’s usually disabled. But if we want actual peer to peer we’re going to need to implement some way to accept incoming connections EVERYWHERE.

            • KillingTimeItself@lemmy.dbzer0.com
              link
              fedilink
              English
              arrow-up
              3
              ·
              12 days ago

              yeah, under IPv6 based home networking, you just assign a block of addresses to a home, 512 or something, for example, and then you just use a stateful firewall to do the same exact thing that a NAT + a stateful firewall would be doing on a traditional IPv4 network.

              Nothing stops you from using a NAT if you felt like you wanted your networking to be more complicated for no reason. But you probably shouldn’t.

              There are potential benefits for the anonymization of traffic (though this is probably easy enough to defeat by simply sniffing for all traffic across the IP block) a denial of service wouldn’t be super important anymore, as you could just engage in round robin across the other IPs, unless of course you DOS’d every IP all at once, but that would be super fucking obvious and trivial to deal with. Though it might kill an individual computer in the network due to traffic influx.

              You could still engage in DHCP IP handouts, which would actually be beneficial in terms of traffic anonymization in this case. Especially on a high frequency basis. Similar to the effects of NATing on an IPv4 network.

              Plus you could still grab a static IP address per device, and then just pass through firewall rules to allow external connections or whatever you please. No forwarding required.

      • Strykker@programming.dev
        link
        fedilink
        English
        arrow-up
        4
        ·
        12 days ago

        Gonna be real here, I’m in tech, there is no fucking way I’m gonna open my PC to the entire fucking internet. Vulnerabilities are everywhere and no code is perfect. Firewalls and nat help stop so many attacks from the start.

        Even if ipv6 is common I will assume most implementations will be nat based.

        • FrederikNJS@lemm.ee
          link
          fedilink
          English
          arrow-up
          1
          ·
          12 days ago

          IPv6 does not require you to open your machine to the Internet, even without making use of a NAT. Sure you get an IP that’s valid on the whole internet, but that doesn’t mean that anyone can send you traffic.

    • Great Blue Heron@lemmy.ca
      link
      fedilink
      English
      arrow-up
      9
      ·
      12 days ago

      Once an end-to-end, encrypted, connection is established between a pair of peers then anything can be sent through it. The establishment proces is generally facilitated by a server of some description so neither peer needs to allow inbound connections. (I’m a long, long way from being an expert on this and happy to be corrected - but this seems like network fundamentals?)

      • KillingTimeItself@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        5
        ·
        12 days ago

        this is true, but the problem is that it’s really complicated, and not always reliable. Mostly due to NATing within the networks. Firewalls don’t help but you can get around those easily enough.

        There’s no guarantee that you’ll get a reliable P2P network connection over a NAT unless one peer isn’t NATed. Which is unlikely.

        TL;DR we would probably ddos the internet very quickly if we tried at the scale of something like discord.