Giter Site home page Giter Site logo

how to config local DNS? about xonox HOT 2 OPEN

kaykouo avatar kaykouo commented on September 3, 2024
how to config local DNS?

from xonox.

Comments (2)

x789 avatar x789 commented on September 3, 2024

Hi @kaykouo,
you need to set up a local DNS server and configure your iRadio to use it. If you do not currently have a local DNS server, you can consider using Pi-Hole for this.
You do not need to make that DNS server available to xonox or the system that hosts xonox.

from xonox.

kaykouo avatar kaykouo commented on September 3, 2024

Hi @kaykouo, you need to set up a local DNS server and configure your iRadio to use it. If you do not currently have a local DNS server, you can consider using Pi-Hole for this. You do not need to make that DNS server available to xonox or the system that hosts xonox.

Hi x789, thanks for your reply, I quickly setup a Pi-Hole service using docker:

services:
  pihole:
    container_name: pihole
    image: pihole/pihole:latest
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
      - "8080:80/tcp"
    environment:
      - WEBPASSWORD= #'set a secure password here or it will be random'
      - FTLCONF_LOCAL_IPV4=172.31.93.37
    volumes:
      - './etc-pihole:/etc/pihole'
      - './etc-dnsmasq.d:/etc/dnsmasq.d'
    cap_add:
      - NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
    restart: unless-stopped

however it still doesn't work, after I started xonox and call curl --location --request GET 'http://legacy.noxonserver.eu/station', it returns the station list. Then I setup Primary DNS=172.31.93.37 in the iRadio, But my iRadio300 still won't open any station

from xonox.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.