From bd3669e206e6f9d7845de457a304a55501934e88 Mon Sep 17 00:00:00 2001 From: julien Date: Mon, 20 Oct 2025 14:27:01 +0200 Subject: [PATCH] "Updates" --- Turing Pi/compute-modules.md | 3 +++ Turing Pi/networking.md | 13 +++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Turing Pi/compute-modules.md b/Turing Pi/compute-modules.md index f3a6ff3..c55ccc8 100644 --- a/Turing Pi/compute-modules.md +++ b/Turing Pi/compute-modules.md @@ -86,6 +86,9 @@ sudo apt install -y cowsay fortune sudo vim /etc/update-motd.d/01-cowsay ``` +[Networking](networking.md) + + ```bash #!/bin/bash /usr/games/fortune | /usr/games/cowsay -f tux diff --git a/Turing Pi/networking.md b/Turing Pi/networking.md index 902f0c8..31f44e8 100644 --- a/Turing Pi/networking.md +++ b/Turing Pi/networking.md @@ -86,8 +86,8 @@ iface wlan0 inet static address 192.168.1.xx netmask 255.255.255.0 gateway 192.168.1.254 - dns-nameservers 1.1.1.1 - dns-nameservers 1.0.0.1 +    dns-nameservers 45.90.28.0 +    dns-nameservers 45.90.30.0 # This is an autoconfigured IPv6 interface iface end0 inet6 auto @@ -141,14 +141,15 @@ iface lo inet loopback # allow-hotplug end0 auto end0 iface end0 inet static -    address 192.168.1.12 -    netmask 255.255.255.0 -    gateway 192.168.1.254 + address 192.168.1.xx + netmask 255.255.255.0 + gateway 192.168.1.254     dns-nameservers 45.90.28.0     dns-nameservers 45.90.30.0 # This is an autoconfigured IPv6 interface iface end0 inet6 auto + ``` ```bash @@ -169,7 +170,7 @@ network:     end0:       dhcp4: no       addresses: -        - 192.168.1.13/24 +        - 192.168.1.xx/24       routes:         - to: default           via: 192.168.1.254