Skip to content

Commit 57752d2

Browse files
authored
Merge pull request #71 from ss-o/patch-1
Missing proxy ARP value (1 – enabled, 0 – disabled)
2 parents 2a20e31 + e0b8b44 commit 57752d2

File tree

1 file changed

+2
-2
lines changed
  • example-simple-server-to-server/server1

1 file changed

+2
-2
lines changed

example-simple-server-to-server/server1/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
99
echo "net.ipv4.ip_forward = 1" >> /etc/sysctl.conf
10-
echo "net.ipv4.conf.all.proxy_arp" >> /etc/sysctl.conf
11-
sudo sysctl -p /etc/sysctl.conf
10+
echo "net.ipv4.conf.all.proxy_arp = 1" >> /etc/sysctl.conf
11+
sysctl -p /etc/sysctl.conf
1212

1313
# to add iptables forwarding rules on bounce servers
1414
iptables -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT

0 commit comments

Comments
 (0)