Conection error

Hi, after latest upates on HA I realized following message:
“Login attempt or request with invalid authentication from 197acd2f-f09d-4f41-a37f-322105617052.fritz.box”
What could it be? Any hints how to figure out what’s wrong here? Thank you!
DD

Just an annoying warning if the reported device is known by you, see here:

Fritz!Box Authentication

I’m using a small automation to ignore those notifications:


trigger:
  - platform: state
    entity_id:
      - persistent_notification.http_login
    to: notifying
condition:
  - condition: template
    value_template: >
      {% set m = state_attr('persistent_notification.http_login', 'message') %}
      {{ 'pedolskys-Pad.fritz.box' in m or '192.xxx.xxx.xx' in m or
      '192.xxx.xxx.xx' in m}}
action:
  - service: persistent_notification.dismiss
    data:
      notification_id: http_login

1 Like