Skip to content

Commit 35cb0f5

Browse files
paigecalvertajp-io
andauthored
Update docs/vendor/embedded-troubleshooting.mdx
Co-authored-by: Alex Parker <[email protected]>
1 parent 00fb629 commit 35cb0f5

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

docs/vendor/embedded-troubleshooting.mdx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -172,16 +172,11 @@ Reasons can include:
172172
1. Use sysctl to set the kernel parameters to the correct values:
173173

174174
```bash
175-
sysctl -w net.ipv4.conf.default.arp_filter=0
176-
sysctl -w net.ipv4.conf.default.arp_ignore=0
177-
sysctl -w net.ipv4.ip_forward=1
175+
echo "net.ipv4.conf.default.arp_filter=0" >> /etc/sysctl.d/99-embedded-cluster.conf
176+
echo "net.ipv4.conf.default.arp_ignore=0" >> /etc/sysctl.d/99-embedded-cluster.conf
177+
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.d/99-embedded-cluster.conf
178178

179-
180-
echo "net.ipv4.conf.default.arp_filter=0" >> /etc/sysctl.conf
181-
echo "net.ipv4.conf.default.arp_ignore=0" >> /etc/sysctl.conf
182-
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf
183-
184-
sysctl -p
179+
sysctl --system
185180
```
186181

187182
1. Reset and reboot the installation:

0 commit comments

Comments
 (0)