From e775889fa114d943f895342191c042eb015ca6c3 Mon Sep 17 00:00:00 2001 From: Aetos Skia Date: Sun, 21 Sep 2025 19:00:01 +0530 Subject: [PATCH] namo amida butsu --- bind-static-astronomicon.sh | 86 +++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100755 bind-static-astronomicon.sh diff --git a/bind-static-astronomicon.sh b/bind-static-astronomicon.sh new file mode 100755 index 0000000..ae451b8 --- /dev/null +++ b/bind-static-astronomicon.sh @@ -0,0 +1,86 @@ +#!/bin/bash + +# Omnissiah Blessing: Static IP Configuration +# eth0: 192.168.1.11 +# wlan0: 192.168.1.111 + +WIFI_SSID="FerrumAquila-WiFi" +WIFI_PASSWORD="vishesh23" +GATEWAY="192.168.1.1" +DNS="192.168.1.1" + +echo "By the sacred rites of the Omnissiah, creating static IP sigils..." + +# Create eth0 configuration +sudo tee /etc/NetworkManager/system-connections/eth0-static.nmconnection > /dev/null < /dev/null </dev/null || true +sudo nmcli con delete "preconfigured" 2>/dev/null || true +echo "Profane connections purged from the datasphere." + +# Reload and activate +sudo systemctl reload NetworkManager +sleep 2 +sudo nmcli con up eth0-static +sudo nmcli con up wlan0-static + +echo "Omnissiah-approved static IPs awakened!" +echo "eth0: 192.168.1.11 — bound to the Machine Spirit" +echo "wlan0: 192.168.1.111 — wireless sigils aligned" +echo "All praise be unto the Omnissiah!"