diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-11-30 14:10:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-30 14:10:13 +0100 |
commit | ce5c2f4c868131f6a936f9aa8f3def1c464302e4 (patch) | |
tree | 755bdc2ce3f6dac1e2b0ff9971f335734947c5d6 /docs/configuration-overview.rst | |
parent | 9504d78294c5bb89ffcca70fa687bbaed7177c42 (diff) | |
parent | dfc75fe5faa219fb31f43735c0b09c372a6699f2 (diff) | |
download | vyos-documentation-ce5c2f4c868131f6a936f9aa8f3def1c464302e4.tar.gz vyos-documentation-ce5c2f4c868131f6a936f9aa8f3def1c464302e4.zip |
Merge pull request #155 from rebortg/reserverd_addressspace
migrate to reserved address space
Diffstat (limited to 'docs/configuration-overview.rst')
-rw-r--r-- | docs/configuration-overview.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/configuration-overview.rst b/docs/configuration-overview.rst index c4fc36e0..2c7a086e 100644 --- a/docs/configuration-overview.rst +++ b/docs/configuration-overview.rst @@ -17,7 +17,7 @@ using the show configuration command. interfaces { ethernet eth0 { address dhcp - hw-id 00:0c:29:44:3b:0f + hw-id 00:53:dd:44:3b:0f } loopback lo { } @@ -78,7 +78,7 @@ running configuration. vyos@vyos:~$ show configuration commands set interfaces ethernet eth0 address 'dhcp' - set interfaces ethernet eth0 hw-id '00:0c:29:44:3b:0f' + set interfaces ethernet eth0 hw-id '00:53:dd:44:3b:0f' set interfaces loopback 'lo' set service ssh port '22' set system config-management commit-revisions '20' @@ -170,7 +170,7 @@ replacements and ``-`` for deletions. ethernet eth0 { description MY_OLD_DESCRIPTION disable - hw-id 52:54:00:0e:82:d9 + hw-id 00:53:dd:44:3b:03 } loopback lo { } @@ -186,7 +186,7 @@ replacements and ``-`` for deletions. + address dhcp > description MY_NEW_DESCRIPTION - disable - hw-id 52:54:00:0e:82:d9 + hw-id 00:53:dd:44:3b:03 } loopback lo { } @@ -198,7 +198,7 @@ using ``show | commands`` vyos@vyos# show interfaces ethernet eth0 | commands set address dhcp - set hw-id 00:0c:29:44:3b:0f + set hw-id 00:53:ad:44:3b:03 These commands are also relative to the level you are inside and only relevant configuration blocks will be displayed when entering a sub-level. @@ -208,7 +208,7 @@ configuration blocks will be displayed when entering a sub-level. [edit interfaces ethernet eth0] vyos@vyos# show address dhcp - hw-id 00:0c:29:44:3b:0f + hw-id 00:53:ad:44:3b:03 Exiting from the configuration mode is done via the ``exit`` command from the top level, executing `exit` from within a sub-level takes you back to the top |