Add 'wireguard.conf'

This commit is contained in:
zwnk 2020-02-05 01:59:57 +01:00
parent 92bf83a463
commit 509f6e4e55

50
wireguard.conf Normal file
View file

@ -0,0 +1,50 @@
# Server
[Interface]
Address = 10.8.0.1
ListenPort = 51820
PrivateKey = privserver
SaveConfig = false
# laptop start
[Peer]
PublicKey = client1
PresharedKey = sss
AllowedIPs = 10.8.0.3/32
# laptop end
# omv
[Peer]
PublicKey = client2
AllowedIPs = 10.8.0.4/32
# omv end
###################################################
# Client 1
[Interface]
PrivateKey = privcl1
Address = 10.8.0.3/32
MTU = 1280
[Peer]
PublicKey = pubserv
PresharedKey = sss
AllowedIPs = 10.8.0.0/24
Endpoint = xxx:51820
PersistentKeepalive = 25
##################################################
# Client 2
[Interface]
PrivateKey = privcl2
Address = 10.8.0.4/32
MTU = 1280
[Peer]
PublicKey = pubserv
AllowedIPs = 10.8.0.0/24
Endpoint = xxx:51820
PersistentKeepalive = 25
##################################################