Accessing Your Setup From Other Devices on Your Network
Reach your local AI chat interface from your phone or laptop on the couch, not just from the machine it is installed on - using your home network, nothing more.
Why this matters
Everything up to this point has assumed you're sitting at the machine running Ollama and Open WebUI, typing into localhost. That's fine for setup, but it's not how anyone actually wants to use a chat interface day to day.
You want it from the couch, from bed, from your laptop in another room.
The good news: Open WebUI is already listening on your machine's network address, not just localhost, from the moment you installed it. Nothing extra needs to be installed - you just need to know the right address and make sure your firewall isn't in the way.
Finding your local IP
On the machine running Open WebUI, find its address on your home network:
# Linux
hostname -I
# Mac
ipconfig getifaddr en0
On Windows, open Command Prompt and run ipconfig, then look for the "IPv4 Address" under your active network adapter. You're looking for something in the form 192.168.x.x or 10.0.x.x.
Connecting from another device
From your phone or laptop, on the same Wi-Fi network, open a browser and go to:
http://192.168.1.XXX:3000
Replace the address with the actual IP you found, keeping :3000 on the end - that's the port Open WebUI listens on. You should see the same login screen and chat interface as on the host machine.
What actually goes wrong
The page times out instead of loading
This is almost always a firewall blocking the port on the host machine, not a networking mistake. On Linux with UFW:
sudo ufw allow 3000/tcp
On Mac, check System Settings → Network → Firewall and confirm it isn't blocking incoming connections for Docker. On Windows, check Windows Defender Firewall's allowed apps list.
Your phone says it's connected to Wi-Fi but still can't reach it
Confirm both devices are actually on the same network, not just both on "Wi-Fi." Guest networks are commonly isolated from the main network by design, specifically so guest devices can't reach anything else on it - if your router has a separate guest SSID, connect your phone to the main one instead.
The IP address stopped working after a while
The machine's local IP likely changed after a router restart. Re-run the IP lookup command from above to get the current address, or set up a static IP reservation in your router settings so this stops happening.
Common questions
Does this expose my setup to the internet?
Why does my phone say it can't connect even though I typed the right IP?
Go deeper
This guide covers reaching your setup from your own home network. Here's where to go if you want something different.
Written from hands-on security operations experience. More about this site →