forked from unitoo/configurations
feat: add some wireguard client example config
This commit is contained in:
parent
ff89f858e9
commit
5bb9fd292c
1 changed files with 13 additions and 0 deletions
13
wireguard/client/etc/wireguard/wg0.conf
Normal file
13
wireguard/client/etc/wireguard/wg0.conf
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Interface]
|
||||
Address=<local_address>
|
||||
PrivateKey = `wg genkey`
|
||||
ListenPort = <listen_port>
|
||||
|
||||
[Peer]
|
||||
PublicKey = <server_public_key>
|
||||
Endpoint = <server_public_ip>:<server_port>
|
||||
AllowedIPs = <subnet>/24
|
||||
|
||||
# This is for if you're behind a NAT and
|
||||
# want the connection to be kept alive.
|
||||
PersistentKeepalive = 25
|
Loading…
Reference in a new issue