summaryrefslogtreecommitdiff
path: root/docs/commandscripting.rst
diff options
context:
space:
mode:
authorrebortg <github@ghlr.de>2019-04-03 21:58:58 +0200
committerrebortg <github@ghlr.de>2019-04-03 21:58:58 +0200
commitfdf235905c0fb13591078e9b0b065dacfdd801fc (patch)
treef5b89722937a57c099e696395c0b7e891046daba /docs/commandscripting.rst
parentb794545cd86097de62f79c83d55b5a60bc369d35 (diff)
downloadvyos-documentation-fdf235905c0fb13591078e9b0b065dacfdd801fc.tar.gz
vyos-documentation-fdf235905c0fb13591078e9b0b065dacfdd801fc.zip
add commandscripting docu
Diffstat (limited to 'docs/commandscripting.rst')
-rw-r--r--docs/commandscripting.rst51
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/commandscripting.rst b/docs/commandscripting.rst
new file mode 100644
index 00000000..918a51a6
--- /dev/null
+++ b/docs/commandscripting.rst
@@ -0,0 +1,51 @@
+.. _commandscripting:
+
+
+Command scripting
+=================
+
+VyOS supports executing configuration and operational commands non-interactively from shell scripts.
+
+To include VyOS-specific functions and aliases you need to ``source /opt/vyatta/etc/functions/script-template`` files at the top of your script.
+
+.. code-block:: sh
+
+ #!/bin/vbash
+ source /opt/vyatta/etc/functions/script-template
+
+ exit
+
+Run configuration commands
+--------------------------
+
+Configuration commands are executed just like from a normal config session.
+
+For example, if you want to disable a BGP peer on VRRP transition to backup:
+
+.. code-block:: sh
+
+ #!/bin/vbash
+ source /opt/vyatta/etc/functions/script-template
+
+ configure
+
+ set protocols bgp 65536 neighbor 192.168.2.1 shutdown
+
+ commit
+
+ exit
+
+
+Run operational commands
+------------------------
+
+Unlike a normal configuration sessions, all operational commands must be prepended with ``run``, even if you haven't created a session with configure.
+
+.. code-block:: sh
+
+ #!/bin/vbash
+ source /opt/vyatta/etc/functions/script-template
+
+ run show interfaces
+
+ exit \ No newline at end of file