[network-manager-openvpn/nm-1-2] Don't make ifconfig exclusive to static key connection type
- From: Thomas Haller <thaller src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [network-manager-openvpn/nm-1-2] Don't make ifconfig exclusive to static key connection type
- Date: Thu, 21 Sep 2017 11:46:19 +0000 (UTC)
commit ac9f3e2e22e6760898c4933e48f2b87b11bc6030
Author: David Rosca <nowrep gmail com>
Date: Sat Nov 19 18:53:51 2016 +0100
Don't make ifconfig exclusive to static key connection type
Always pass the ifconfig option to openvpn if specified, not only when
connection type is static key.
https://bugzilla.gnome.org/show_bug.cgi?id=774727
(cherry picked from commit 1e36488d3442732dd9b0c03f2b69589d53085066)
src/nm-openvpn-service.c | 33 +++++++++------------------------
1 files changed, 9 insertions(+), 24 deletions(-)
---
diff --git a/src/nm-openvpn-service.c b/src/nm-openvpn-service.c
index ced6f9d..659ac2f 100644
--- a/src/nm-openvpn-service.c
+++ b/src/nm-openvpn-service.c
@@ -1740,6 +1740,15 @@ nm_openvpn_start_openvpn_binary (NMOpenvpnPlugin *plugin,
add_openvpn_arg (args, tmp);
}
+ /* ifconfig */
+ tmp = nm_setting_vpn_get_data_item (s_vpn, NM_OPENVPN_KEY_LOCAL_IP);
+ tmp2 = nm_setting_vpn_get_data_item (s_vpn, NM_OPENVPN_KEY_REMOTE_IP);
+ if (tmp && tmp2) {
+ add_openvpn_arg (args, "--ifconfig");
+ add_openvpn_arg (args, tmp);
+ add_openvpn_arg (args, tmp2);
+ }
+
/* Punch script security in the face; this option was added to OpenVPN 2.1-rc9
* and defaults to disallowing any scripts, a behavior change from previous
* versions.
@@ -1799,30 +1808,6 @@ nm_openvpn_start_openvpn_binary (NMOpenvpnPlugin *plugin,
if (tmp && tmp[0])
add_openvpn_arg (args, tmp);
}
-
- add_openvpn_arg (args, "--ifconfig");
-
- tmp = nm_setting_vpn_get_data_item (s_vpn, NM_OPENVPN_KEY_LOCAL_IP);
- if (!tmp) {
- /* Insufficient data (FIXME: this should really be detected when validating the
properties */
- g_set_error_literal (error,
- NM_VPN_PLUGIN_ERROR,
- NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
- _("Missing required local IP address for static key mode."));
- return FALSE;
- }
- add_openvpn_arg (args, tmp);
-
- tmp = nm_setting_vpn_get_data_item (s_vpn, NM_OPENVPN_KEY_REMOTE_IP);
- if (!tmp) {
- /* Insufficient data (FIXME: this should really be detected when validating the
properties */
- g_set_error_literal (error,
- NM_VPN_PLUGIN_ERROR,
- NM_VPN_PLUGIN_ERROR_BAD_ARGUMENTS,
- _("Missing required remote IP address for static key mode."));
- return FALSE;
- }
- add_openvpn_arg (args, tmp);
} else if (!strcmp (connection_type, NM_OPENVPN_CONTYPE_PASSWORD)) {
/* Client mode */
add_openvpn_arg (args, "--client");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]