fix hardcoded device name

This commit is contained in:
vvzvlad 2022-08-22 03:25:47 +03:00
parent 3966fbbddf
commit 13068adddf
2 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
[Interface] [Interface]
Address=10.20.30.2/32 Address=10.20.30.2/32
PrivateKey=6CCRP42JiTObyf64Vo0BcqsX6vptsqOU+MKUslUun28= PrivateKey=6CCRP42JiTObyf64Vo0BcqsX6vptsqOU+MKUslUun28=
PostUp = iptables -t nat -A POSTROUTING -o ens2 -j MASQUERADE PostUp = iptables -t nat -A POSTROUTING -o `ip link show | awk -F ': ' '/state UP/ {print $2}'` -j MASQUERADE
PostDown = iptables -t nat -D POSTROUTING -o ens2 -j MASQUERADE PostDown = iptables -t nat -D POSTROUTING -o `ip link show | awk -F ': ' '/state UP/ {print $2}'` -j MASQUERADE
#internal node #internal node
[Peer] [Peer]

View File

@ -2,10 +2,10 @@
Address = 10.20.30.1/32 Address = 10.20.30.1/32
ListenPort = 17968 ListenPort = 17968
PrivateKey = kOd3FVBggwpjD3AlZKXUxNTzJT0+f3MJdUdR8n6ZBn8= PrivateKey = kOd3FVBggwpjD3AlZKXUxNTzJT0+f3MJdUdR8n6ZBn8=
PostUp = iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE PostUp = iptables -t nat -A POSTROUTING -o `ip link show | awk -F ': ' '/state UP/ {print $2}'` -j MASQUERADE
PostUp = ip rule add from 195.2.79.13 table main PostUp = ip rule add from `ip route | awk '/default/ {print $3; exit}'` table main
PostDown = iptables -t nat -D POSTROUTING -o ens3 -j MASQUERADE PostDown = iptables -t nat -D POSTROUTING -o `ip link show | awk -F ': ' '/state UP/ {print $2}'` -j MASQUERADE
PostDown = ip rule del from 195.2.79.13 table main PostDown = ip rule del from `ip route | awk '/default/ {print $3; exit}'` table main
#external node #external node
[Peer] [Peer]