Documentation

Allow DHCP through IPTables

A
Adam Birds
Published 10 August 20261 min read1 views

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
Last updated: 10 August 2026v1