Commit 44eb28

2026-04-14 06:21:26 Anonymous: Update
our stack.md ..
@@ 4,11 4,69 @@
## Machines
We have the following machines:
- * a TrueNAS machine, at 192.168.40.20 - can't SSH into this
- * a physical machine named INDRA, at 192.168.40.40, reachable with `ssh indra`
- * a physical machine named KRYPTON, at 192.168.40.60, reachable with `ssh krypton`
- * a GCP virtual machine named RAMA, at 10.152.0.3, reachable with `ssh rama`
- * a GCP virtual machine named GANESHA, at 10.152.0.2, reachable with `ssh ganesha`
+ * **SHIVA** - a TrueNAS physical machine:
+ * physical location: 115 Cotham Rd
+ * local IP: `192.168.40.20`
+ * **KRISHNA** - a TrueNAS physical machine:
+ * physical location: 35 Cotham Rd
+ * local IP: `UNKNOWN`
+ * **INDRA** - a physical machine:
+ * physical location: 115 Cotham Rd
+ * local IP: `192.168.40.40`
+ * Wireguard VPN IP: `10.13.13.6`
+ * **KRYPTON** - a physical machine:
+ * physical location: 115 Cotham Rd
+ * local IP: `192.168.40.60`
+ * Wireguard VPN IP: `10.13.13.3`
+ * **RAMA** - a GCP virtual machine
+ * GCP IP: `10.152.0.3`
+ * public IP: `34.116.65.212`
+ * Wireguard VPN IP: `10.13.13.7`
+ * **GANESHA** a GCP virtual machine:
+ * GCP IP: `10.152.0.2`
+ * public IP: `34.40.255.123`
+ * Wireguard VPN IP: `10.13.13.1`
+
+ ### Recommended Developer SSH Configuration
+
+ Assuming your `~/.ssh/config` includes the entries below, you will be able to simply run:
+ * `ssh indra`
+ * `ssh krypton`
+ * `ssh rama`
+ * `ssh ganesha`
+
+ ```
+ Host indra
+ HostName 10.13.13.6
+ User YOUR_USER_ON_INDRA
+ IdentityFile ~/.ssh/id_ed25519_indra
+ IdentitiesOnly yes
+
+ Host krypton
+ HostName 10.13.13.3
+ User YOUR_USER_ON_KRYPTON
+ IdentityFile ~/.ssh/id_ed25519_krypton
+ IdentitiesOnly yes
+
+ Host ganesha
+ HostName 34.40.255.123
+ User YOUR_USER_ON_GANESHA
+ IdentityFile ~/.ssh/id_ed25519_ganesha
+ IdentitiesOnly yes
+
+ Host rama
+ HostName 34.116.65.212
+ User YOUR_USER_ON_RAMA
+ IdentityFile ~/.ssh/id_ed25519_rama
+ IdentitiesOnly yes
+
+ Host isn-gitea
+ HostName 10.13.13.1
+ Port 2222
+ User YOUR_USER_ON_GANESHA
+ IdentityFile ~/.ssh/id_ed25519_ganesha
+ IdentitiesOnly yes
+ ```
## Apps
We look after the following software:
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9