Source Tweet for network description: https://twitter.com/lindworm/status/1451878726807998467
We assume here, that all nodes are running Linux.
IP Forwarding must be enabled on all routing nodes:
sudo sysctl -w net.ipv4.ip_forward=1
Source Tweet for network description: https://twitter.com/lindworm/status/1451878726807998467
We assume here, that all nodes are running Linux.
IP Forwarding must be enabled on all routing nodes:
sudo sysctl -w net.ipv4.ip_forward=1
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadContent</key> | |
<array> | |
<!-- Connect to VPN when connected to untrusted networks --> | |
<dict> | |
[Unit] | |
Description=organizr - HTPC/Homelab Services Organizer | |
After=docker.service | |
Requires=docker.service | |
[Service] | |
TimeoutStartSec=0 | |
Restart=always | |
ExecStartPre=/usr/bin/docker pull organizr/organizr:latest | |
ExecStartPre=-/usr/bin/docker kill %p |
if begin | |
not set -q TMUX | |
and set -q SSH_CONNECTION | |
end | |
set WHOAMI (whoami) | |
if tmux has-session -t $WHOAMI | |
tmux -2 attach-session -t $WHOAMI | |
else | |
tmux -2 new-session -s $WHOAMI | |
end |
#!/bin/bash | |
# | |
# This script installs zsh, oh-my-zsh and the spaceship zsh-theme on a fedora machine | |
# | |
# Author: bgericke, 2017 | |
# Install ssh-server,tmux, mc, htop, tree | |
sudo apt-get install openssh-server tmux mc htop tree | |
# Install zsh, zsh-syntax-highlighting |
#!/bin/bash | |
# | |
# This script installs zsh, oh-my-zsh and the spaceship zsh-theme on a fedora machine | |
# | |
# Author: bgericke, 2017 | |
# Get sudo, assuming the system supports cached credentials | |
sudo -v | |
# Install zsh, zsh-syntax-highlighting |