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 742cd6f + 365d11d commit c3bf2e7Copy full SHA for c3bf2e7
1 file changed
lib/ironic
@@ -658,6 +658,10 @@ function configure_iptables {
658
# agent ramdisk gets instance image from swift
659
sudo iptables -I INPUT -d $HOST_IP -p tcp --dport ${SWIFT_DEFAULT_BIND_PORT:-8080} -j ACCEPT || true
660
fi
661
+
662
+ if [[ "$IRONIC_IPXE_ENABLED" == "True" ]] ; then
663
+ sudo iptables -I INPUT -d $HOST_IP -p tcp --dport $IRONIC_HTTP_PORT -j ACCEPT || true
664
+ fi
665
}
666
667
function configure_tftpd {
0 commit comments