Allow DHCP through IPTables
Revision as of 09:45, 17 May 2016 by Adam.birds (talk | contribs) (Created page with "To allow DHCP through IPTbales and IP6Tables run the following commands: <pre> iptables -I INPUT -i eth2 -p udp --dport 67:68 --sport 67:68 -j ACCEPT ip6tables -I INPUT -i et...")
To allow DHCP through IPTbales and IP6Tables run the following commands:
iptables -I INPUT -i eth2 -p udp --dport 67:68 --sport 67:68 -j ACCEPT ip6tables -I INPUT -i eth2 -p udp --dport 67:68 --sport 67:68 -j ACCEPT service iptables save service ip6tables save