I have some root-owned podman contanier that is started with the following command: podman run -d --network podnet --mac-address="52:54:00:e0:0a:ea" -p 53:53 --name dns dns.
Which is giving the following error:
# podman run -d --network podnet --mac-address="52:54:00:e0:0a:ea" -p 53:53 --name dns dns
Error: cannot listen on the TCP port: listen tcp4 :53: bind: address already in use
Note that sudo podman network inspect podnet
[
{
"name": "podnet",
"id": "<censored>",
"driver": "macvlan",
"network_interface": "bridge0",
"created": "2024-02-06T14:00:00Z",
"ipv6_enabled": false,
"internal": false,
"dns_enabled": false,
"options": {
"mode": "passthru"
},
"ipam_options": {
"driver": "dhcp"
}
}
]