Last active
September 28, 2020 13:28
-
-
Save katallaxie/9e37e3a0af89acc38363e889353df500 to your computer and use it in GitHub Desktop.
Have HomeKit in VLAN's on LEDE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install avahi | |
# to configure servce | |
[server] | |
allow-interfaces=br-<private-network>,br-<iot-network> | |
use-ipv4=yes | |
use-ipv6=no | |
allow-interfaces=br-lan,br-machina | |
check-response-ttl=no | |
use-iff-running=no | |
cache-entries-max=0 | |
[publish] | |
disable-publishing=yes | |
# to forward | |
[reflector] | |
enable-reflector=yes | |
reflect-ipv=no |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config rule | |
option src <network> | |
option src_ip <router> | |
option dest_ip 224.0.0.0/24 | |
option name Allow-Multicast-Router | |
option proto tcpudp | |
option target ACCEPT | |
config rule | |
option src <network> | |
option src_ip <device> | |
option dest_ip 224.0.0.0/24 | |
option name Allow-Multicast | |
option proto tcpudp | |
option target ACCEPT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment