diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-11 07:28:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 07:28:54 +0100 |
commit | 129e57debfe154fa69c9260ae396c60ebabadada (patch) | |
tree | 34d915b08ba58c802b5361881b782fd3e82962f5 /docs/installation/install.rst | |
parent | e12d807e376dbcc14381a2027e786e00ee46331b (diff) | |
parent | 3864aa6aafd592e5d8b93dbede9004ccbf001e88 (diff) | |
download | vyos-documentation-129e57debfe154fa69c9260ae396c60ebabadada.tar.gz vyos-documentation-129e57debfe154fa69c9260ae396c60ebabadada.zip |
Merge pull request #1231 from sarthurdev/kea
dhcp: T3316: Update documentation for Kea implementation
Diffstat (limited to 'docs/installation/install.rst')
-rw-r--r-- | docs/installation/install.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/installation/install.rst b/docs/installation/install.rst index 2bbce8ee..17bccfbd 100644 --- a/docs/installation/install.rst +++ b/docs/installation/install.rst @@ -458,13 +458,16 @@ In this example we configured an existent VyOS as the DHCP server: vyos@vyos# show service dhcp-server shared-network-name mydhcp { subnet 192.168.1.0/24 { - bootfile-name pxelinux.0 - bootfile-server 192.168.1.50 - default-router 192.168.1.50 + option { + bootfile-name pxelinux.0 + bootfile-server 192.168.1.50 + default-router 192.168.1.50 + } range 0 { start 192.168.1.70 stop 192.168.1.100 } + subnet-id 1 } } |