From c40fc1eebf2c04f7ed1df2afd36cd985e22744d2 Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Sun, 28 Apr 2024 17:58:51 -0500 Subject: [PATCH] add phone as a host on local net --- home/ssh/config | 4 ++++ manual/site.md | 3 ++- modules/hosts.nix | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/home/ssh/config b/home/ssh/config index 9bdc79c..5345e35 100644 --- a/home/ssh/config +++ b/home/ssh/config @@ -2,6 +2,10 @@ Host mainsail User usr Port 22 +Host phone + User u0_a193 + Port 8022 + Host netbox HostName beepboop.systems User ryan diff --git a/manual/site.md b/manual/site.md index 2aecb0d..372edd6 100644 --- a/manual/site.md +++ b/manual/site.md @@ -6,4 +6,5 @@ - `192.168.1.200`: `mainsail` - `192.168.1.201`: `x230t` - `192.168.1.202`: `mlg` -- `192.168.1.203-255`: Unassigned +- `192.168.1.203`: `phone` +- `192.168.1.204-255`: Unassigned diff --git a/modules/hosts.nix b/modules/hosts.nix index 565438e..fc0baf6 100644 --- a/modules/hosts.nix +++ b/modules/hosts.nix @@ -6,6 +6,7 @@ "192.168.1.200" = [ "mainsail" ]; "192.168.1.201" = [ "x230t" ]; "192.168.1.202" = [ "mlg" ]; + "192.168.1.203" = [ "phone" ]; "149.28.63.115" = [ "netbox" ]; }; }