docker network “l2bridge” - how to determine values for: subnet, gateway, DNS server and VLAN ID

Copper Contributor
 

I have VM with virtual network, let's say "VN1" and I need to connect from my docker container to that VM in Windows in Azure for Azure Container Instance. The proper way is that I need to create new l2bridge network:

docker network create -d "l2bridge" --subnet 10.244.0.0/24 --gateway 10.244.0.1 
-o com.docker.network.windowsshim.vlanid=7 
-o com.docker.network.windowsshim.dnsservers="10.244.0.7" my_transparent

How I could determine these values in Azure: subnet: gateway: DNS Server: VLANID: because I did not conifgure any of those previously once my VM has been created (only the name of Virtual Network) but now I need to re-use those in this kind of setup for l2 network driver?

Maybe I am lacking some permissions (for example even for my company subscription resource I cannot see all the details) but I am really confused how I should obtain values which I will use in my l2bridge network driver configuration?

Thanks

0 Replies