Buonasera,
il problema sorge per il fatto che diversi produttori utilizzano la medesima tecnologia per la connessione VPN.
Il software utilizzato è OpenVPN che basa la connessione sulla creazione di un interfaccia virtuale di tipo TAP.
Trova questa interfaccia tra le normali interfacce di rete.
Per risolvere il problema occorre prima di tutto installare i driver TAP ufficiali
openvpn.net/index.php/open-source/downloads.html
In fondo alla pagina trova il pacchetto per i soli driver.
Durante l'installazione deve selezionare anche l'opzione ""
TAP utilities""
Una volta terminata l'installazione, lanciare il collegamento ""
Add a new TAP virtual ethernet adapter""
Questo creerà una nuova interfaccia TAP.
Andare nel menu di Windows per la gestione delle interfacce ethernet e rinominare la nuova interfaccia in
TAP-DT
A questo punto aprire la directory dove è installato il DeviceTouch, spostarsi nella directory
config ed editare come Amministratore il file
DeviceTouch.ovpn
Prima della modifica....
Code:
##############################################
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server. #
# #
# This configuration can be used by multiple #
# clients, however each client should have #
# its own cert and key files. #
# #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
##############################################
# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client
# Use the same setting as you are using on
# the server.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun
# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel
# if you have more than one. On XP SP2,
# you may need to disable the firewall
# for the TAP adapter.
;dev-node MyTap
# Are we connecting to a TCP or
# UDP server? Use the same setting as
# on the server.
;proto tcp
proto udp
............
Dopo la modifica .......
Code:
##############################################
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server. #
# #
# This configuration can be used by multiple #
# clients, however each client should have #
# its own cert and key files. #
# #
# On Windows, you might want to rename this #
# file so it has a .ovpn extension #
##############################################
# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client
# Use the same setting as you are using on
# the server.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun
dev-node TAP-DT
# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel
# if you have more than one. On XP SP2,
# you may need to disable the firewall
# for the TAP adapter.
;dev-node MyTap
# Are we connecting to a TCP or
# UDP server? Use the same setting as
# on the server.
;proto tcp
proto udp
............
E' stata aggiunta la riga
dev-node TAP-DT
Salvare il file e riavviare il DeviceTouch.
Cordiali saluti