summaryrefslogtreecommitdiff
path: root/docs/routing/arp.rst
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-06-20 12:12:23 +0200
committerChristian Poessinger <christian@poessinger.com>2019-06-20 12:47:56 +0200
commit41d2d62e6948f0978f09b7350b1897168efec9f2 (patch)
tree3fb5f4760f083d7db86eb50dc18457d18b032bc5 /docs/routing/arp.rst
parent57e4b8d6641a4cba327e5da55b3df06ef9060f2c (diff)
downloadvyos-documentation-41d2d62e6948f0978f09b7350b1897168efec9f2.tar.gz
vyos-documentation-41d2d62e6948f0978f09b7350b1897168efec9f2.zip
routing: split routing protocols into individual files
Diffstat (limited to 'docs/routing/arp.rst')
-rw-r--r--docs/routing/arp.rst34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/routing/arp.rst b/docs/routing/arp.rst
new file mode 100644
index 00000000..ceceebf9
--- /dev/null
+++ b/docs/routing/arp.rst
@@ -0,0 +1,34 @@
+.. _routing-arp:
+
+ARP
+---
+
+To manipulate or display ARP_ table entries, the following commands are implemented.
+
+adding a static arp entry
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+.. code-block:: sh
+
+ set protocols static arp 10.1.1.100 hwaddr 08:00:27:de:23:aa
+ commit
+
+display arp table entries
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+.. code-block:: sh
+
+ show protocols static arp
+
+ Address HWtype HWaddress Flags Mask Iface
+ 10.1.1.1 ether 08:00:27:de:23:2e C eth1
+ 10.1.1.100 ether 08:00:27:de:23:aa CM eth1
+
+.. code-block:: sh
+
+ show protocols static arp interface eth1
+ Address HWtype HWaddress Flags Mask Iface
+ 10.1.1.1 ether 08:00:27:de:23:2e C eth1
+ 10.1.1.100 ether 08:00:27:de:23:aa CM eth1
+
+.. _ARP: https://en.wikipedia.org/wiki/Address_Resolution_Protocol