aboutsummaryrefslogtreecommitdiffstats
path: root/config/openvpn-client-export/openvpn-client-export.inc
diff options
context:
space:
mode:
authorMarcello Coutinho <marcellocoutinho@gmail.com>2013-11-11 12:46:51 -0200
committerMarcello Coutinho <marcellocoutinho@gmail.com>2013-11-11 12:46:51 -0200
commit141c6b63a6b630415d3862b5d530cd4f49bf789d (patch)
tree9057a753fdab1ee498ff0101fb2b9800991ba5a6 /config/openvpn-client-export/openvpn-client-export.inc
parent48c047241c2f5dfcfb5f58d7759ba8412f7b4830 (diff)
parent03d4c6e46aceee78b62ad8bec0590a6a4f6df89c (diff)
downloadpfsense-packages-141c6b63a6b630415d3862b5d530cd4f49bf789d.tar.gz
pfsense-packages-141c6b63a6b630415d3862b5d530cd4f49bf789d.tar.bz2
pfsense-packages-141c6b63a6b630415d3862b5d530cd4f49bf789d.zip
Merge branch 'master' of https://github.com/pfsense/pfsense-packages
Diffstat (limited to 'config/openvpn-client-export/openvpn-client-export.inc')
-rwxr-xr-xconfig/openvpn-client-export/openvpn-client-export.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/openvpn-client-export/openvpn-client-export.inc b/config/openvpn-client-export/openvpn-client-export.inc
index c7afb9e6..cf7eb7a4 100755
--- a/config/openvpn-client-export/openvpn-client-export.inc
+++ b/config/openvpn-client-export/openvpn-client-export.inc
@@ -209,7 +209,9 @@ function openvpn_client_export_config($srvid, $usrid, $crtid, $useaddr, $quotese
if (($expformat != "inlinedroid") && ($expformat != "inlineios"))
$conf .= "resolv-retry infinite{$nl}";
$conf .= "$remotes{$nl}";
- if (!empty($servercn)) {
+ /* This line can cause problems with auth-only setups and also with Yealink/Snom phones
+ since they are stuck on an older OpenVPN version that does not support this feature. */
+ if (!empty($servercn) && !$nokeys && (substr($expformat, 0, 7) != "yealink") && ($expformat != "snom")) {
$qw = ($quoteservercn) ? "\"" : "";
$conf .= "verify-x509-name {$qw}{$servercn}{$qw} name{$nl}";
}