Skip to content

Commit 1d3916e

Browse files
committed
Fixed rest missing values
1 parent 57752d2 commit 1d3916e

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

example-full/public-server1/setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apt update
66
apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
9-
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
9+
echo "net.ipv4.ip_forward = 1" >>/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

example-internet-browsing-vpn/server/setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apt update
66
apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
9-
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
9+
echo "net.ipv4.ip_forward = 1" >>/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

example-lan-briding/montreal/setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apt update
66
apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
9-
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
9+
echo "net.ipv4.ip_forward = 1" >>/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

example-lan-briding/vancouver/setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apt update
66
apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
9-
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
9+
echo "net.ipv4.ip_forward = 1" >>/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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ apt update
66
apt install wireguard
77

88
# to enable kernel relaying/forwarding ability on bounce servers
9-
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
9+
echo "net.ipv4.ip_forward = 1" >>/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

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ apt update
66
apt install wireguard
77

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

1313
# to add iptables forwarding rules on bounce servers

0 commit comments

Comments
 (0)