misc new stuff
[automated-distro-installer] / wrt-setup
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18
19 set -eE -o pipefail
20 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
21
22 [[ $EUID == 0 ]] || exec sudo -E "${BASH_SOURCE[0]}" "$@"
23
24 x="$(readlink -f "$BASH_SOURCE")"; cd ${x%/*}
25
26 usage() {
27 cat <<EOF
28 usage: ${0##*/} [-h|--help] [HOST/IP] [wrt-setup-local_ARGS]
29 setup my router in general: dhcp, dns, etc.
30
31 Default HOST is 10.0.0.1 or 10.2.0.1 if they are the gateway, otherwise
32 it must be specified.
33
34 Note, use -m "''" to send an empty mac arg. When we get a new enough
35 bash, we can use ${@@Q} to properly pass an empty var.
36
37
38 Note, if we dont have internet yet, then just download the bash package,
39 scp it over manually and install it, eg:
40
41 cat /etc/opkg/distfeeds.conf
42 wget https://librecmc.org/librecmc/downloads/snapshots/v1.5.1-core/packages/mips_24kc/packages/bash_5.0-3_mips_24kc.ipk
43 scp bash_5.0-3_mips_24kc.ipk wrt:
44 ssh wrt
45 opkg install /root/bash_5.0-3_mips_24kc.ipk
46 EOF
47 wrt-setup-local -h
48 exit $1
49 }
50
51
52 case $1 in
53 -h|--help) usage ;;
54 -*) : ;;
55 ?*) h="$1"; shift ;;
56 esac
57
58 if [[ ! $h ]]; then
59 read -r _ _ gateway _ < <(ip -4 route get 8.8.8.8)
60 case $gateway in
61 10.0.0.1|10.2.0.1)
62 h=root@$gateway
63 ;;
64 *)
65 echo "$0: error: gateway = $gateway and no HOST/IP specified"
66 exit 1
67 ;;
68 esac
69 fi
70
71 echo "$0: h=$h"
72 # todo: ecdsa key not working with dropbear
73 cat ~/.ssh/{h,hrsa,home}.pub | ssh $h dd of=/etc/dropbear/authorized_keys 2>/dev/null
74 scp /a/work/libremanage/libremanage /a/bin/fai/wrt-init /a/bin/fai/wrt-setup-local /a/bin/cedit/cedit $h:/usr/bin
75 # relay is built for openwrt 18.06.2, r7676-cddd7b4c77
76
77 #/a/opt/openwrt/source/bin/packages/mips_24kc/mypackages/relay_1.0-1_mips_24kc.ipk \
78
79 scp /q/root/shadow/router /p/c/machine_specific/wrt/etc/dropbear/dropbear_rsa_host_key \
80 /p/router-secrets /p/c/machine_specific/wrt/etc/wg.{key,psk} $h:
81 scp ../openwrtkeyring/usign/* $h:/etc/opkg/keys
82
83 ssh $h wrt-init ${HOME_DOMAIN:-b8.nz} "$@"