@e-coin , @extraextra
why are the values in /etc/resolv.conf
ignored by the system?
It’s not a control issue
Yes, you’re right. Everything is working fine today, i must have made a mistake and confused in my own hosts. /etc/resolv.conf
works.
I’m still investigating the system. I am interested in the Kicksecure standard DNS address 10.139.1.1
.
I use Kicksecure for KVM with CLI. Network manager is disabled, I use /etc/network/interfaces
and /etc/resolv.conf
files to configure network settings. I don’t use DHCP server and a DHCP local client.
[user ~]% sudo systemctl is-active NetworkManager
inactive
[user ~]% pgrep -af dhc
zsh: exit 1 pgrep -af dhc
The resolv.conf
file contains standard Kicksecure DNS servers. These aren’t my servers, this is standard OS file:
[user ~]% cat /etc/resolv.conf
nameserver 10.139.1.1
nameserver 10.139.1.2
These IP addresses are likely part of a private network, as they fall within the range of private IP addresses defined by the Internet Engineering Task Force (IETF). Private IP addresses are not routable on the public internet and are typically used within local networks.
[user ~]% sudo tcpdump -i any port 53
tcpdump: data link type LINUX_SLL2
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
15:06:30.294506 vmbr4 Out IP 192.168.4.50.45050 > 10.139.1.1.domain: 16119+ A? google.us. (27)
15:06:30.536671 vmbr4 In IP 10.139.1.1.domain > 192.168.4.50.45050: 45045 1/0/1 AAAA 2a00:1450:4017:810::2004 (66)
Private nameserver IP 10.139.1.1
, 10.139.1.2
is not from my network, that is standard Kicksecure address, but somehow they works.
Maybe the answer is in wiki - DNS Security - Kicksecure, but I didn’t see it or understand it.