WireGuard : Configure Client (Debian)2023/07/18 |
Install WireGuard which is the simple yet fast and modern VPN software. This example is based on the environment like follows. First, it needs to configure IP masquerade setting on your router that UDP packets to global IP address of WireGuard server from WireGuard client via internet are forwared to local IP address of WireGuard server. +------------------------+ | [ WireGuard Server ] |172.16.100.1 (VPN IP) | dlp.srv.world +--------+ | |wg0 | +-----------+------------+ | enp1s0|10.0.0.30/24 | | | | Local Network | +------+-----+ | -------| Router#1 |---------------|----- +------+-----+ | | | Internet | Internet | | | +------+-----+ | -------| Router#2 |---------------|----- +------+-----+ | | Local Network | | | enp1s0|192.168.0.30/24 | +-----------+------------+ | | [ WireGuard Client ] |wg0 | | +--------+ | |172.16.100.5 (VPN IP) +------------------------+ |
[1] |
Transfer files or notify contents of [Private key for client] and [Public key for server] generated on WireGuard server to target Client computer. |
[2] | Install WireGuard. |
root@client:~# apt -y install wireguard-tools
|
[3] | Configure WireGuard. |
root@client:~#
umask 077
# create a new config # [wg0.conf] ⇒ [(VPN interface name).conf] # VPN interface name ⇒ any name you like root@client:~# vi /etc/wireguard/wg0.conf [Interface] # specify private key for client generated on WireGuard server PrivateKey = yA3wrfH/XHxhwdrOVE5hJO+byhRxCn8+TFLVF/67THE= # IP address for VPN interface Address = 172.16.100.5 [Peer] # specify public key for server generated on WireGuard server PublicKey = iLzFRDOYkUwGGyimnPlxPFsPqgbfFb3Mr8N9ylSpLzs= # IP addresses you allow to connect # on the example below, set WireGuard server's VPN IP address and real local network AllowedIPs = 172.16.100.1, 10.0.0.0/24 # specify server's global IP address:port # (acutually, example of IP below is for private range, replace to your own global IP) EndPoint = 172.29.10.100:51820 # start up VPN interface root@client:~# wg-quick up wg0 [#] ip link add wg0 type wireguard [#] wg setconf wg0 /dev/fd/63 [#] ip -4 address add 172.16.100.5 dev wg0 [#] ip link set mtu 1420 up dev wg0 [#] ip -4 route add 172.16.100.1/32 dev wg0 [#] ip -4 route add 10.0.0.0/24 dev wg0root@client:~# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: enp1s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000 link/ether 52:54:00:cd:ba:c3 brd ff:ff:ff:ff:ff:ff inet 192.168.0.30/24 brd 192.168.0.255 scope global enp1s0 valid_lft forever preferred_lft forever inet6 fe80::5054:ff:fecd:bac3/64 scope link valid_lft forever preferred_lft forever 3: wg0: <POINTOPOINT,NOARP,UP,LOWER_UP> mtu 1420 qdisc noqueue state UNKNOWN group default qlen 1000 link/none inet 172.16.100.5/32 scope global wg0 valid_lft forever preferred_lft forever # confirm connection state root@client:~# wg show interface: wg0 public key: ghh1dEqEWu9DjBGs2sUvofHff2syT0M1+iTK7ERyKxI= private key: (hidden) listening port: 55986 peer: iLzFRDOYkUwGGyimnPlxPFsPqgbfFb3Mr8N9ylSpLzs= endpoint: 172.29.10.100:51820 allowed ips: 172.16.100.1/32, 10.0.0.0/24 |
[4] | After VPN session is successfully established, Verify access to local network of WireGuard server. |
root@client:~# ping -c 3 10.0.0.30 PING 10.0.0.30 (10.0.0.30) 56(84) bytes of data. 64 bytes from 10.0.0.30: icmp_seq=1 ttl=64 time=1.43 ms 64 bytes from 10.0.0.30: icmp_seq=2 ttl=64 time=1.38 ms 64 bytes from 10.0.0.30: icmp_seq=3 ttl=64 time=1.32 ms --- 10.0.0.30 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2002ms rtt min/avg/max/mdev = 1.323/1.376/1.429/0.043 msroot@client:~# ping -c 3 10.0.0.10 PING 10.0.0.10 (10.0.0.10) 56(84) bytes of data. 64 bytes from 10.0.0.10: icmp_seq=1 ttl=63 time=1.63 ms 64 bytes from 10.0.0.10: icmp_seq=2 ttl=63 time=1.76 ms 64 bytes from 10.0.0.10: icmp_seq=3 ttl=63 time=1.61 ms --- 10.0.0.10 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2002ms rtt min/avg/max/mdev = 1.609/1.667/1.762/0.067 ms |
Sponsored Link |