diff options
author | rebortg <github@ghlr.de> | 2019-04-07 21:33:40 +0200 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2019-04-07 21:33:40 +0200 |
commit | 3b4e992346e0c6f8d75f9d283086922e3348f0af (patch) | |
tree | 5ce3acaea6bd80d0236f2a07bbc16daf17a96db5 /docs/troubleshooting.rst | |
parent | c77c4df9d12bdd97557d2c9ef0200fa612cac8c6 (diff) | |
download | vyos-documentation-3b4e992346e0c6f8d75f9d283086922e3348f0af.tar.gz vyos-documentation-3b4e992346e0c6f8d75f9d283086922e3348f0af.zip |
add monitor command
Diffstat (limited to 'docs/troubleshooting.rst')
-rw-r--r-- | docs/troubleshooting.rst | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index 6c5d1ba5..04cb9d80 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -229,7 +229,31 @@ To take a look on the network bandwith between two nodes, the ``monitor bandwidt <h:h:h:h:h:h:h:h> +Monitor command +^^^^^^^^^^^^^^^ +The ``monitor command`` command allows you to repeatedly run a command to view a continuously refreshed output. +The command is run and output every 2 seconds, allowing you to monitor the output continuously without having to re-run the command. This can be useful to follow routing adjacency formation. + +.. code-block:: sh + + vyos@router:~$ monitor command "show interfaces" + +Will clear the screen and show you the output of ``show interfaces`` every 2 seconds. + +.. code-block:: sh + + Every 2.0s: /opt/vyatta/bin/vyatta-op-cmd-wrapper s... Sun Mar 26 02:49:46 2019 + + Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down + Interface IP Address S/L Description + --------- ---------- --- ----------- + eth0 192.168.1.1/24 u/u + eth0.5 198.51.100.4/24 u/u WAN + lo 127.0.0.1/8 u/u + ::1/128 + vti0 172.32.254.2/30 u/u + vti1 172.32.254.9/30 u/u Clear Command ------------- |