mirror of
https://github.com/hassio-addons/addon-wireguard.git
synced 2025-05-04 19:01:31 +00:00
Address markdownlint warning
This commit is contained in:
parent
be41ae02a5
commit
c2d586ff53
1 changed files with 10 additions and 2 deletions
|
@ -165,7 +165,11 @@ will disable that behavior.
|
|||
|
||||
By default it executes the following:
|
||||
|
||||
`iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE`
|
||||
```bash
|
||||
iptables -A FORWARD -i %i -j ACCEPT
|
||||
iptables -A FORWARD -o %i -j ACCEPT
|
||||
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
|
||||
```
|
||||
|
||||
### Option: `server.post_down` _(optional)_
|
||||
|
||||
|
@ -178,7 +182,11 @@ will disable that behavior.
|
|||
|
||||
By default it executes the following:
|
||||
|
||||
`iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE`
|
||||
```bash
|
||||
iptables -D FORWARD -i %i -j ACCEPT
|
||||
iptables -D FORWARD -o %i -j ACCEPT
|
||||
iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
|
||||
```
|
||||
|
||||
### Option: `server.mtu` _(optional)_
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue