1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-09 11:52:31 +00:00

Add openvpn on mate note

This commit is contained in:
Freezed 2019-04-12 09:41:06 +02:00
parent 17ddd01dd8
commit 61a15324e9

View File

@ -0,0 +1,54 @@
Title: Ajouter un VPN dans Debian/buster MATE
Date: 2019-04-12 08:52
Summary: Ajout d'une connection VPN dans le network-manager-gnome pour l'envirennement de bureau MATE
Category: Bloc-notes
Tags: vpn, debian, mate, gnome, admin, linux
Status: Published
Context
=======
```
~ lsb_release -a;mate-about --version;uname -r
Description: Debian GNU/Linux buster/sid
Release: testing
Codename: buster
MATE Desktop Environment 1.20.4
4.19.0-4-amd64
```
Installation
============
Dépendences
-----------
```
~ sudo apt install openvpn network-manager-openvpn network-manager-openvpn-gnome openvpn-systemd-resolved
```
Redémarrage
-----------
```
~ sudo service network-manager restart
```
Config
------
Automatique via un fichier `*.ovpn` :
```
~ sudo nmcli connection import type openvpn file /chemin/du/fichier_de_conf.ovpn
```
Ajout de l'utilisateur à la nouvelle connection créé depuis le menu _réseau_ du _centre de contrôle_ :
```
~ mate-control-center
```
---
Source : [_«How to import a OpenVPN .ovpn file with Network Manager or Command Line in Linux»_](https://www.cyberciti.biz/faq/linux-import-openvpn-ovpn-file-with-networkmanager-commandline/)