We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 808c2ab + 63cac53 commit 0ab9da1Copy full SHA for 0ab9da1
1 file changed
lib/ironic
@@ -672,6 +672,8 @@ function configure_iptables {
672
# enable tftp natting for allowing connections to HOST_IP's tftp server
673
sudo modprobe nf_conntrack_tftp
674
sudo modprobe nf_nat_tftp
675
+ # explicitly allow DHCP - packets are occassionally being dropped here
676
+ sudo iptables -I INPUT -p udp --dport 67:68 --sport 67:68 -j ACCEPT || true
677
# nodes boot from TFTP and callback to the API server listening on $HOST_IP
678
sudo iptables -I INPUT -d $HOST_IP -p udp --dport 69 -j ACCEPT || true
679
sudo iptables -I INPUT -d $HOST_IP -p tcp --dport $IRONIC_SERVICE_PORT -j ACCEPT || true
0 commit comments