Skip Navigation

[Solved] Opening home server to the Internet via IPv6

I've been wanting to set up a small game server on my home network for myself and a few friends lately. Nothing I haven't done before - except the part where I open it up to the internet for people outside of my home network to play on.

So I tried setting up a small web server to test out the port forwarding functionality of my router. Darkhttpd, running on a spare Raspberry Pi, works fine on the local network. After digging through the web interface, I find out that using IPv4 isn't an option because of how my ISP tunnels network traffic (sth sth Dual-Stack Lite)—fine by me, in 2024 we should be using IPv6 anyway. So I go and open up port 80 in my router's web interface.

This is where the problem begins. Everything looks fine, but I don't have ready access to a network outside of my own to check if the port is actually accessible from the internet. An online IPv6 open port checker I found tells me the ports are visible and that my ISP isn't blocking anything. Trying to bind a domain that I had lying around to my IP address, however, has resulted in failure.

I have no idea how to debug this. I'm pretty sure there's some issue on the DNS Server end, but I can't even tell if the rest of what I'm trying to do is working. And if it is, I have no idea of how to go about fixing the DNS thing.

Update: I got a friend to test it, and the web page is accessible from the internet. Problem lies with the DNS server

Update 2: After contacting my friend again for a sanity check, it seems that the DNS server works fine and my test website can indeed be reached through my domain—it's just that I can't reach it.

Update 3: After poking at various DNS servers, it appears that the Mullvad DNS servers which I use don't regularly update their records. I've now switched to Cloudflare. My router similarly implements some caching solution that, after much tinkering, I was unable to flush. For the time being I've just decided to fuck doing this properly and directly edit my /etc/resolv.conf with the Cloudflare DNS servers. If I ever manage to get this working properly, I will add a final update, but for the time being, I will consider it solved.

15

You're viewing part of a thread.

Show Context
15 comments
  • My host records consist of a single AAAA record that points to the IP address of my server, which I verified beforehand. I've tried dig, but I'm not sure how to interpret it's output, which looks as follows:

    ;; Warning: Client COOKIE mismatch
    
    ; <<>> DiG 9.18.24 <<>> [domain]
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 35067
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1
    
    ;; OPT PSEUDOSECTION:
    ; EDNS: version: 0, flags:; udp: 1232
    ; COOKIE: 485ffdde4d749cd80100000066019ef6aba1fc1942596e31 (bad)
    ;; QUESTION SECTION:
    ;[domain].              IN      A
    
    ;; AUTHORITY SECTION:
    [domain].       3113    IN      SOA     dns1.registrar-servers.com. hostmaster.registrar-servers.com. 1711343555 43200 3600 604800 3601
    
    ;; Query time: 0 msec
    ;; SERVER: 192.168.178.1#53(192.168.178.1) (UDP)
    ;; WHEN: Mon Mar 25 17:05:52 CET 2024
    ;; MSG SIZE  rcvd: 146
    
    • There is no answer ("Answer: 0"). If you got one it would be obvious because you would see the ip address. Either the DNS entry is not correct or your dig query does not work. I have not queried AAAA with dig myself yet and I am lazy on mobile. But you can try specifying manually using dig AAAA <your hostname> (at least that works with MX, TXT, CNAME and NS) records. (At least from the question section in your output it just says "A", not sure.)

      Edit: the output of dig is actually quite simple. Lines starting with ; are comments just four your information and improved formatting. Most you can ignore but some are helpful. Most important for you is stuff below your "Answer section" since everything below is, well, the answer for your query. If you do not have one (like in your example) the query did not return any results. This is also stated relatively at the top where it gives you a summary of the numer of queries, answers, authorities, ... the request+response contained. There is also the question section (as a comment) which shows an A request, not AAAA. I think that shoud state the query you made which is not what you wanted. (Could be wrong though; never paid attention to that).

      • Thanks for the answer! Unfortunately, the response from dig AAAA is rather lackluster:

        ; <<>> DiG 9.18.24 <<>> AAAA [domain]
        ;; global options: +cmd
        ;; Got answer:
        ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 14166
        ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
        
        ;; QUESTION SECTION:
        ;[domain].              IN      AAAA
        
        ;; Query time: 19 msec
        ;; SERVER: 192.168.178.1#53(192.168.178.1) (UDP)
        ;; WHEN: Mon Mar 25 19:22:18 CET 2024
        ;; MSG SIZE  rcvd: 34
        

        I'm starting to suspect Namecheap just hates IPv6. Their dynamic DNS service only covers v4, too

15 comments