stuffy_stuff/wireguard.conf

50 lines
801 B
Text
Raw Normal View History

2020-02-05 01:59:57 +01:00
# 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
##################################################