18 lines
989 B
Plaintext
18 lines
989 B
Plaintext
[Interface]
|
|
PrivateKey = {{ wireguard_server_private_key }}
|
|
Address = 10.10.1.1/24
|
|
ListenPort = 41194
|
|
PostUp = sysctl -w net.ipv4.ip_forward=1
|
|
PreUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 25 -j DNAT --to-destination 10.10.1.2:25
|
|
PostDown = iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 25 -j DNAT --to-destination 10.10.1.2:25
|
|
PreUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 993 -j DNAT --to-destination 10.10.1.2:993
|
|
PostDown = iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 993 -j DNAT --to-destination 10.10.1.2:993
|
|
PreUp = iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 587 -j DNAT --to-destination 10.10.1.2:587
|
|
PostDown = iptables -t nat -D PREROUTING -i eth0 -p tcp --dport 587 -j DNAT --to-destination 10.10.1.2:587
|
|
|
|
PreUp = iptables -t nat -A POSTROUTING -o wg0 -j MASQUERADE
|
|
PostDown = iptables -t nat -D POSTROUTING -o wg0 -j MASQUERADE
|
|
|
|
[Peer]
|
|
PublicKey = oI69uWkbkwtpuIYxDNGmzg4nRjY1BIZFVFjZwguIvwE=
|
|
AllowedIPs = 10.10.1.2/32 |