Yes, the second rack controller was installed with:
maas init rack –maas-url –secret XXXXX
OK, maas-agent is actually listening on udp/tcp 53. I wasn’t looking for another process on 53, just looking for bind9 before…
$sudo ss -alpn | grep 53
u_str LISTEN 0 4096 /run/lvm/lvmpolld.socket 5365 * 0 users:((“systemd”,pid=1,fd=111))
u_str LISTEN 0 4096 /run/systemd/fsck.progress 5368 * 0 users:((“systemd”,pid=1,fd=117))
u_str LISTEN 0 4096 @/org/kernel/linux/storage/multipathd 5367 * 0 users:((“multipathd”,pid=528230,fd=3),(“systemd”,pid=1,fd=126))
udp UNCONN 0 0 192.168.0.5:53 0.0.0.0:* users:((“maas-agent”,pid=1142,fd=30))
udp UNCONN 0 0 192.168.240.5:53 0.0.0.0:* users:((“maas-agent”,pid=1142,fd=28))
udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:((“systemd-resolve”,pid=635,fd=16))
udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* users:((“systemd-resolve”,pid=635,fd=14))
tcp LISTEN 0 4096 192.168.240.5:53 0.0.0.0:* users:((“maas-agent”,pid=1142,fd=29))
tcp LISTEN 0 4096 192.168.0.5:53 0.0.0.0:* users:((“maas-agent”,pid=1142,fd=31))
tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:((“systemd-resolve”,pid=635,fd=17))
tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:((“sshd”,pid=11136,fd=3),(“systemd”,pid=1,fd=153))
tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:((“systemd-resolve”,pid=635,fd=15))
But it’s not responding to anything on the interface IP:
$ dig -t A www.google.c @192.168.0.5
;; communications error to 192.168.0.5#53: timed out
;; communications error to 192.168.0.5#53: timed out
;; communications error to 192.168.0.5#53: timed out
; <<>> DiG 9.18.39-0ubuntu0.24.04.2-Ubuntu <<>> -t A www.google.c @192.168.0.5
;; global options: +cmd
;; no servers could be reached
But it is responding on the .54 loopback:
dig -t A www.google.c @127.0.54
; <<>> DiG 9.18.39-0ubuntu0.24.04.2-Ubuntu <<>> -t A www.google.c @127.0.54
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 19561
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1
;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 65494
; COOKIE: b7227167f0987ab00100000069a5813e4bddf982b249939c (good)
;; QUESTION SECTION:
;www.google.c. IN A
;; ANSWER SECTION:
www.google.c. 296 IN A 142.251.40.228
;; Query time: 2 msec
;; SERVER: 127.0.0.54#53(127.0.54) (UDP)
;; WHEN: Mon Mar 02 12:23:26 UTC 2026
;; MSG SIZE rcvd: 87
So, this looks like a filtering issue. iptables/nftables are not deployed. Any ideas?