Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Added all supported paramenters of WireGuard backend #297 #311

Merged
merged 3 commits into from
Aug 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[req-changes] Updated WireGuard MTU
pandafy committed Aug 23, 2024
commit 85db9475afbbcbe8ea92e8d2538990e683c1085f
2 changes: 1 addition & 1 deletion docs/source/backends/wireguard.rst
Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ key name type default allowed values
``port`` integer ``51820`` integers
``private_key`` string base64-encoded private key
``dns`` list ``[]`` list of strings containing DNS servers
``mtu`` integer ``1280`` MTU set on the interface
``mtu`` integer ``1420`` Interface MTU, set to 1280 if using IPv6
``table`` string ``auto`` Controls the routing table to which routes are
added
``pre_up`` string Script snippet which will be executed before
3 changes: 2 additions & 1 deletion netjsonconfig/backends/wireguard/schema.py
Original file line number Diff line number Diff line change
@@ -59,7 +59,8 @@
"title": "MTU",
"minimum": 68,
"propertyOrder": 5,
"default": 1280,
"default": 1420,
"description": ("Interface MTU, set to 1280 if using IPv6."),
},
"table": {
"title": "Table",