Ankündigung

Einklappen
Keine Ankündigung bisher.

UniFi Controller API WLAN

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    #61
    Sooo, sorry, ich brauchte erstmal ein bisschen Ruhe um das zu sortieren. Also, um was gehts: Ich brauche die URLs die "die neue UniFi-Controller-Website" aufruft, um die Daten über die Anlage zu sammeln. Das PlugIn tut nämlich einfach so, als würde an Deiner statt, die Web-Oberfläche bedienen. Das funktioniert natürlich nicht mit Zwei Faktor Authentifizierung und ein Cloud-Login zu UniFi hin ist ebenfalls nicht vorgesehen.

    1. Schritt: Login:
    Öffne die Seite deines Controllers, wo Du Dich einloggst. Mit den F12 Entwickler-Tools kannst Du nun wieder sehen, was die Website für Calls macht. Bei mir passiert nach dem Abschicken der Login-Daten folgendes: Ein Request geht an "htt ps://unifi:8443/api/login", im Bauch (= Request Payload, ganz unten) kann man bei mir User-Name und Passwort lesen. Ich vermute, dass bei Dir die URL eine andere ist. Wenn UniFi da nun was ganz anders gemacht hat, dann wirds schwierig.

    2. Schritt: Verschiedene Abfragen:
    Als Browser-User auf dem Dashboard angekommen, werden Zustände abgefragt. Das passiert bei mir über "htt ps://unifi:8443/api/s/default/stat/sta"
    Schreibzugriffe gehen z.B. per PUT gegen "htt ps://unifi:8443/api/s/default/rest/device/{deviceID}", wobei default der Site-Name ist und {deviceID} eine Ansammlung von Buchstaben und Zahlen. Wenn das auch anders aufgebaut ist, dann müssen wir da im Einzelfall schauen.

    Ich vermute, dass die Login-URL nun ein anderes Schema hat, als die eigentliche api "/s/". Dann müsste man das nur entsprechend im Plugin konfigurierbar machen und gut ist. Alles andere ... tjaaaa ... Schonmal überlegt, den CloudKey zugunsten des Docker-Images zu beerdigen? ;-) Nee, das ist keine echte Option...

    Kommentar


      #62
      Schritt 1:

      Request URL:
      https://192.168.1.3/api/auth/login

      unten steht

      password: "hierdaspasswort"
      rememberMe: false
      username: "hierusername"

      Schritt 2:

      die erste url heißt anscheinend
      https://192.168.1.3/proxy/network/ap...fault/stat/sta

      die Schreibzugriffe (put) dürften über

      https://192.168.1.3/proxy/network/api/s/default/rest/device/{deviceip}

      gehen

      schaut zumindest jetzt mal nicht komplett anders aus (alle adressen (ausgenommen {device-ip}) sind komplett original abgeschrieben und nichts verändert)

      Kommentar


        #63
        Danke fürs rausfinden der URLs!

        Ich hab mal auf die Schnelle eine Datei umgeklimpert - (ungetestet! EDIT: habs mal bei mir so eingebunden, bis jetzt drehts)

        Hier kannst Du sie finden:
        https://github.com/jentz1986/smartho...quiti/unifi.py

        Die Datei musst Du in den Ordner plugins/unifi/ubiquiti/ als unifi.py einspielen (Die Alte vorher sichern) und dann dort die Zeile 63 von

        Code:
        self._url_flavor = UNIFI_URL_FLAVOR_DEFAULT
        auf

        Code:
        self._url_flavor = UNIFI_URL_FLAVOR_CLOUDKEY
        ändern.

        Für die echte Version brauche ich Dein Testergebnis, und dann muss ich das Ganze auch echt parametrierbar machen. Schön fänd' ich wenn Du noch kurz beschreiben könntest, welche Version des CloudKey-Updates der "Breaking Change" war...

        Viel Erfolg, Feedback erwünscht!
        Zuletzt geändert von jentz1986; 14.02.2021, 17:18.

        Kommentar


          #64
          Hi - Danke schonmal für die Arbeit - leider noch nicht von Erfolg gekrönt

          als Controller URL hab ich jetzt mal

          https://192.168.1.3

          angegeben

          item Generator gibt folgendes aus:
          Code:
          Traceback (most recent call last): File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 104, in _get_url
          raise LoggedInException("Invalid login, or login has expired")
          lugins.unifi.ubiquiti.unifi.LoggedInException: Invalid login, or login has expired
          
          During handling of the above exception, another exception occurred:
          
          Traceback (most recent call last):
          File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 104, in _get_url
          raise LoggedInException("Invalid login, or login has expired")
          plugins.unifi.ubiquiti.unifi.LoggedInException: Invalid login, or login has expired
          
          During handling of the above exception, another exception occurred:
          
          Traceback (most recent call last):
          File "/usr/local/smarthome/plugins/unifi/__init__.py", line 239, in get_item_hierarchy
          hr = self._api.get_device_hierarchy()
          File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 216, in get_device_hierarchy
          dvcs = self.device_stat("")
          File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 203, in device_stat
          return self._get_url(url_addr)
          File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 112, in _get_url
          return self._get_url(url, True)
          File "/usr/local/smarthome/plugins/unifi/ubiquiti/unifi.py", line 110, in _get_url
          raise DataException("Unable to log in or get data for url {}".format(url))
          plugins.unifi.ubiquiti.unifi.DataException: Unable to log in or get data for url https://192.168.1.3/proxy/network/api/s/default/stat/device/
          wenn ich mich am webinterface anmelde und dann die Seite https://192.168.1.3/proxy/network/ap...t/stat/device/ im Browser eingebe bekomme ich die ganzen Informationen - es liegt also irgendwo am login
          Zuletzt geändert von artner; 14.02.2021, 19:54. Grund: Code formatiert

          Kommentar


            #65
            Wenn Du die Seite mit den Details direkt aufrufst, gibst Du dann irgendeinen Key oder Code mit, oder kommt das über nen Cookie?

            Kommentar


              #66
              Nope, nur den Link, müsste also ein keks sein

              Kommentar


                #67
                Verdammt, das ist alles in der Session die in requests verarbeitet wird. Kannst du mal schauen, was du für Kekse hast, nach dem Du dich eingeloggt hast, wieder über die F12 Tools? Ich verstehe dann zwar nicht warum, das im Browser "implizit" klappt, aber nicht mit der Session-Funktionalitä im requests-Modul von Python, aber vielleicht entdeckst Du ja noch was...
                You do not have permission to view this gallery.
                This gallery has 1 photos.

                Kommentar


                  #68
                  schaut bei mir so aus

                  image_109391.png

                  achja - um eine Vorfrage noch zu beantworten: Breaking Change dürfte von Firmware Version 1.x auf 2.x gewesen sein (derzeit 2.0.27)

                  gerade getestet: wenn ich "TOKEN" lösch dann geht nichts mehr - wieder angemeldet --> "TOKEN" wieder da --> läuft
                  Zuletzt geändert von artner; 17.02.2021, 17:18.

                  Kommentar


                    #69
                    Ha, XSRF Header, die OpenHabs haben das gelöst. Ich versuchs am WE mal zu portieren...

                    Kommentar


                      #70
                      Hmmm, artner , kannst Du mal schauen, welche HTTP-Header Deine Unifi-Oberfläche an das Backend schickt? Kann es sein, dass der Wert im Cookie "TOKEN" der Wert ist, der im Header "x-csrf-token" an den Server geschickt wird?Screenshot 2021-02-20 154535.png

                      Kommentar


                        #71
                        gerade gecheckt: Request Headers-cookie ist der token der selbe wie im cookie, respone headers sind die letzten (73) Stellen teilweise unterschiedlich, x-csrf-token passt leider zu gar nix dazu

                        cookie.png sta.png

                        Kommentar


                          #72
                          Das Plugin wird bei mir im SHNG noch als "in Entwicklung" angezeigt (state setting plugin.yaml)

                          Eigentlich ist es da ja schon raus, oder?

                          Kommentar


                            #73
                            Im Prinzip ja - scheint aber nicht mit der UDM zu funktionieren. (S.o.) Da ich aber keine UDM habe kann ich dagegen nicht entwickeln…

                            Kommentar


                              #74
                              aus der sicht ist es ready ;-> halt nicht für alle user. dann wäre vieles nicht ready.

                              Kommentar


                                #75
                                Ich habe ein Problem, ich habe die item Konfig aus dem Item- Generator übernommen aber bekomme Fehlermeldungen, das keine ports gefunden werden
                                Code:
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 2 in item unifi_network.devices.usw_switch.uap_ap_eg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.uap_ap_eg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.uap_ap_eg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 4 in item unifi_network.devices.usw_switch.uap_ap_ga.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.uap_ap_ga.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.uap_ap_ga.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 3 in item unifi_network.devices.usw_switch.uap_ap_hof.port_e nabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.uap_ap_hof.port_e nabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.uap_ap_hof.port_e nabled
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 1 in item unifi_network.devices.usw_switch.uap_ap_kg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.uap_ap_kg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.uap_ap_kg.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 6 in item unifi_network.devices.usw_switch.uap_ap_og.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.uap_ap_og.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.uap_ap_og.port_en abled
                                2022-02-27 21:06:00 WARNING plugins.unifi Unable to determine current switch-profile for switch mac, error: Could not match any port in data to given port-number 1 in item unifi_network.devices.usw_switch.usw_mini_wz.non_u nifi_switch_at_port_1.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.usw_mini_wz.non_u nifi_switch_at_port_1.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.usw_mini_wz.non_u nifi_switch_at_port_1.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_on attribute provided in item unifi_network.devices.usw_switch.usw_mini_wz.port_ enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.usw_mini_wz.port_ enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi Current port profile "fritzbox-telefonie" doesn't match "None" (on) or "None" (off) (https://help.ubnt.com/hc/en-us/articles/219654087-UniFi-Using-VLANs-with-UniFi-Wireless-Routing-Switching-Hardware#USW) in item unifi_network.devices.usw_switch.usw_mini_wz.port_ enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.usw_mini_wz.wired _client_pc_harry_wz.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_cam_ starvis208_dg.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_druc ker_hp_laserjet_kammer.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_rout er_ubiquiti_er4.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_serv er_raspi_rev_prox.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_tv_s ony_wz.port_enabled
                                2022-02-27 21:06:00 WARNING plugins.unifi No unifi_switch_port_profile_off attribute provided in item unifi_network.devices.usw_switch.wired_client_tv_v usolo4k_wz.port_enabled
                                der Generator findet mein gesamtes Netzwerk, mit den items klappt es leider gar nicht. mein switch ist ein USW-24-PoE
                                mein unifi controller läuft auf einem raspberry version ist 7.0.23 heute aktualisiert, mit der vorherigen version 6.5.55 hatte ich dasselbe Problem.
                                Ich kann keine ports schalten, sie werden in den items nicht gefunden, der Generator findet sie.
                                ich hänge die items noch mit an

                                würde ich gern, aber die Einrückungen werden ignoriert, ich muss irgendwas ausschalten, weiß aber nicht mehr was damit das klappt, wie gesagt die items sind aus dem Generator

                                Code:
                                unifi_network:
                                    devices:
                                        usw_switch:
                                            ip:
                                                type: str
                                                unifi_type: device_ip
                                            switch_name:
                                                type: str
                                                unifi_type: device_name
                                            type: foo
                                            uap_ap_eg:
                                                ap_name:
                                                    type: str
                                                    unifi_type: device_name
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_ap_mac:xxx
                                                unifi_switch_port_no: 2
                                                unifi_type: ap_enabled
                                            uap_ap_ga:
                                                ap_name:
                                                    type: str
                                                    unifi_type: device_name
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_ap_mac: xxx
                                                unifi_switch_port_no: 4
                                                unifi_type: ap_enabled
                                            uap_ap_hof:
                                                ap_name:
                                                    type: str
                                                    unifi_type: device_name
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_ap_mac:xxx
                                                unifi_switch_port_no: 3
                                                unifi_type: ap_enabled
                                            uap_ap_kg:
                                                ap_name:
                                                    type: str
                                                    unifi_type: device_name
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_ap_mac: xxx
                                                unifi_switch_port_no: 1
                                                unifi_type: ap_enabled
                                            uap_ap_og:
                                                ap_name:
                                                    type: str
                                                    unifi_type: device_name
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_ap_mac: xxx
                                                unifi_switch_port_no: 6
                                                unifi_type: ap_enabled
                                            unifi_switch_mac: xxx
                                            usw_mini_wz:
                                                ip:
                                                    type: str
                                                    unifi_type: device_ip
                                                non_unifi_switch_at_port_1:
                                                    port_enabled:
                                                        type: bool
                                                        unifi_type: switch_port_enabled
                                                    unifi_switch_port_no: 1
                                                    wired_client_cam_dahua_eingang:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_cam_dahua_garten_seite:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_cam_dahua_hof:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_router_fritzbox_eg_flur:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_server_nuc_wz:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_server_raspi_zaehlerschrank:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                    wired_client_uvr16x2_cmi_heizung:
                                                        hostname:
                                                            type: str
                                                            unifi_type: client_hostname
                                                        ip:
                                                            type: str
                                                            unifi_type: client_ip
                                                        type: bool
                                                        unifi_client_mac: xxx
                                                        unifi_type: client_present
                                                port_enabled:
                                                    type: bool
                                                    unifi_type: switch_port_enabled
                                                switch_name:
                                                    type: str
                                                    unifi_type: device_name
                                                type: foo
                                                unifi_switch_mac: xxx
                                                unifi_switch_port_no: 5
                                                wired_client_pc_xxx_wz:
                                                    hostname:
                                                        type: str
                                                        unifi_type: client_hostname
                                                    ip:
                                                        type: str
                                                        unifi_type: client_ip
                                                    port_enabled:
                                                        type: bool
                                                        unifi_switch_port_profile_on: privat-knowhere
                                                        unifi_type: switch_port_enabled
                                                    type: bool
                                                    unifi_client_mac: xxx
                                                    unifi_switch_port_no: 2
                                                    unifi_type: client_present
                                            wired_client_cam_starvis208_dg:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: privat-knowhere
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 9
                                                unifi_type: client_present
                                            wired_client_drucker_hp_laserjet_kammer:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: xxx
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 12
                                                unifi_type: client_present
                                            wired_client_router_ubiquiti_er4:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: All
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 17
                                                unifi_type: client_present
                                            wired_client_server_raspi_rev_prox:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: reverse-proxy
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 15
                                                unifi_type: client_present
                                            wired_client_tv_sony_wz:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: privat-knowhere
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 13
                                                unifi_type: client_present
                                            wired_client_tv_vusolo4k_wz:
                                                hostname:
                                                    type: str
                                                    unifi_type: client_hostname
                                                ip:
                                                    type: str
                                                    unifi_type: client_ip
                                                port_enabled:
                                                    type: bool
                                                    unifi_switch_port_profile_on: privat-knowhere
                                                    unifi_type: switch_port_enabled
                                                type: bool
                                                unifi_client_mac: xxx
                                                unifi_switch_port_no: 14
                                                unifi_type: client_present
                                    wifi_clients:
                                        client_handy_galaxys10_xxx
                                            hostname:
                                                type: str
                                                unifi_type: client_hostname
                                            ip:
                                                type: str
                                                unifi_type: client_ip
                                            type: bool
                                            unifi_client_mac: xxx
                                            unifi_type: client_present
                                        client_handy_xiaomi_t10_xxx:
                                            hostname:
                                                type: str
                                                unifi_type: client_hostname
                                            ip:
                                                type: str
                                                unifi_type: client_ip
                                            type: bool
                                            unifi_client_mac: xxx
                                            unifi_type: client_present
                                        client_ipadvonxxx:
                                            hostname:
                                                type: str
                                                unifi_type: client_hostname
                                            ip:
                                                type: str
                                                unifi_type: client_ip
                                            type: bool
                                            unifi_client_mac: xxx
                                            unifi_type: client_present
                                        client_tablet_firehd_10:
                                            hostname:
                                                type: str
                                                unifi_type: client_hostname
                                            ip:
                                                type: str
                                                unifi_type: client_ip
                                            type: bool
                                            unifi_client_mac: xxx
                                            unifi_type: client_present
                                habs gefunden
                                Zuletzt geändert von element; 27.02.2022, 22:23.

                                Kommentar

                                Lädt...
                                X