Skip to content

Instantly share code, notes, and snippets.

@oceanBT
Created December 10, 2019 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oceanBT/fd89c1c36f9dbb798c7fac658a3a143c to your computer and use it in GitHub Desktop.
Save oceanBT/fd89c1c36f9dbb798c7fac658a3a143c to your computer and use it in GitHub Desktop.
wifionice with docker

ICE-WIFI address collision

ICE-Wifi is using the same IP-address scope as the first docker-container (172.18...) so WIFI is not working. To change the docker defaults and remove the existing container-network follow these steps:

Config new default address pool

sudo nano /etc/docker/daemon.json

add:

{
  "default-address-pools":
  [
    {"base":"172.27.0.0/16","size":24}
  ]
}

Restart Docker

sudo service docker restart

Stop Container running on 172.18.x.x

sudo docker stop CONTAINER-NAME

prune network

sudo docker network prune

Now reconnect wifi and open http://wifionice.de/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment