Как настроить VPN в графическом интерфейсе Linux, имея только файл конфигурации?

Как настроить VPN в графическом интерфейсе Linux, имея только файл конфигурации?

Я получил один файл конфигурации от технического персонала моего университета для настройки соединения OpenVPN. По словам персонала, я должен открыть соединение вручную в командной строке с помощью следующей команды

openvpn --config файл_конфигурации.conf

Однако мне нужно держать терминал открытым с этой командой (вероятно, через screen я могу меньше помех). Однако могу ли я использовать графический интерфейс VPN-подключения из Ubuntu, чтобы настроить этот VPN, используя информацию, найденную в файле конфигурации? как это сделать?

Содержимое файла конфигурации приведено ниже:

#############################################
# Sample client-side OpenVPN 2.0 config file.
# for connecting to multi-client server. 
##############################################

#tls-cipher "DEFAULT:@SECLEVEL=0"

# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client

dev tun
proto udp

# The hostname/IP and port of the server.
remote <ip-adress> <port>


# host name of the OpenVPN server.  Very useful
# on machines which are not permanently connected
# to the internet such as laptops.
resolv-retry infinite

# Most clients don't need to bind to
# a specific local port number.
nobind

# Try to preserve some state across restarts.
persist-key
persist-tun

comp-lzo



# Certificate Authority
<ca>
-----BEGIN CERTIFICATE-----
BLABLABLA
-----END CERTIFICATE-----
</ca>

# Username/Password authentication is used on the server
auth-user-pass

# Verify server certificate by checking
# that the certicate has the nsCertType
# field set to "server".  This is an
# important precaution to protect against
# a potential attack discussed here:
#  http://openvpn.net/howto.html#mitm
#
# To use this feature, you will need to generate
# your server certificates with the nsCertType
# field set to "server".  The build-key-server
# script in the easy-rsa folder will do this.
ns-cert-type server

# Set log file verbosity.
verb 3

решение1

Вы можете импортировать конфигурацию VPN с помощью графического интерфейса управления сетью GNOME. Просто нажмите "Импорт из файла..." подНастройки -> Сеть -> Добавить VPN

Скриншот настроек

Связанный контент