remove `wireguard` config
parent
da292d7446
commit
2839b2640a
|
@ -1,15 +0,0 @@
|
||||||
quickstart
|
|
||||||
|
|
||||||
sudo apt install wireguard-tools
|
|
||||||
|
|
||||||
|
|
||||||
serverside configuration
|
|
||||||
|
|
||||||
sudo sysctl -w net.ipv4.ip_forward=1
|
|
||||||
sudo sed -i "s/^#net.ipv4.ip_forward = 1/net.ipv4.ip_forward = 1/" /etc/sysctl.conf
|
|
||||||
|
|
||||||
|
|
||||||
generating keys
|
|
||||||
|
|
||||||
wg genkey > client.key
|
|
||||||
wg pubkey < client.key > client.pub
|
|
|
@ -1,9 +0,0 @@
|
||||||
[Interface]
|
|
||||||
Address = 10.200.200.2/32
|
|
||||||
PrivateKey = <client private key>
|
|
||||||
|
|
||||||
[Peer]
|
|
||||||
PublicKey = <server public key>
|
|
||||||
Endpoint = <server ip>:1194
|
|
||||||
AllowedIPs = 0.0.0.0/0, ::/0
|
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
[Interface]
|
|
||||||
Address = 10.200.200.1/24
|
|
||||||
ListenPort = 1194
|
|
||||||
PrivateKey = <server private key>
|
|
||||||
|
|
||||||
PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o <interface name> -j MASQUERADE
|
|
||||||
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o i -j ACCEPT; iptables -t nat -D POSTROUTING -o <interface name> -j MASQUERADE
|
|
||||||
|
|
||||||
[Peer]
|
|
||||||
PublicKey = <client public key>
|
|
||||||
AllowedIPs = 10.200.200.2/32
|
|
||||||
|
|
||||||
[Peer]
|
|
||||||
PublicKey = <client public key>
|
|
||||||
AllowedIPs = 10.200.200.3/32
|
|
Loading…
Reference in New Issue