#!/bin/bash SOURCE=${BASH_SOURCE[0]} while [ -L "$SOURCE" ]; do DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd) SOURCE=$(readlink "$SOURCE") [[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE done DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd) if [[ -f "$DIR/../../config/arp-config.sh" ]]; then . "$DIR/../../config/arp-config.sh" else echo "$DIR/../../config/arp-config.sh missing!" exit 1 fi if [ "$(id -u)" -ne 0 ]; then echo 'This script must be run as root.' >&2 exit 1 fi # ============================================================================== # Setup echo -e "# PREPARE ENVIRONMENT #" # Reset interfaces iptables -X iptables -F iptables -t nat -X iptables -t nat -F echo "Erased all iptables rules." ifconfig $WLAN_IFACE down ifconfig $WLAN_IFACE hw ether $(ethtool -P $WLAN_IFACE | awk '{print $3}') ifconfig $WLAN_IFACE up echo "Reset the $WLAN_IFACE WiFi interface." while true; do WLAN_IFACE_IP=$(ip -4 -br addr show $WLAN_IFACE | grep -Po "\\d+\\.\\d+\\.\\d+\\.\\d+") if [ -n "${WLAN_IFACE_IP}" ]; then echo "Got it!" break fi echo "Waiting for $WLAN_IFACE to get an IP..." sleep 5 done # We only need to get the $WLAN_IFACE IP address and will copy it over to $ETH_IFACE later WLAN_NETMASK=$(ip addr show $WLAN_IFACE | grep -w inet | awk '{print $2}' | cut -d'/' -f2) WLAN_NETMASK_CIDR=$(ip addr show $WLAN_IFACE | grep -w inet | awk '{print $2}' | cut -d'/' -f2) if $NON_INTERACTIVE; then NON_INTERACTIVE_APT="-y" else NON_INTERACTIVE_APT="" fi # ============================================================================== # Install stuff echo -e "\n# INSTALL THINGS #" echo -e "Upgrading...\n" apt-get update apt-get upgrade $NON_INTERACTIVE_APT echo -e "\n" THINGS_TO_INSTALL="net-tools ethtool openssh-server parprouted dhcp-helper" if ! $NON_INTERACTIVE; then echo "Going to install: $THINGS_TO_INSTALL" read -p "Press ENTER to continue or CTRL+C to cancel..." fi echo -e "\n" apt-get install $NON_INTERACTIVE_APT $THINGS_TO_INSTALL if ! $NON_INTERACTIVE; then echo -e "\nGoing to replace networking with systemd-networkd." read -p "Press ENTER to continue or CTRL+C to cancel..." fi systemctl stop dhcp-helper apt-get autoremove --purge $NON_INTERACTIVE_APT ifupdown dhcpcd5 isc-dhcp-client isc-dhcp-common echo -e "\n\nConnecting to WiFi..." WPA_SUPP_FILE="/etc/wpa_supplicant/wpa_supplicant-$WLAN_IFACE.conf" cat >"$WPA_SUPP_FILE" <"$NET_CONF_FILE" < /etc/default/dhcp-helper < /etc/systemd/system/parprouted.service < /etc/systemd/system/parprouted-monitor.service <