From: Olli Mannisto <olmanni...@gmail.com>

Some windows machines get weird issues with netsh when using
adapter name on "netsh.exe interface ipv6 set address" command.

Changed logic to get adapter index and use it instead of adapter
name for netsh set address command. if unable to get adapter index,
try with adapter name.

Signed-off-by: Olli Mannisto <olmanni...@gmail.com>
Signed-off-by: Lev Stipakov <lstipa...@gmail.com>
---
 src/openvpn/tun.c | 26 +++++++++++++++++++-------
 1 file changed, 19 insertions(+), 7 deletions(-)

diff --git a/src/openvpn/tun.c b/src/openvpn/tun.c
index 24a61ec..aa0278d 100644
--- a/src/openvpn/tun.c
+++ b/src/openvpn/tun.c
@@ -1301,18 +1301,30 @@ do_ifconfig (struct tuntap *tt,
     if ( do_ipv6 )
       {
        char * saved_actual;
+       const DWORD idx = get_adapter_index_flexible(actual);

        if (!strcmp (actual, "NULL"))
          msg (M_FATAL, "Error: When using --tun-ipv6, if you have more than 
one TAP-Windows adapter, you must also specify --dev-node");

        /* example: netsh interface ipv6 set address MyTap 2001:608:8003::d 
store=active */
-       argv_printf (&argv,
-                   "%s%sc interface ipv6 set address %s %s store=active",
-                    get_win_sys_path(),
-                    NETSH_PATH_SUFFIX,
-                    actual,
-                    ifconfig_ipv6_local );
-
+    if (idx != TUN_ADAPTER_INDEX_INVALID)
+    {
+        argv_printf (&argv,
+            "%s%sc interface ipv6 set address %u %s store=active",
+             get_win_sys_path(),
+             NETSH_PATH_SUFFIX,
+             idx,
+             ifconfig_ipv6_local);
+    }
+    else
+    {
+        argv_printf (&argv,
+            "%s%sc interface ipv6 set address %s %s store=active",
+             get_win_sys_path(),
+             NETSH_PATH_SUFFIX,
+             actual,
+             ifconfig_ipv6_local);
+    }
        netsh_command (&argv, 4);

        /* explicit route needed */
-- 
1.9.1


Reply via email to