IPv6 Pass Through
This file contains 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
#!/bin/sh | |
ebtables -t broute -A BROUTING -p ! ipv6 -j DROP | |
brctl addbr ipv6br | |
ifconfig ipv6br up | |
brctl addif ipv6br eth0 | |
brctl addif ipv6br wlan0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment