diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-15 21:08:49 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-07-15 21:08:55 +0200 |
commit | 9f07add122009d8e8c4fb62c620aa45f3ab07dbb (patch) | |
tree | a537961725cca549b01693c54945f53e3756aa59 | |
parent | 8b7df2b1f202216b494df986234a498155df3357 (diff) | |
download | vyos-documentation-9f07add122009d8e8c4fb62c620aa45f3ab07dbb.tar.gz vyos-documentation-9f07add122009d8e8c4fb62c620aa45f3ab07dbb.zip |
system-options: add initial documentation
-rw-r--r-- | docs/system/advanced-index.rst | 1 | ||||
-rw-r--r-- | docs/system/options.rst | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/docs/system/advanced-index.rst b/docs/system/advanced-index.rst index 9241821b..b6b8d091 100644 --- a/docs/system/advanced-index.rst +++ b/docs/system/advanced-index.rst @@ -10,6 +10,7 @@ Advanced System Tweaks eventhandler flow-accounting ntp + options proxy serial-console syslog diff --git a/docs/system/options.rst b/docs/system/options.rst new file mode 100644 index 00000000..82ad4801 --- /dev/null +++ b/docs/system/options.rst @@ -0,0 +1,39 @@ +.. _system_options: + +####### +Options +####### + +This chapter describe the possibilities of advanced system behavior. + +General +####### + +.. cfgcmd:: set system options beep-if-fully-booted + + Send an audible beep to the system speaker when system is ready. + +.. cfgcmd:: set system options ctrl-alt-del-action [ ignore | reboot | poweroff ] + + Action which will be run once the ctrl-alt-del keystroke is received. + +.. cfgcmd:: set system options reboot-on-panic + + Automatically teboot system on kernel panic after 60 seconds. + +HTTP client +########### + +.. cfgcmd:: set system options http-client source-address <address> + + Several commands utilize curl to initiate transfers. Configure the local + source IPv4/IPv6 address used for all CURL operations. + +.. cfgcmd:: set system options http-client source-interface <interface> + + Several commands utilize curl to initiate transfers. Configure the local + source interface used for all CURL operations. + +.. note:: `source-address` and `source-interface` can not be used at the same time. + + |