This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| linux:ubuntu:openvpn [2018/02/21 13:49] – lunetikk | linux:ubuntu:openvpn [2021/05/14 17:14] (current) – lunetikk | ||
|---|---|---|---|
| Line 109: | Line 109: | ||
| </ | </ | ||
| - | ===== Connecting | + | ===== Commands ===== |
| + | |||
| + | ^ Command | ||
| + | | nmap -sL 10.8.0.* | ||
| + | |||
| + | ===== Connecting a QNAP as client | ||
| Edit the file "/ | Edit the file "/ | ||
| Line 134: | Line 139: | ||
| < | < | ||
| - | Check if your connection is up with ifconfig and ping your gateway (openvpn | + | Check if your connection is up with ifconfig and ping your gateway (OpenVPN |
| < | < | ||
| # ifconfig | # ifconfig | ||
| Line 146: | Line 151: | ||
| </ | </ | ||
| + | ===== Connecting an Ubuntu 16 as client ===== | ||
| + | Install the client | ||
| + | < | ||
| + | apt-get update | ||
| + | apt-get install openvpn | ||
| + | </ | ||
| + | |||
| + | Copy the .ovpn file from your server to your client into / | ||
| + | Rename it to .conf, for example client.conf | ||
| + | < | ||
| + | mv client.ovpn client.conf | ||
| + | </ | ||
| + | |||
| + | If you run OpenVPN with systemd you need to configure your configfiles in "/ | ||
| + | Add your filename (client) if you only want the single file to be recognized, add " | ||
| + | < | ||
| + | AUTOSTART=" | ||
| + | #or | ||
| + | AUTOSTART=" | ||
| + | |||
| + | Reload the "/ | ||
| + | < | ||
| + | |||
| + | Restart the OpenVPN | ||
| + | < | ||
| + | |||
| + | Check if your connection is up with ifconfig and ping your gateway (OpenVPN server) | ||
| + | < | ||
| + | # ifconfig | ||
| + | tun0 Link encap: | ||
| + | inet Adresse: | ||
| + | |||
| + | # ping 10.8.0.1 | ||
| + | PING 10.8.0.1 (10.8.0.1) 56(84) bytes of data. | ||
| + | 64 bytes from 10.8.0.1: icmp_seq=1 ttl=64 time=38.6 ms | ||
| + | 64 bytes from 10.8.0.1: icmp_seq=2 ttl=64 time=37.9 ms | ||
| + | </ | ||
| + | |||
| + | ===== Connecting a Raspbian 9 as client ===== | ||
| + | |||
| + | Install the client | ||
| + | < | ||
| + | apt-get update | ||
| + | apt-get install openvpn | ||
| + | </ | ||
| + | |||
| + | Copy the .ovpn file from your server to your client into / | ||
| + | Rename it to .conf, for example client.conf | ||
| + | < | ||
| + | mv client.ovpn client.conf | ||
| + | </ | ||
| + | |||
| + | If you run OpenVPN with systemd you need to configure your configfiles in "/ | ||
| + | Add your filename (client) if you only want the single file to be recognized, add " | ||
| + | < | ||
| + | AUTOSTART=" | ||
| + | #or | ||
| + | AUTOSTART=" | ||
| + | |||
| + | Reload the "/ | ||
| + | < | ||
| + | |||
| + | Restart the OpenVPN | ||
| + | < | ||
| + | |||
| + | Check if your connection is up with ifconfig and ping your gateway (OpenVPN server) | ||
| + | < | ||
| + | # ifconfig | ||
| + | tun0 Link encap: | ||
| + | inet Adresse: | ||
| + | |||
| + | # ping 10.8.0.1 | ||
| + | PING 10.8.0.1 (10.8.0.1) 56(84) bytes of data. | ||
| + | 64 bytes from 10.8.0.1: icmp_seq=1 ttl=64 time=38.6 ms | ||
| + | 64 bytes from 10.8.0.1: icmp_seq=2 ttl=64 time=37.9 ms | ||
| + | </ | ||
| + | |||
| + | and with systemctl | ||
| + | < | ||
| + | # systemctl status [email protected] | ||
| + | ● [email protected] - OpenVPN connection to client | ||
| + | | ||
| + | | ||
| + | Docs: man: | ||
| + | | ||
| + | | ||
| + | Process: 1684 ExecStart=/ | ||
| + | Main PID: 1686 (openvpn) | ||
| + | | ||
| + | | ||
| + | |||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | Jan 21 12:56:40 raspbian ovpn-client[1686]: | ||
| + | </ | ||