|
6 | 6 | { address = "192.168.0.0/16", comment = "rfc1918", list = "private_addr" }, |
7 | 7 | { address = "10.0.30.2", comment = "jellyfin access", list = "media_clients" }, |
8 | 8 | { address = "10.0.30.3", comment = "jellyfin access", list = "media_clients" }, |
9 | | - { address = "10.0.30.5", comment = "jellyfin access", list = "media_clients" }, |
10 | | - { address = "10.0.30.17", comment = "jellyfin access", list = "media_clients" }, |
11 | 9 | ] |
12 | 10 |
|
13 | 11 | # - Uses stable map keys (not array indices) so adding/removing rules doesn't cascade changes |
@@ -46,7 +44,7 @@ locals { |
46 | 44 | forward_iot_wan = { order = 220, chain = "forward", action = "accept", comment = "allow iot -> WAN", in_interface = "iot", out_interface_list = "WAN" } |
47 | 45 | forward_iot_drop_local = { order = 230, chain = "forward", action = "drop", comment = "drop local access on iot net", dst_address_list = "private_addr", in_interface = "iot" } |
48 | 46 | forward_iot_drop_all = { order = 240, chain = "forward", action = "drop", comment = "drop all other forward from iot", in_interface = "iot" } |
49 | | - forward_guest_ha_tcp = { order = 310, chain = "forward", action = "accept", comment = "allow home assistant from guest", protocol = "tcp", dst_address = "10.0.10.8", dst_port = "8123", in_interface = "guest" } |
| 47 | + forward_guest_ha_tcp = { order = 310, chain = "forward", action = "accept", comment = "allow home assistant from guest", protocol = "tcp", dst_address = "10.0.20.4", dst_port = "8123", in_interface = "guest" } |
50 | 48 | forward_jellyfin_guest = { order = 315, chain = "forward", action = "accept", comment = "allow jellyfin from media_clients", protocol = "tcp", dst_address = "10.0.45.37", dst_port = "8096", src_address_list = "media_clients", in_interface = "guest" } |
51 | 49 | forward_immich_guest = { order = 320, chain = "forward", action = "accept", comment = "allow immich from media_clients", protocol = "tcp", dst_address = "10.0.45.38", dst_port = "2283", src_address_list = "media_clients", in_interface = "guest" } |
52 | 50 | forward_guest_dns_udp = { order = 400, chain = "forward", action = "accept", comment = "allow guest DNS (UDP)", protocol = "udp", dst_address = var.dns_ip, dst_port = "53", in_interface = "guest" } |
|
0 commit comments