diff options
author | Simon Rettberg | 2018-03-28 15:39:27 +0200 |
---|---|---|
committer | Simon Rettberg | 2018-03-28 15:39:27 +0200 |
commit | e5662be9fa78cc30e81fcc713ecb5014293546a3 (patch) | |
tree | da810eda7ede11becbb7fe69f791af79dc417a50 | |
parent | [run-virt] Linux mount scripts: Added forgotten file (diff) | |
download | mltk-e5662be9fa78cc30e81fcc713ecb5014293546a3.tar.gz mltk-e5662be9fa78cc30e81fcc713ecb5014293546a3.tar.xz mltk-e5662be9fa78cc30e81fcc713ecb5014293546a3.zip |
[dnbd3-proxy-mode] Whitelist sat server for port 5003 if firewalling is enabled
Closes #3347
-rwxr-xr-x | core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-setup_dnbd3_proxy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-setup_dnbd3_proxy b/core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-setup_dnbd3_proxy index e19788bc..746c5fae 100755 --- a/core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-setup_dnbd3_proxy +++ b/core/modules/dnbd3-proxy-mode/data/opt/openslx/scripts/systemd-setup_dnbd3_proxy @@ -159,7 +159,7 @@ rm -f "/opt/openslx/iptables/rules.d/99-dnbd3" if [ -n "${SLX_DNBD3_WHITELIST}" ]; then DNBD3_IPTABLES_CONF="$(mktemp)" echo '#!/bin/ash' > "${DNBD3_IPTABLES_CONF}" - for CIDR in ${SLX_DNBD3_WHITELIST}; do + for CIDR in ${SLX_DNBD3_WHITELIST} ${SLX_KCL_SERVERS}; do echo "iptables -I ipt-helper-INPUT 1 -i br0 -p tcp -s ${CIDR} --dport ${DNBD3_PORT} -j ACCEPT" done >> "${DNBD3_IPTABLES_CONF}" echo "iptables -A ipt-helper-INPUT -i br0 -p tcp --dport ${DNBD3_PORT} -j REJECT" >> "${DNBD3_IPTABLES_CONF}" |