-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Description
Is your question not already answered in the FAQ?
- I made sure the question is not listed in the FAQ.
Is this a general question and not a technical issue?
- I am sure my question is not about a technical issue.
Question
Hi. Thanks for creating Dockur/windows first of all. I managed to setup a container using WSL2 as per the docker compose yaml file from the README. It works great and I am able to use noVNC (localhost:8006) to use a win11 container.
I haven't been able to use RDP after much frustration however. Using the default username Docker I tried many IP addressess to no avail, I also tried disabling the firewall on both the container and the host machine without success. The error I get is "Remote Desktop can not connect to remote computer for one of these reasons... 1) remote access to server is not enabled 2) the remote computer is off 3) the remote computer is not available on the network"
To get the IP address I used 'docker insepect %container_name' and on the JSON file got:
Networks": { "windows-docker_default": { ..... "IPAMConfig": null, "Links": null, "DriverOpts": null, "GwPriority": 0, "IPAddress": "172.18.0.2", ] } }
Through the noVNC connnection I used arp -a to check the local IP address and instead got 172.30.0.2, I tried to ping both from the host computer and other computers in the same network and had no success.
I would really appreciate any input on what I am missing, as I don't think this is a bug but an issue on my configuration.