> On Jan. 10, 2018, 12:32 p.m., Alexander Rukletsov wrote: > > docs/networking.md > > Lines 118-122 (patched) > > <https://reviews.apache.org/r/63861/diff/8/?file=1938000#file1938000line118> > > > > Can you please mention that other network modes than `NAT` and `USER` > > are not supported in Mesos? > > Akash Gupta wrote: > Could you elaborate what you mean by this? I already said that `HOST` is > unsupported on Windows, but `BRIDGE` (interpretted as `NAT`), `NONE` and > `USER` work on Windows. > > Alexander Rukletsov wrote: > From what I read in > https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/container-networking > there are other network modes that Mesos does not support.
Oh I see what you mean. The other network types are `USER` networks that you need to manually create. For example, to use transparent, you need to do `docker network create -d transparent <NETWORK_NAME>` and then to launch a container, you do `docker run --network=<NETWORK_NAME> ...`, so in Mesos, it would be a `USER` network with the name as `<NETWORK_NAME>`. It's the same for `macvlan` and `overlay` on Linux as well. I'll add some clarification on this. - Akash ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/63861/#review195131 ----------------------------------------------------------- On Jan. 10, 2018, 1:42 a.m., Akash Gupta wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/63861/ > ----------------------------------------------------------- > > (Updated Jan. 10, 2018, 1:42 a.m.) > > > Review request for mesos, Alexander Rukletsov, Andrew Schwartzmeyer, Gaston > Kleiman, Jie Yu, John Kordich, and Michael Park. > > > Bugs: MESOS-7342 > https://issues.apache.org/jira/browse/MESOS-7342 > > > Repository: mesos > > > Description > ------- > > The networking docs now describe how the Docker network modes in the > `Network` enum work on Windows, since the enum only has Linux network > modes. > > > Diffs > ----- > > docs/networking.md bdd3a762435aae163fc659cc0000fea7da825983 > > > Diff: https://reviews.apache.org/r/63861/diff/8/ > > > Testing > ------- > > > Thanks, > > Akash Gupta > >
