diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-11-18 17:55:43 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-11-18 17:59:10 +0100 |
commit | e1539b6fffaf10863e41a73a380f9de40f6aece6 (patch) | |
tree | aadf7dbd663cbf54b21ad8ec500defbabd1bec93 /data/templates | |
parent | 24d9a9261fca4a37085088761079cce9b5157c34 (diff) | |
download | vyos-1x-e1539b6fffaf10863e41a73a380f9de40f6aece6.tar.gz vyos-1x-e1539b6fffaf10863e41a73a380f9de40f6aece6.zip |
dhcp: T4008: change client retry interval form 300 -> 60 seconds
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/dhcp-client/ipv4.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/templates/dhcp-client/ipv4.tmpl b/data/templates/dhcp-client/ipv4.tmpl index c934b7cdb..fcc2846a5 100644 --- a/data/templates/dhcp-client/ipv4.tmpl +++ b/data/templates/dhcp-client/ipv4.tmpl @@ -2,7 +2,8 @@ option rfc3442-classless-static-routes code 121 = array of unsigned integer 8; timeout 60; -retry 300; +retry 60; +initial-interval 2; interface "{{ ifname }}" { send host-name "{{ dhcp_options.host_name }}"; |