usage() {
cat <<EOF
-usage: ${0##*/} [-h|--help] [-2|--dev2] [HOST/IP]
+usage: ${0##*/} [-h|--help] [HOST/IP] [wrt-setup-local_ARGS]
setup my router in general: dhcp, dns, etc.
-dev2 is for setting up a second device for testing etc.
+Default HOST is root@10.0.0.1
+
+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.
+
EOF
+ wrt-setup-local -h
exit $1
}
h=root@10.0.0.1
-temp=$(getopt -l help,dev2 h2 "$@") || usage 1
-eval set -- "$temp"
-while true; do
- case $1 in
- -2|--dev2) local_arg=-2; shift ;;
- -h|--help) usage ;;
- --) shift; break ;;
- *) echo "$0: Internal error! unexpected args: $*" ; exit 1 ;;
- esac
-done
+case $1 in
+ -h|--help) usage ;;
+ -*) : ;;
+ ?*) h="$1"; shift ;;
+esac
-if (( $# > 1 )); then
- usage 1
-fi
-
-if [[ $# == 1 ]]; then
- read h <<<"$@"
-fi
+echo "$0: host=$h"
cat ~/.ssh/home.pub | ssh $h dd of=/etc/dropbear/authorized_keys 2>/dev/null
-scp /a/bin/fai/wrt-setup-local /a/bin/cedit/cedit $h:/usr/bin
-# build for openwrt 18.06.2, r7676-cddd7b4c77
+scp /a/work/libremanage/libremanage /a/bin/fai/wrt-setup-local /a/bin/cedit/cedit $h:/usr/bin
+# relay is built for openwrt 18.06.2, r7676-cddd7b4c77
sudo scp /q/root/shadow/router \
/a/opt/openwrt/source/bin/packages/mips_24kc/mypackages/relay_1.0-1_mips_24kc.ipk $h:
ssh $h <<EOF
+set -x
if ! opkg list-installed|grep bash; then
opkg update
opkg install bash
fi
export HOME_DOMAIN=$HOME_DOMAIN
-wrt-setup-local $local_arg
+export WIRELESSMAC=$WIRELESSMAC
+wrt-setup-local $@
EOF
set -eE -o pipefail
trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
+
+usage() {
+ cat <<EOF
+usage: ${0##*/} [-h] [-t 2|test] [-m WIRELESS_MAC]
+setup my router in general: dhcp, dns, etc.
+
+Type 2 is for setting up a backup device. Type test is for setting up a
+testing device.
+
+Passing an empty string for WIRELESS_MAC will cause the device's native
+mac to be used.
+
+EOF
+
+ exit $1
+}
+
+
dev2=false
-if [[ $1 == -2 ]]; then
- dev2=true
+test=false
+hostname=wrt
+libremanage_host=wrt2
+
+lanip=1
+while getopts hm:t: opt; do
+ case $opt in
+ h) usage ;;
+ t)
+ case $2 in
+ 2)
+ dev2=true
+ lanip=4
+ hostname=wrt2
+ libremanage_host=wrt
+ ;;
+ test)
+ test=true
+ ;;
+ *) echo "$0: unexpected arg to -t: $*" >&2; usage 1 ;;
+ esac
+ ;;
+ m) mac=$OPTARG ;;
+ *) echo "$0: Internal error! unexpected args: $*" >&2 ; usage 1 ;;
+ esac
+done
+shift "$((OPTIND-1))" # Discard the options and sentinel --
+
+if [[ ! $mac ]] && ! $test; then
+ # if we wanted to increment it
+ #WIRELESSMAC=${WIRELESSMAC:0: -1}$((${WIRELESSMAC: -1} + 2))
+ mac=$WIRELESSMAC
+fi
+
+if (( $# != 0 )); then
+ usage 1
fi
+
+macpre=${mac:0: -1}
+macsuf=${mac: -1}
+
pmirror() {
# background: upgrading all packages is not recommended because it
# doesn't go into the firmware. build new firmware if you want
###
ssid="check out gnu.org"
lan=10.0.0.0
-if $dev2; then
+if $test; then
ssid="gnuv3"
lan=10.1.0.0
fi
mask=255.255.0.0
+cidr=16
l=${lan%.0}
passwd -l root ||: #already locked fails
chmod +x /usr/bin/archlike-pxe-mount
sed -i '/^root:/s,/bin/ash$,/bin/bash,' /etc/passwd
+# usb, screen, relay are for libremanage
v pi kmod-usb-storage block-mount kmod-fs-ext4 nfs-kernel-server \
- tcpdump openvpn-openssl adblock libusb-compat /root/relay_1.0-1_mips_24kc.ipk
-
+ tcpdump openvpn-openssl adblock libusb-compat /root/relay_1.0-1_mips_24kc.ipk \
+ screen kmod-usb-serial-cp210x kmod-usb-serial-ftdi
+cat >/etc/libremanage.conf <<EOF
+${libremanage_host}_type=switch
+${libremanage_host}_channel=1
+EOF
# todo: restart nfs when nfs is enabled?
#cedit /etc/exports <<EOF || v /etc/init.d/nfsd restart ||:
cedit /etc/exports <<EOF ||:
-/mnt/usb $lan/$netmask(rw,no_root_squash,insecure,sync,no_subtree_check)
+/mnt/usb $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
# for arch pxe
-/run/archiso/bootmnt $lan/$netmask(rw,no_root_squash,insecure,sync,no_subtree_check)
-/run/parabolaiso/bootmnt $lan/$netmask(rw,no_root_squash,insecure,sync,no_subtree_check)
+/run/archiso/bootmnt $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
+/run/parabolaiso/bootmnt $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
EOF
uset wireless.default_radio$x.ssid "$ssid"
uset wireless.default_radio$x.key $key
uset wireless.default_radio$x.encryption psk2
- if [[ $(uci get wireless.radio$x.disabled 2>/dev/null) ]]; then
- v uci delete wireless.radio$x.disabled
- wireless_restart=true
+ if [[ $mac ]]; then
+ uset wireless.default_radio$x.macaddr $macpre$((macsuf + 2*x))
fi
+ # secondary device has wireless disabled
+ uset wireless.radio$x.disabled $dev2
done
if $wireless_restart; then
$l.1 wrt
$l.2 kd
$l.3 frodo
-$l.4 htpc
+$l.4 wrt2
$l.5 x2
$l.6 demohost
$l.7 x3
uset dhcp.@dnsmasq[0].domain b8.nz
uset dhcp.@dnsmasq[0].local /b8.nz/
-uset system.@system[0].hostname wrt
+uset system.@system[0].hostname $hostname
if [[ $(uci get adblock.global.adb_enabled) != 1 ]]; then
v uci set adblock.global.adb_enabled=1
# top port, iPXE (PCI 04:00.0) in seabios boot menu
#dhcp-host=c8:60:00:2b:15:07,set:kd,$l.2,kd
dhcp-host=00:26:18:97:bb:16,set:frodo,$l.3,frodo
-dhcp-host=10:78:d2:da:29:22,set:htpc,$l.4,htpc
+# 4 is reserved for a staticly configured host.
dhcp-host=00:1f:16:16:39:24,set:x2,$l.5,x2
# This is so fai can have an explicit name to use for testing,
# or else any random machine which did a pxe boot would get
tftp-root=/mnt/usb/tftpboot
EOF
+uset network.lan.ipaddr $l.$lanip
+uset network.lan.netmask $mask
+uset dhcp.wan.ignore $dev2 # default is false
+if $dev2; then
+ uset network.lan.gateway $l.1
+ uset network.wan.proto none
+ uset network.wan6.proto none
+else
+ # these are the defaults
+ uset network.lan.gateway ''
+ uset network.wan.proto dhcp
+ uset network.wan6.proto dhcpv6
+fi
+
+
if $dnsmasq_restart; then
v /etc/init.d/dnsmasq restart
fi
v /etc/init.d/firewall restart
fi
-uset network.lan.ipaddr $l.1
-uset network.lan.netmask $mask
+
if $network_restart; then
reboot