Recent content by PsychoRabbit

  1. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    Yep, do a docker ps on the terminal/cmd to check if it's running. It should show something like this CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS...
  2. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    Wow, it just one more pull to reach 1000 downloads!! It may not be a great number for someone, but for me is great because I didn't expect to have this much. So I'm happy :) I hope it was useful. I added a few notes to the original post. Anybody can host their own public DNS server. You need...
  3. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    The docker is public and should not require any account or login. Maybe your docker service is already in the proccess of login with another account? Try doing a docker logout on the console and then do the docker pull again. What OS are you using?
  4. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    "Status": "running" PortBindings": { "53/udp": [ { "HostIp": "", "HostPort": "53" } ], "80/tcp": [ { "HostIp": "", "HostPort": "80" } ] }, "RestartPolicy": { "Name": "always", "MaximumRetryCount": 0 } Yep, it seems to be running OK with the ports OK and has the restart policy. So, after the...
  5. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    Yep, just tested, without the = sign. Thanks. I gonna update the first post. So, if it's the first time running the docker docker run --name yadns-nx -d -p 80:80 -p 53:53 -p 53:53/udp --restart always luiscassih/yadns-nx 192.168.1.27 If there's a container already running. docker update...
  6. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    I did no testing but if you add the parameter --restart=always on the first docker run it should. If the container is already running or created the command is docker update --restart=always <container> Let me know if this work, I will test it later today.
  7. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    It looks really a great device for the price and size. Go for the dnsmasq+lighttpd combination, it should be a way to manage custom domains, something like this: https://github.com/RMerl/asuswrt-merlin/wiki/Custom-domains-with-dnsmasq If you can run also a fusee-launcher listener then it's the...
  8. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    You may not need my docker after all :P, editing your apache vhosts to manage *.nintendowifi.net and *.nintendo.net with OK 200 and the custom header should be enough, but you will also need to install bind9 for the dns side and you're done. This docker shouldn't affect your bandwidth, it...
  9. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    From Error starting userland proxy: Bind for 0.0.0.0:80: unexpected error (Failure EADDRINUSE) It seems that you have something else running at the port 80. This docker needs to use the port 80 and 53. You need to check what service is using that port. Do a in a terminal or use netstat or...
  10. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    Never used Lighttpd, but you need to return a http 200 OK with the X-Organization header Something like this $HTTP["host"] =~ "^nintendo\.net$" { setenv.add-response-header = ( "X-Organization" => "Nintendo" ) } And the same for nintendowifi.net, I don't know how can lighttpd return a 200...
  11. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    You cannot play online with this. Your switch will not know what internet is :P Also is not safe to play any online game if you have modded your switch. And with the second question, yes, I didn't tested on a RPiZero but it should run docker, so it should work.
  12. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    It pass the two nintendo checks because like SagaXIV said, this docker sends a response to the switch instead of Nintendo. As long as you put only your computer ip in the DNS settings on the Nintendo Switch, you will not have internet access. So if you go to the eshop it simply won't load.
  13. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    That because the "docker run" command creates a container, so after run it again it tries to create a container with the same name. Do a "docker start yadns-nx" to restart the container. I'll add this to the first post.
  14. PsychoRabbit

    Homebrew RELEASE yaDNS-NX - Yet another DNS for connect your Switch to your WiFi without internet - In a docker

    Yep, the IP DNS on the switch and the IP on the command should be the same as your computer ip, as this case 192.168.1.99, it should work Note that if your local ip changes in any time after the first run, you may delete the older docker container and run the "docker run" command again to...