Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. PiHole-Fritzbox-Proxmox

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    PiHole-Fritzbox-Proxmox

    This topic has been deleted. Only users with topic management privileges can see it.
    • K
      KleinesA last edited by

      Hi, ich hoffe Ihr könnt mir einen Tipp geben.
      Ich habe gestern Pi-Hole installiert und in der FritzBox in den Netzwerkeinstellungen sowie bei den Internet Einstellungen den Pi-Hole Server als DNS Server eingetragen.

      Heute Nacht ist mein ioBroker rebootet. Seit dem fragt der ioBroker Server 12x in der Sekunden Pi-Hole nach dem Name fritz.box.
      Woran kann das liegen?

      crunchip 1 Reply Last reply Reply Quote 0
      • crunchip
        crunchip Forum Testing Most Active @KleinesA last edited by

        @KleinesA ja, wenn dein IoBroker über PiHole läuft, ist das normal
        du kannst aber auch PiHole aussen vor lassen, indem du bei
        dns-nameservers , die Ip der Fritzbox einträgst.

        schau mal nach was bei dir eingetragen ist.
        mit putty auf IoBroker einwählen und dies eingeben

        cat /etc/network/interfaces
        
        K 1 Reply Last reply Reply Quote 0
        • K
          KleinesA @crunchip last edited by

          @crunchip Danke für Deine Antwort:
          Ich bekomme folgendes:

          This file describes the network interfaces available o n your system # and how to activate them. For more information, see in terfaces(5).

          source /etc/network/interfaces.d/*

          The loopback network interface

          auto lo
          iface lo inet loopback

          The primary network interface

          allow-hotplug ens18
          iface ens18 inet dhcp

          crunchip 1 Reply Last reply Reply Quote 0
          • crunchip
            crunchip Forum Testing Most Active @Gerni last edited by

            @Gerni du musst doch eine IP Adresse haben
            Auf deiner Fritzbox
            Internet/Onlinemonitor werden deine Adressen angezeigt
            du kannst auch mal dieses aufrufen
            https://meineipadresse.de/

            1 Reply Last reply Reply Quote 0
            • crunchip
              crunchip Forum Testing Most Active @KleinesA last edited by

              @KleinesA sagte in PiHole-Fritzbox-Proxmox:

              The primary network interface
              allow-hotplug ens18
              iface ens18 inet dhcp

              darunter sollte eigentlich noch dein
              dns-nameservers 192.168.xxx.x stehen

              K 1 Reply Last reply Reply Quote 0
              • K
                KleinesA @crunchip last edited by

                @crunchip Nö. Ist nichts weiter.

                crunchip 1 Reply Last reply Reply Quote 0
                • crunchip
                  crunchip Forum Testing Most Active @KleinesA last edited by

                  @KleinesA was zeigt

                  cat /etc/resolv.conf
                  
                  K 1 Reply Last reply Reply Quote 0
                  • K
                    KleinesA @crunchip last edited by

                    @crunchip Da kommt was:
                    domain fritz.box
                    search fritz.box
                    nameserver 192.168.178.37

                    crunchip 1 Reply Last reply Reply Quote 0
                    • crunchip
                      crunchip Forum Testing Most Active @KleinesA last edited by

                      @KleinesA ja und die .37 ist dein Pihole

                      K 1 Reply Last reply Reply Quote 0
                      • K
                        KleinesA @crunchip last edited by

                        @crunchip Ja

                        crunchip 1 Reply Last reply Reply Quote 0
                        • crunchip
                          crunchip Forum Testing Most Active @KleinesA last edited by

                          @KleinesA
                          du könntest die resolv.conf ändern, aber die wird wahrscheinlich nach einem neustart wieder überschrieben werden.
                          Hatte damals auch das Problem.
                          Probier mal das so
                          änder die resolv.conf auf die Ip-Adresse deiner Fritzbox
                          und bei
                          /etc/network/interfaces
                          trägst du direkt unter
                          iface ens18 inet dhcp
                          dns-nameservers 192.168.178.1
                          ein

                          K 1 Reply Last reply Reply Quote -1
                          • K
                            KleinesA @crunchip last edited by

                            @crunchip
                            Also in /etc/network/interfaces bleibt der Eintrag dns-nameserver 192.168.178.1 stehen.
                            Der Eintrag /etc/resolv.conf wird wieder überschrieben mit der ip vom Pi-Hole
                            Und ioBroker feuert wieder Anfragen nach fritz.box ohne Ende raus.

                            crunchip 1 Reply Last reply Reply Quote 0
                            • crunchip
                              crunchip Forum Testing Most Active @KleinesA last edited by

                              @KleinesA du könntest deinen Iobroker von dhcp auf statische ip stellen
                              dazu musst du in

                              /etc/network/interfaces
                              

                              folgendes ändern

                              iface ens18 inet static
                              address 192.168.178.x
                              netmask 255.255.255.0
                              gateway 192.168.178.1
                              dns-nameservers 192.168.178.1

                              K 2 Replies Last reply Reply Quote 0
                              • K
                                KleinesA @crunchip last edited by

                                @crunchip Danke. Werde ich heute Abend mal testen.

                                1 Reply Last reply Reply Quote 0
                                • K
                                  KleinesA @crunchip last edited by

                                  @crunchip
                                  Hallo also unter /etc/resolv.conf steht
                                  domain fritz.box
                                  search fritz.box
                                  nameserver 192.168.178.37

                                  192.168.178.37 ist der pihole. Auch wenn ich dort die IP der FB schreibe, nach einem Reboot steht dort wieder Pihole.

                                  Unter /etc/network/interfaces steht:

                                  This file describes the network interfaces available on your system

                                  and how to activate them. For more information, see interfaces(5).

                                  source /etc/network/interfaces.d/*

                                  The loopback network interface

                                  auto lo
                                  iface lo inet loopback
                                  iface ens18 inet static
                                  address 192.168.178.32
                                  netmask 255.255.255.0
                                  gateway 192.168.178.1

                                  The primary network interface

                                  allow-hotplug ens18
                                  #####iface ens18 inet dhcp
                                  dns-nameserver 192.168.178.1

                                  Nach einem Reboot ist ioBroker per http nicht mehr erreichbar.

                                  crunchip 1 Reply Last reply Reply Quote 0
                                  • crunchip
                                    crunchip Forum Testing Most Active @KleinesA last edited by

                                    @KleinesA trag das mal so ein

                                    # This file describes the network interfaces available on your system
                                    # and how to activate them. For more information, see interfaces(5).
                                    
                                    source /etc/network/interfaces.d/*
                                    
                                    # The loopback network interface
                                    auto lo
                                    iface lo inet loopback
                                    
                                    # The primary network interface
                                    allow-hotplug ens18
                                    iface ens18 inet static
                                    	address 192.168.178.32
                                    	netmask 255.255.255.0
                                    	gateway 192.168.178.1
                                            dns-nameservers 192.168.178.1
                                    # This is an autoconfigured IPv6 interface
                                    iface ens18 inet6 auto
                                    
                                    K 1 Reply Last reply Reply Quote 0
                                    • K
                                      KleinesA @crunchip last edited by

                                      @crunchip Danke. Das werde ich.

                                      1 Reply Last reply Reply Quote 0
                                      • K
                                        KleinesA last edited by

                                        @crunchip sagte in PiHole-Fritzbox-Proxmox:

                                        This file describes the network interfaces available on your system

                                        and how to activate them. For more information, see interfaces(5).

                                        source /etc/network/interfaces.d/*

                                        The loopback network interface

                                        auto lo
                                        iface lo inet loopback

                                        The primary network interface

                                        allow-hotplug ens18
                                        iface ens18 inet static
                                        address 192.168.178.32
                                        netmask 255.255.255.0
                                        gateway 192.168.178.1
                                        dns-nameservers 192.168.178.1

                                        This is an autoconfigured IPv6 interface

                                        iface ens18 inet6 auto

                                        Scheint zu klappen. Danke

                                        1 Reply Last reply Reply Quote 0
                                        • First post
                                          Last post

                                        Support us

                                        ioBroker
                                        Community Adapters
                                        Donate
                                        FAQ Cloud / IOT
                                        HowTo: Node.js-Update
                                        HowTo: Backup/Restore
                                        Downloads
                                        BLOG

                                        894
                                        Online

                                        31.6k
                                        Users

                                        79.5k
                                        Topics

                                        1.3m
                                        Posts

                                        fritzbox install pihole proxmox
                                        9
                                        108
                                        9841
                                        Loading More Posts
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        Community
                                        Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                        The ioBroker Community 2014-2023
                                        logo