diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-07-01 09:23:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-01 09:23:21 +0200 |
commit | d3685eaa295ecad807b173f805f0749a1fdda805 (patch) | |
tree | e29926d47b282c842b5c550451179f69cf2c3b50 | |
parent | bdc62f6cc0c3fe7386eb535a90df61a4f852e640 (diff) | |
parent | ccdfa9fec150a409818f6f2a2cf4d5099de37b1b (diff) | |
download | vyos-documentation-d3685eaa295ecad807b173f805f0749a1fdda805.tar.gz vyos-documentation-d3685eaa295ecad807b173f805f0749a1fdda805.zip |
Merge pull request #1496 from srividya0208/openvpn-option
openvpn: edit of the openvpn-options
-rw-r--r-- | docs/configuration/interfaces/openvpn.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/configuration/interfaces/openvpn.rst b/docs/configuration/interfaces/openvpn.rst index f51dfa94..fb85f4bf 100644 --- a/docs/configuration/interfaces/openvpn.rst +++ b/docs/configuration/interfaces/openvpn.rst @@ -637,17 +637,23 @@ benefit from it (see :ref:`issues_features`). If you are a hacker or want to try on your own we support passing raw OpenVPN options to OpenVPN. -.. cfgcmd:: set interfaces openvpn vtun10 openvpn-option 'persistent-key' +.. cfgcmd:: set interfaces openvpn vtun10 openvpn-option 'persist-key' -Will add ``persistent-key`` at the end of the generated OpenVPN configuration. +Will add ``persist-key`` to the generated OpenVPN configuration. Please use this only as last resort - things might break and OpenVPN won't start if you pass invalid options/syntax. .. cfgcmd:: set interfaces openvpn vtun10 openvpn-option - 'push "keepalive 1 10"' + 'push keepalive 10 60' Will add ``push "keepalive 1 10"`` to the generated OpenVPN config file. +.. cfgcmd:: set interfaces openvpn vtun10 openvpn-option + 'route-up "/config/auth/tun_up.sh arg1"' + +Will add ``route-up "/config/auth/tun_up.sh arg1"`` to the generated OpenVPN +config file. The path and arguments need to be single- or double-quoted. + .. note:: Sometimes option lines in the generated OpenVPN configuration require quotes. This is done through a hack on our config generator. You can pass quotes using the ``"`` statement. |