You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c. Determine the Group IDs that are allowed to use ICMP:
149
168
150
169
```sh
151
170
sudo sysctl net.ipv4.ping_group_range
@@ -155,10 +174,16 @@ To ping an IP address behind Cloudflare Tunnel, your system must allow ICMP traf
155
174
net.ipv4.ping_group_range= 0 10000
156
175
```
157
176
158
-
3. Either add the user to a group within that range, or update the range to encompass a group the user is already in. To update `ping_group_range`:
177
+
d. Either add the user to a group within that range, or update the range to encompass a group the user is already in. To update `ping_group_range`:
159
178
160
179
```sh
161
180
echo 0 10001 | sudo tee /proc/sys/net/ipv4/ping_group_range
181
+
```
182
+
183
+
To make the change persist on reboot, update your `systcl` parameters:
184
+
185
+
```sh
186
+
echo "net.ipv4.ping_group_range = 0 10001" | sudo tee /etc/sysctl.d/99-cloudflared.conf
162
187
```
163
188
164
189
2. If you are running multiple network interfaces (for example, `eth0` and `eth1`), configure `cloudflared` to use the external Internet-facing interface:
0 commit comments