What is a good way to allow a router to request an IP from a DHCP server, and block external machines from requesting an IP from the DHCP server that the router is running to provide IP's for the local network? Is this sufficient?
$IPTABLES -A INPUT -i $EXTERNAL -p udp --sport 67 -j ACCEPT
$IPTABLES -A OUTPUT -o $EXTERNAL -p udp --dport 67 -j DROP
Thanks,
-bitwise
$IPTABLES -A INPUT -i $EXTERNAL -p udp --sport 67 -j ACCEPT
$IPTABLES -A OUTPUT -o $EXTERNAL -p udp --dport 67 -j DROP
Thanks,
-bitwise