With set system domain-name foo.net we should get a line search foo.net in /etc/resolv.conf
Description
Description
Details
Details
- Version
- VyOS 1.2.0-EPA2
- Is it a breaking change?
- Unspecified (possibly destroys the router)
- Issue type
- Bug (incorrect behavior)
Related Objects
Related Objects
Event Timeline
Comment Actions
Something seems to be totally off with set system domain-name and set system domain-search domain
Setting both gives us:
[ system domain-search domain ] System configuration error. Both 'domain-name' and 'domain-search' are specified, but only one of these mutually exclusive parameters is allowed.
But its valid according to the Linux resolv.conf(5) man page.
https://linux.die.net/man/5/resolv.conf
To be changed bahavior:
set system domain-name should result in an /etc/resolv.conf entry like:
domain foo.com search foo.com
set system domain-search domain bar.com should result in an /etc/resolv.conf entry like:
search bar.com
When both are present, the file should look like:
domain foo.com search foo.com bar.com
Taking the limit into account
The search list is currently limited to six domains with a total of 256 characters.