adding DHCP6 offer packets on firewall to come through

This commit is contained in:
toby 2018-09-09 23:20:30 +02:00
parent 028e2d455d
commit d96371752d
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ case $1 in
ip6tables -A INPUT -s 2001:67c:1560:8003::c8 -p udp --sport 123 -j ACCEPT # ntp
ip6tables -A INPUT -s fe80::/10 -p tcp --sport 179 -j ACCEPT # bgp (allow init as well as responding)
ip6tables -A INPUT -s fe80::/10 -p tcp --dport 179 -j ACCEPT # bgp (allow init as well as responding)
ip6tables -A INPUT -s fe80::/10 -p udp --dport 546 -j ACCEPT # dhcp offers
### DROP the rest
ip6tables -P INPUT DROP