Skip to content

Commit

Permalink
Update ports on homeassistant.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
iancleary committed Apr 14, 2024
1 parent fe456f4 commit d079f66
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,26 @@
networking = {
firewall = {
enable = true;
allowedTCPPorts = [ 1883 8123 9541 21064 ];
allowedTCPPorts = [ 1883 8123 9541 21065 ];
allowedUDPPorts = [ 5353 ];
# 1883 -> MQTT,

# https://www.home-assistant.io/integrations/homekit/#firewall
# 5353 -> mDNS,

# 8123 Home Assistant Web UI,

# Not used in my setup, but might be useful for others:
# 8883 -> MQTT over SSL,
# 9001 -> MQTT Websockets,

# 9541 -> TasmoAdmin,
# 21064 -> Homekit Bridge

# https://www.home-assistant.io/integrations/homekit/#firewall
# 21063 -> Homekit Bridge (or whatever port you configure the brige to use)
# 21064 -> Homekit Bridge (or whatever port you configure the brige to use)
# 21065 -> Homekit Bridge (https://www.home-assistant.io/integrations/homekit/)
# 51827 -> HomeKit
# 51827 -> HomeKit (old, N/A anymore)
};
};
}

0 comments on commit d079f66

Please sign in to comment.