diff options
author | Kim <kim.sidney@gmail.com> | 2019-03-05 21:37:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 21:37:25 +0100 |
commit | f4456860eda554395ff96dfd66946722611bae4e (patch) | |
tree | 35e7d2dc808c048450b43cfc685ee82eee823197 /docs/interfaces/vti.rst | |
parent | 56b851b9fd9e9637545adedc85342f2a65f922c5 (diff) | |
parent | e6fa2569332c15a61f3c99ba0fe639696836d3bd (diff) | |
download | vyos-documentation-f4456860eda554395ff96dfd66946722611bae4e.tar.gz vyos-documentation-f4456860eda554395ff96dfd66946722611bae4e.zip |
Merge pull request #10 from kmpm/features/split-interfaces
Split network-interfaces into multiple files
Diffstat (limited to 'docs/interfaces/vti.rst')
-rw-r--r-- | docs/interfaces/vti.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/interfaces/vti.rst b/docs/interfaces/vti.rst new file mode 100644 index 00000000..bb97e323 --- /dev/null +++ b/docs/interfaces/vti.rst @@ -0,0 +1,22 @@ +.. _interfaces-vti: + +Tunnel Interfaces (vti) +----------------------- + +Set Virtual Tunnel interface + +.. code-block:: sh + + set interfaces vti vti0 address 192.168.2.249/30 + set interfaces vti vti0 address 2001:db8:2::249/64 + +Results in: + +.. code-block:: sh + + vyos@vyos# show interfaces vti + vti vti0 { + address 192.168.2.249/30 + address 2001:db8:2::249/64 + description "Description" + } |