From ef2966e2fb12398a9a90212c4cab03954f48e735 Mon Sep 17 00:00:00 2001 From: Nathaniel Hargrave Date: Sun, 17 May 2026 19:07:29 -0400 Subject: [PATCH 1/3] Update tiling ip to use 192.168.0 subnet if available --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 67ab142..e7613bb 100755 --- a/start.sh +++ b/start.sh @@ -2,7 +2,7 @@ LOCAL_IP="" while [ -z "$LOCAL_IP" ]; do - LOCAL_IP=$(hostname -I | awk '{print $1}') + LOCAL_IP=$(hostname -I | grep -oP '([0-9.]+(\.0)[0-9.]+)' || awk '{print $1}') sleep 1 done TILING_SERVER_PORT=80 From 9bf6f4b67cf7363eeecdf124bf4de1264b831e4c Mon Sep 17 00:00:00 2001 From: Nathaniel Hargrave Date: Sun, 17 May 2026 20:40:30 -0400 Subject: [PATCH 2/3] Better method of finding ip, now using specific interface --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index e7613bb..300369e 100755 --- a/start.sh +++ b/start.sh @@ -2,7 +2,7 @@ LOCAL_IP="" while [ -z "$LOCAL_IP" ]; do - LOCAL_IP=$(hostname -I | grep -oP '([0-9.]+(\.0)[0-9.]+)' || awk '{print $1}') + LOCAL_IP=$(ip addr show eno0 | grep -oP '(?<=inet )([0-9\.]+)' || hostname -I | awk '{print $1}') sleep 1 done TILING_SERVER_PORT=80 From c15b65b0fc6c9560755b9ada604a6933491d97da Mon Sep 17 00:00:00 2001 From: Jetson Nano1 Date: Sun, 17 May 2026 20:54:47 -0400 Subject: [PATCH 3/3] now with the correct interface --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 300369e..2267fe7 100755 --- a/start.sh +++ b/start.sh @@ -2,7 +2,7 @@ LOCAL_IP="" while [ -z "$LOCAL_IP" ]; do - LOCAL_IP=$(ip addr show eno0 | grep -oP '(?<=inet )([0-9\.]+)' || hostname -I | awk '{print $1}') + LOCAL_IP=$(ip addr show enP8p1s0 | grep -oP '(?<=inet )([0-9\.]+)' || hostname -I | awk '{print $1}') sleep 1 done TILING_SERVER_PORT=80