Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: these commands are lower case

...

Panel
bgColor#fff

Docker uses the 172.x.x.x ip space and Yale is also using this range for private ip space.
If you used the Docker official repo it would have created a docker0 interface with a 172.x.x.x interface. i.e.
sudo Ifconfig docker0
docker0: flags=4099<up,broadcast,multicast> mtu 1500
inet 172.x.x.x netmask 255.255.0.0 broadcast 0.0.0.0
This overlaps with Yale networks and causes routing to fail since it tries to route out of the docker0 interface and go’s nowhere. The fix is to just use a 192.x.x.x ip on the docker0 inteface
Do the following.
</up,broadcast,multicast>

  1. sudo su -
  2. systemctl stop docker
  3. sudo su -
  4. Ifdown ifdown docker0
  5. ifconfig docker0 down
  6. cat << EOF >> /etc/sysconfig/network-scripts/ifcfg-docker0
    TYPE=Bridge
    DEVICE=docker0
    NETMASK=255.255.252.0
    IPADDR=192.168.5.1
    ONBOOT=yes
    BOOTPROTO=none
    NM_CONTROLLED=no
    DELAY=0
    EOF
  7. Ifup ifup docker0
  8. systemctl start docker

...