This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| computing:backupnode [2025/03/27 19:54] – oemb1905 | computing:backupnode [2026/03/30 02:11] (current) – removed oemb1905 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ------------------------------------------- | ||
| - | * **backupnode** | ||
| - | * **Jonathan Haack** | ||
| - | * **Haack' | ||
| - | * **webmaster@haacksnetworking.org** | ||
| - | ------------------------------------------- | ||
| - | |||
| - | // | ||
| - | |||
| - | ------------------------------------------- | ||
| - | Set up the physical host to forward, enable forward on the firewall and allow ssh. | ||
| - | |||
| - | sudo apt install bridge-utils | ||
| - | sudo brctl addbr br0 | ||
| - | sudo nano / | ||
| - | < | ||
| - | sudo nano / | ||
| - | < | ||
| - | ufw allow 22 | ||
| - | |||
| - | Physical host interface: | ||
| - | |||
| - | auto enp4s0 | ||
| - | iface enp4s0 inet manual | ||
| - | auto br0 | ||
| - | iface br0 inet static | ||
| - | address 44.13.19.10/ | ||
| - | gateway 44.13.19.1 | ||
| - | nameservers 8.8.8.8 | ||
| - | bridge-ports enp4s0 | ||
| - | bridge-stp off | ||
| - | bridge-fd 0 | ||
| - | bridge_hw enp4s0 | ||
| - | up ip route add 44.13.19.11/ | ||
| - | #up ip route add 44.13.19.12/ | ||
| - | #and so on ... | ||
| - | |||
| - | Inside the virtual appliance: | ||
| - | |||
| - | auto enp1s0 | ||
| - | iface enp1s0 inet static | ||
| - | address 44.13.19.11 | ||
| - | netmask 255.255.255.192 | ||
| - | gateway 44.13.19.1 | ||
| - | nameservers 8.8.8.8 | ||
| - | |||
| - | The numbers above are made up and so the subnet mask will be inaccurate. Make sure to adjust as needed. | ||
| - | |||
| - | |||
| - | --- // | ||