And they wonder why we walk with a pegleg…

(And that “watch similar movies” thing can go to hell too)

ETA:

Jellyfin is great, yes.

  • qjkxbmwvz@startrek.website
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 day ago

    Hmm, my understanding was that FQDN means that anyone will resolve the domain to e.g. the same IP address? Which is the case here (unless DNS rebinding mitigations or similar are employed) — but it doesn’t resolve to the same physical host in this case since it’s a private IP. Wikipedia:

    A fully qualified domain name is distinguished by its lack of ambiguity in terms of DNS zone location in the hierarchy of DNS labels: it can be interpreted only in one way.

    In my example, I can run nslookup jellyfin.myexample.com 8.8.8.8 and it resolves to what I expect (a local IP address).

    But IANA network professional by any means, so maybe I’m misusing the term?

    • False@lemmy.world
      link
      fedilink
      English
      arrow-up
      2
      ·
      11 hours ago

      Hmm, my understanding was that FQDN means that anyone will resolve the domain to e.g. the same IP address?

      It just means it’s the full format, similar to absolute vs relative paths on a filesystem. jellyfin.myexample.com is fully qualified (technically there should be a trailing dot but that’s rarely enforced these days) - doesn’t matter what it resolves to. jellyfin is not fully qualified - nor is jellyfin.myexample. This matters when you start talking about records in different zones - for example you could have an A record for jellyfin in mydomain.com.

      • qjkxbmwvz@startrek.website
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 hours ago

        Ok so it is fully qualified then? I’m just confused because it sounded like you were saying I wasn’t using the term correctly in your other comment.