Hello.
I'm starting this thread after some research on the board, but I can't find a thread which is exactly my UNRAID behaviour.
I thought I found the solution with this thread but no luck
My problem is that I want to run my docker containers which have to use not modifiable port (like by example AdGuard Home : DNS resolution) in my network with its own IP to avoid port conflicts.
I only have one network. I don't have VLAN isolation.
It was working fine until last october, after an update, my br0 dockers lost their connection with the network. They can be reached (they answer to ping, and GUI is reachable) but they cannot ping other machines nor internet.
I would like to know what's wrong, what I miss, and how I can restore this config.
Many thanks
Ping tests :
OUTBOUND
- ❌Container to google.com : No ping
- ❌Container to VM : No ping
- ❌Container to Unraid : No ping
- ❌Container to Router : No ping
- ✔️Container to 127.0.0.1 : Ping!
INBOUND
- ✔️VM to Container : Ping
- ✔️Unraid to Container : Ping
- ✔️Router to Container : Ping
Container ip route list gives :
Unraid routes are :
Docker settings are :
Docker network br0 inspect gives :
[
{
"Name": "br0",
"Scope": "local",
"Driver": "ipvlan",
"EnableIPv6": false,
"IPAM": {
"Driver": "default",
"Options": {},
"Config": [
{
"Subnet": "192.168.5.0/24",
"Gateway": "[router IP]",
"AuxiliaryAddresses": {
"server": "[unraid IP]"
}
}
]
},
"Internal": false,
"Attachable": false,
"Ingress": false,
"ConfigFrom": {
"Network": ""
},
"ConfigOnly": false,
"Containers": {
"uid": {
"Name": "smokeping",
"MacAddress": "",
"IPv4Address": "[container IP]/24",
"IPv6Address": ""
}
},
"Options": {
"parent": "br0"
},
"Labels": {}
}
]