diff options
author | rebortg <github@ghlr.de> | 2020-11-30 21:15:16 +0100 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2020-11-30 21:15:16 +0100 |
commit | b1cb71c71935ad6b0a7d9effe8f4dc4467de2175 (patch) | |
tree | 65ec7498be8016531310e0b8c55bf6de070ffced /docs/configuration/system/default-route.rst | |
parent | 8943fc9f877cbee3301a8261ddd27b4b1f15f174 (diff) | |
download | vyos-documentation-b1cb71c71935ad6b0a7d9effe8f4dc4467de2175.tar.gz vyos-documentation-b1cb71c71935ad6b0a7d9effe8f4dc4467de2175.zip |
arrange: system configration
Diffstat (limited to 'docs/configuration/system/default-route.rst')
-rw-r--r-- | docs/configuration/system/default-route.rst | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/configuration/system/default-route.rst b/docs/configuration/system/default-route.rst new file mode 100644 index 00000000..27c74188 --- /dev/null +++ b/docs/configuration/system/default-route.rst @@ -0,0 +1,40 @@ +.. _default_gateway: + +##################### +Default Gateway/Route +##################### + +In the past (VyOS 1.1) used a gateway-address configured under the system tree +(:cfgcmd:`set system gateway-address <address>`), this is no longer supported +and existing configurations are migrated to the new CLI command. + +Configuration +============= + +.. cfgcmd:: set protocols static route 0.0.0.0/0 next-hop <address> + + Specify static route into the routing table sending all non local traffic + to the nexthop address `<address>`. + + +.. cfgcmd:: delete protocols static route 0.0.0.0/0 + + Delete default route from the system. + +Operation +========= + +.. opcmd:: show ip route 0.0.0.0 + + Show routing table entry for the default route. + + .. code-block:: none + + vyos@vyos:~$ show ip route 0.0.0.0 + Routing entry for 0.0.0.0/0 + Known via "static", distance 10, metric 0, best + Last update 09:46:30 ago + * 172.18.201.254, via eth0.201 + +.. seealso:: Configuration of :ref:`static-routing` + |