Trying to set more than 2 DNS in the dns bootoption:
dns=1.1.1.1,2.2.2.2,3.3.3.3
expecting:
cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 1.1.1.1
nameserver 2.2.2.2
nameserver 3.3.3.3
Current result:
cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 1.1.1.1,2.2.2.2
nameserver 2.2.2.2,3.3.3.3
|