Docker container causes host machine's LAN IP to be inaccessible, problem persists after deleting the container
Operating system
debian 6.12.30+
Description
I created a container using the following command:
docker run -d --name dockurr-windows10_8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -e LANGUAGE="CN" -v "/volume2/docker/dockerWindows/storage:/storage" -v "/volume2/docker/dockerWindows/data:/data" -v "/volume2/docker/dockerWindows/win10x64-enterprise-ltsc-eval_zh.iso:/boot.iso" --network=host --stop-timeout 120 dockurr/windows:4.35
After running the container, it caused network issues on my host machine. The LAN IP became inaccessible, but I can still access it through the domain name bound to the public IP. Even after I deleted the container, the problem persists.
Has anyone encountered a similar issue? How can I fix the LAN access problem?
Docker compose
docker run -d --name dockurr-windows10_8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -e LANGUAGE="CN" -v "/volume2/docker/dockerWindows/storage:/storage" -v "/volume2/docker/dockerWindows/data:/data" -v "/volume2/docker/dockerWindows/win10x64-enterprise-ltsc-eval_zh.iso:/boot.iso" --network=host --stop-timeout 120 dockurr/windows:4.35
Docker log
null
Screenshots (optional)
No response