diff options
Diffstat (limited to 'config/openvpn-client-export')
-rwxr-xr-x | config/openvpn-client-export/vpn_openvpn_export.php | 5 | ||||
-rw-r--r-- | config/openvpn-client-export/vpn_openvpn_export_shared.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config/openvpn-client-export/vpn_openvpn_export.php b/config/openvpn-client-export/vpn_openvpn_export.php index 6bfdd4e3..04945381 100755 --- a/config/openvpn-client-export/vpn_openvpn_export.php +++ b/config/openvpn-client-export/vpn_openvpn_export.php @@ -620,6 +620,11 @@ function useproxy_changed(obj) { <select name="useaddr" id="useaddr" class="formselect" onChange="useaddr_changed(this)"> <option value="serveraddr" >Interface IP Address</option> <option value="serverhostname" >Installation hostname</option> + <?php if (is_array($config['dyndnses']['dyndns'])): ?> + <?php foreach ($config['dyndnses']['dyndns'] as $ddns): ?> + <option value="<?php echo $ddns["host"] ?>">DynDNS: <?php echo $ddns["host"] ?></option> + <?php endforeach; ?> + <?php endif; ?> <option value="other">Other</option> </select> <br /> diff --git a/config/openvpn-client-export/vpn_openvpn_export_shared.php b/config/openvpn-client-export/vpn_openvpn_export_shared.php index 60bd09d4..d2a555e7 100644 --- a/config/openvpn-client-export/vpn_openvpn_export_shared.php +++ b/config/openvpn-client-export/vpn_openvpn_export_shared.php @@ -315,6 +315,11 @@ function useproxy_changed(obj) { <select name="useaddr" id="useaddr" class="formselect" onChange="useaddr_changed(this)"> <option value="serveraddr" >Interface IP Address</option> <option value="serverhostname" >Installation hostname</option> + <?php if (is_array($config['dyndnses']['dyndns'])): ?> + <?php foreach ($config['dyndnses']['dyndns'] as $ddns): ?> + <option value="<?php echo $ddns["host"] ?>">DynDNS: <?php echo $ddns["host"] ?></option> + <?php endforeach; ?> + <?php endif; ?> <option value="other">Other</option> </select> <br /> |