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:52 +0100 | 
| commit | be21deb31c3cdb9f221fb3765be13093e40407d8 (patch) | |
| tree | 2dda23b47d0e528dae83fcad836e9f7d29c6b798 | |
| parent | b6745f513c7184476c9417e7d8a242303437edb5 (diff) | |
| download | vyos-1x-be21deb31c3cdb9f221fb3765be13093e40407d8.tar.gz vyos-1x-be21deb31c3cdb9f221fb3765be13093e40407d8.zip | |
dhcp: T4008: change client retry interval form 300 -> 60 seconds
(cherry picked from commit e1539b6fffaf10863e41a73a380f9de40f6aece6)
| -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 11e961166..b3e74c22b 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 }}"; | 
