diff --git a/routlin/install.py b/routlin/install.py index 093bc69..129449b 100644 --- a/routlin/install.py +++ b/routlin/install.py @@ -505,8 +505,11 @@ def main(): header("External Access (optional)") ext_domain = _external_access_domain() if ext_domain: + lan = _lan_ip() print(f" External access to the web dashboard is already configured.") print(f" https://{ext_domain}/") + print(f" The dashboard is also reachable on your local network at:") + print(f" http://{lan}:{FLASK_PORT}/") print() print("Done.") return