X-Git-Url: https://iankelling.org/git/?p=automated-distro-installer;a=blobdiff_plain;f=wrt-setup;h=c86a0d5e1b8d4da92af5b783f17e6602378ef109;hp=3c572f29b3ef49f95a92ea277e2a01d746ea26b8;hb=845c2b9e9e7e25b3dfa3d7f750d0acae0e50caf4;hpb=4acdd54dd395d63eef73778547fa8cc119ac6fca diff --git a/wrt-setup b/wrt-setup index 3c572f2..c86a0d5 100755 --- a/wrt-setup +++ b/wrt-setup @@ -26,7 +26,8 @@ usage() { usage: ${0##*/} [-h|--help] [HOST/IP] [wrt-setup-local_ARGS] setup my router in general: dhcp, dns, etc. -Default HOST is root@10.0.0.1 +Default HOST is 10.0.0.1 or 10.2.0.1 if they are the gateway, otherwise +it must be specified. Note, use -m "''" to send an empty mac arg. When we get a new enough bash, we can use ${@@Q} to properly pass an empty var. @@ -45,7 +46,6 @@ EOF exit $1 } -h=root@10.0.0.1 case $1 in -h|--help) usage ;; @@ -53,6 +53,19 @@ case $1 in ?*) h="$1"; shift ;; esac +if [[ ! $h ]]; then + read -r _ _ gateway _ < <(ip -4 route get 8.8.8.8) + case $gateway in + 10.0.0.1|10.2.0.1) + h=root@$gateway + ;; + *) + echo "$0: error: gateway = $gateway and no HOST/IP specified" + exit 1 + ;; + esac +fi + echo "$0: host=$h" cat ~/.ssh/home.pub | ssh $h dd of=/etc/dropbear/authorized_keys 2>/dev/null @@ -60,14 +73,17 @@ scp /a/work/libremanage/libremanage /a/bin/fai/wrt-setup-local /a/bin/cedit/cedi # relay is built for openwrt 18.06.2, r7676-cddd7b4c77 sudo scp /q/root/shadow/router /p/c/machine_specific/wrt/etc/dropbear/dropbear_rsa_host_key \ /a/opt/openwrt/source/bin/packages/mips_24kc/mypackages/relay_1.0-1_mips_24kc.ipk \ - /p/c/machine_specific/wrt/etc/wg.{key,psk} $h: + /p/router-secrets /p/c/machine_specific/wrt/etc/wg.{key,psk} $h: scp ../openwrtkeyring/usign/* $h:/etc/opkg/keys ssh $h </etc/opkg/customfeeds.conf <<'EOF' -src/gz openwrt_packages http://downloads.openwrt.org/releases/19.07.2/packages/mips_24kc/packages +source /etc/os-release +if [[ $ID == librecmc && $VERSION == v1.5.1-core]]; then + cat >/etc/opkg/customfeeds.conf <<'EOF' +src/gz openwrt_packages http://downloads.openwrt.org/releases/19.07.3/packages/mips_24kc/packages +fi EOF if ! opkg list-installed|grep bash; then @@ -75,6 +91,5 @@ if ! opkg list-installed|grep bash; then opkg install bash fi export HOME_DOMAIN=$HOME_DOMAIN -export WIRELESSMAC=$WIRELESSMAC wrt-setup-local $@ EOFOUTER