For a TurrisOS Omnia see WebDAV with Lighttpd on Turris Omnia. Those instructions are slightly different.
This instruction moved to OpenWrt Wiki WebDAV Share
For a TurrisOS Omnia see WebDAV with Lighttpd on Turris Omnia. Those instructions are slightly different.
This instruction moved to OpenWrt Wiki WebDAV Share
This content has moved.
Please go to bagder/TRRprefs for the current incarnation of the docs, and please help us out polish and maintain this documentation!
| Important: you should use values at around 95% of speedtest or 85% of ISP advertised speed. | |
| # using luci: | |
| opkg update; opkg install luci-app-sqm | |
| # without luci: | |
| opkg update | |
| opkg install sqm-scripts |
| server: | |
| do-not-query-localhost: no | |
| domain-insecure: "0.168.192.in-addr.arpa" | |
| domain-insecure: "example.local" | |
| local-zone: "168.192.in-addr.arpa." nodefault | |
| private-address: 10.0.0.0/8 | |
| private-address: 169.254.0.0/16 | |
| private-address: 172.16.0.0/12 | |
| private-address: 192.168.0.0/16 | |
| private-address: fd00::/8 |
dhcp-script=/etc/detect_new_device.sh
Reference:
| #!/bin/sh +ux | |
| # We set the sh +ux flags so that we error on undefined variables and error on bad commands | |
| help() { | |
| echo >&2 "$0 [-f] [-p] [-q] [<priv_key_file>] [<key_type>] [<key_comment>]" | |
| echo >&2 | |
| echo >&2 "-q / --quiet to silent all output (except -p if passed)" | |
| echo >&2 "-p / --pubkey to output public key after generation" | |
| echo >&2 "-f / --force to force replacing existing key" | |
| echo >&2 |