We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if you only change the DNS Servers order. from this
"ipv4_config": { "type": "static", "static_config": { "address": "10.1.1.1/24" }, "dhcp_config": null, "dns_v4_config": { "name_servers": [ "10.2.1.2", "10.5.1.2" ] }, "routes": null }
to this
"ipv4_config": { "type": "static", "static_config": { "address": "10.1.1.1/24" }, "dhcp_config": null, "dns_v4_config": { "name_servers": [ "10.5.1.2", "10.2.1.2" ] }, "routes": null }
it will not update the dns server order
update the interface
The text was updated successfully, but these errors were encountered:
tested it with v4.18 and 4.19 I had to add a DNS Server and remove it again to update it
Sorry, something went wrong.
No branches or pull requests
Describe the problem
if you only change the DNS Servers order.
from this
to this
it will not update the dns server order
Suggested fix
update the interface
The text was updated successfully, but these errors were encountered: