• frezik
    link
    fedilink
    arrow-up
    4
    ·
    6 days ago

    Governments are not anyone’s issue other than other governments. If your threat model is state actors, you’re SOL either way.

    That’s a silly way to look at it. Governments can be spying on a block of people at once, or just the one person they actually care about. One is clearly preferable.

    Again, the obscurity benefit of NAT is so small that literally any cost outweighs it.

    I don’t see where you get a cost from it.

    • Firewall rules are more complicated
    • Firewall code is more complicated
    • Firewall hardware has to be beefier to handle it
    • NAT introduces more latency
    • CGNAT introduces even more latency
    • It introduces extra surface area for bugs in the firewall code. Some security related, some not. (I have one NAT firewall that doesn’t want to setup the hairpin correctly for some reason, meaning we have to do a bunch of workarounds using DNS).
    • Lots of applications have to jump through hoops to make it through NAT, such as VoIP services
    • Those hoops sometimes make things more susceptible to snooping; Vonage VoIP, for example, has to use a central server cluster to keep connections open to end users, which is the perfect point to install snooping (and this has happened)
    • . . . and that centralization makes the whole system more expensive and less reliable
    • A bunch of apps just never get built or deployed en masse because they would require direct addressing to work; stuff like a P2P instant messenger
    • Running hosted games with two people behind NAT and two people on the external network gets really complicated
    • . . . something the industry has “fixed” by having “live service” games. In other words, centralized servers.
    • TLS has a field for “Server Name Indication” (SNI) that sends the server name in plaintext. Without going far into the details, this makes it easier for the ISP to know what server you’re asking for, and it exists for reasons directly related to IPv4 sticking around because of NAT. Widespread TLS use would never have been feasible without this compromise as long as we’re stuck with IPv4.

    We forced decisions into a more centralized, less private Internet for reasons that can be traced directly to NAT.

    If you want to hide your hosts, just block non-established, non-related incoming connections at your firewall. NAT does not help anything besides extending IPv4’s life.