Changes

Docker

941 bytes added, 18:13, 22 June 2018
Check the interfaces on the host
===Check what was created===
====Check the interfaces on interface list of the host====On the host, upon the regular interfaces, we can see the two bridges for the two virtual networks: * '''virbrDocker''': That is the virtual network that we created in libvirt. This is connected to the host network with NAT. We assigned these IP addresses, when we defined the network. * '''virbr1''': That is the host-only virtual network that was created out-of-the-box. This one has no internet access.
<pre>
eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.0.105 netmask 255.255.255.0 broadcast 192.168.0.255
....
virbr1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.42.1 netmask 255.255.255.0 broadcast 192.168.42.255
...
virbrDocker: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.123.1 netmask 255.255.255.0 broadcast 192.168.123.255
inet6 2001:db8:ca2:2::1 prefixlen 64 scopeid 0x0<global>
...
</pre>
====Login to the new machine====