add prom monitoring
[automated-distro-installer] / wrt-setup-local
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
23 usage() {
24 cat <<EOF
25 usage: ${0##*/} [-h] [-t 2|3|test|client] [-m WIRELESS_MAC] [hostname]
26 setup my router in general: dhcp, dns, etc.
27
28 Type 2 or 3 is for setting up a backup device, there are two kinds so
29 that you can switch the main device to a backup, then a backup to the
30 main. Type test is for setting up a testing device.
31
32 Passing an empty string for WIRELESS_MAC, or if none is defined in the
33 secrets file, will cause the device's native mac to be used.
34
35 EOF
36
37 exit $1
38 }
39
40
41
42 zblock=false
43 if [[ -e /root/zblock ]]; then
44 zblock=true
45 fi
46
47 dnsmasq_restart=false
48 unbound_restart=false
49 firewall_restart=false
50 dev2=false
51 test=false
52 client=false
53 libremanage_host=wrt2
54 lanip=1
55 while getopts hm:t:yz opt; do
56 case $opt in
57 h) usage ;;
58 t)
59 case $2 in
60 2|3)
61 dev2=true
62 libremanage_host=$hostname
63 ;;&
64 2)
65 lanip=4
66 hostname=wrt2
67 ;;
68 3)
69 lanip=14
70 hostname=wrt3
71 ;;
72 test)
73 test=true
74 ;;
75 client)
76 client=true
77 ;;
78 *) echo "$0: unexpected arg to -t: $*" >&2; usage 1 ;;
79 esac
80 ;;
81 y)
82 zblock=false
83 rm -f /root/zblock
84 ;;
85 z)
86 zblock=true
87 touch /root/zblock
88 ;;
89 m) mac=$OPTARG ;;
90 *) echo "$0: Internal error! unexpected args: $*" >&2 ; usage 1 ;;
91 esac
92 done
93 shift "$((OPTIND-1))" # Discard the options and sentinel --
94
95 if [[ $1 ]]; then
96 h=$1
97 hostname=$h
98 else
99 h=cmc
100 hostname=$h
101 fi
102
103 secrets=false
104 if [[ -e /root/router-secrets ]]; then
105 secrets=true
106 source /root/router-secrets
107 fi
108
109 if [[ ! $mac ]] && ! $test && $secrets; then
110 # if we wanted to increment it
111 #mac=${mac:0: -1}$((${mac: -1} + 2))
112 mac=${rwmac[$h]}
113 fi
114
115 if (( $# != 0 )); then
116 usage 1
117 fi
118
119
120 macpre=${mac:0: -1}
121 macsuf=${mac: -1}
122
123
124 p_updated=false
125 pmirror() {
126 if $p_updated; then
127 return
128 fi
129 # background: upgrading all packages is not recommended because it
130 # doesn't go into the firmware. build new firmware if you want
131 # lots of upgrades. I think /tmp/opkg-lists is a pre openwrt 14 location.
132 f=(/var/opkg-lists/*)
133 if ! (( $(date -r $f +%s) + 60*60*24 > $(date +%s) )); then
134 if ! opkg update; then
135 echo "$0: warning: opkg update failed" >&2
136 fi
137 p_updated=true
138 fi
139 }
140
141 pi() {
142 to_install=()
143 for p in "$@"; do
144 pname=${p##*/}
145 pname=${pname%%_*}
146 if [[ ! $(opkg list-installed "$pname") ]]; then
147 to_install+=($p)
148 pmirror
149 fi
150 done
151 if [[ $to_install ]]; then
152 opkg install ${to_install[@]}
153 fi
154 }
155
156 v() {
157 printf "+ %s\n" "$*"
158 "$@"
159 }
160
161 ######### uci example:#######
162 # # https://wiki.openwrt.org/doc/uci
163 # wan_index=$(uci show firewall | sed -rn 's/firewall\.@zone\[([0-9])+\]\.name=wan/\1/p')
164 # wan="firewall.@zone[$wan_index]"
165 # if [[ $(uci get firewall.@forwarding[0].dest) != $forward_dest ]]; then
166 # # default is wan
167 # v uci set firewall.@forwarding[0].dest=$forward_dest
168 # uci commit firewall
169 # firewall_restart=true
170 # fi
171 ####### end uci example #####
172
173 uset() {
174 printf "+ uset %s\n" "$*"
175 local key="$1"
176 local val="$2"
177 local service="${key%%.*}"
178 restart_var=${service}_restart
179 if [[ ! ${!restart_var} ]]; then
180 eval $restart_var=false
181 fi
182 if [[ $(uci get "$key") != "$val" ]]; then
183 v uci set "$key"="$val"
184 uci commit $service
185 eval $restart_var=true
186 fi
187 }
188
189 udel() {
190 printf "+ udel %s\n" "$*"
191 local key="$1"
192 local val="$2"
193 local service="${key%%.*}"
194 restart_var=${service}_restart
195 if [[ ! ${!restart_var} ]]; then
196 eval $restart_var=false
197 fi
198 if uci get "$key" &>/dev/null; then
199 v uci set "$key"="$val"
200 uci commit $service
201 eval $restart_var=true
202 fi
203 }
204 cedit() {
205 v command cedit -v "$@"
206 }
207
208
209 ### network config
210 ###
211 lan=10.0.0.0
212 if $test; then
213 lan=10.1.0.0
214 elif [[ $hostname == cmc ]]; then
215 lan=10.2.0.0
216 elif $client; then
217 lan=10.3.0.0
218 fi
219
220 if $test; then
221 ssid="gnuv3"
222 elif $secrets; then
223 ssid=${rssid[$h]}
224 fi
225
226 : ${ssid:=librecmc}
227
228
229 if $secrets; then
230 key=${rkey[$h]}
231 fi
232 : ${key:=pictionary49}
233
234 mask=255.255.0.0
235 cidr=16
236 l=${lan%.0}
237
238 passwd -l root ||: #already locked fails
239
240 sed -ibak '/^root:/d' /etc/shadow
241 # /root/router created by manually running passwd then copying the resulting
242 # line. We have no mkpasswd on wrt/librecmc, then we scp it in.
243 cat /root/router >>/etc/shadow
244 # otherwise, serial console gets root login with no password
245 uset system.@system[0].ttylogin 1
246
247
248
249 cat >/usr/bin/archlike-pxe-mount <<'EOFOUTER'
250 #!/bin/bash
251 # symlinks are collapsed for nfs mount points, so use a bind mount.
252 # tried putting this in /etc/config/fstab,
253 # then doing block mount, it didn't work. This doesn't persist across reboots,
254 # todo: figure that out
255 rm -f /etc/fstab
256 for d in /run/{arch,parabola}iso/bootmnt; do
257 cat >>/etc/fstab <<EOF
258 /mnt/usb/tftpboot $d none bind 0 0
259 EOF
260 mount | grep $d &>/dev/null || mount $d
261 done
262 /etc/init.d/nfsd restart
263 EOFOUTER
264 chmod +x /usr/bin/archlike-pxe-mount
265
266 sed -i '/^root:/s,/bin/ash$,/bin/bash,' /etc/passwd
267
268
269
270 uset dropbear.@dropbear[0].PasswordAuth 0
271 uset dropbear.@dropbear[0].RootPasswordAuth 0
272 uset dropbear.@dropbear[0].Port 2220
273 if ! cmp -s /root/dropbear_rsa_host_key /etc/dropbear/dropbear_rsa_host_key; then
274 cp /root/dropbear_rsa_host_key /etc/dropbear/dropbear_rsa_host_key
275 dropbear_restart=true
276 fi
277
278 if $dropbear_restart; then
279 v /etc/init.d/dropbear restart
280 fi
281
282
283 uset network.lan.ipaddr $l.$lanip
284 uset network.lan.netmask $mask
285 if $dev2 || $client; then
286 if $dev2; then
287 uset network.lan.gateway $l.1
288 uset network.wan.proto none
289 uset network.wan6.proto none
290 fi
291 /etc/init.d/dnsmasq stop
292 /etc/init.d/dnsmasq disable
293 /etc/init.d/odhcpd stop
294 /etc/init.d/odhcpd disable
295 rm -f /etc/resolv.conf
296 cat >/etc/resolv.conf <<'EOF'
297 nameserver 8.8.8.8
298 nameserver 8.8.4.4
299 EOF
300
301 # things i tried to keep dnsmasq running but not enabled except local dns,
302 # but it didnt work right and i dont need it anyways.
303 # uset dhcp.wan.ignore $dev2 # default is false
304 # uset dhcp.lan.ignore $dev2 # default is false
305 # uset dhcp.@dnsmasq[0].interface lo
306 # uset dhcp.@dnsmasq[0].localuse 0
307 # uset dhcp.@dnsmasq[0].resolvfile /etc/dnsmasq.conf
308 # uset dhcp.@dnsmasq[0].noresolv 1
309 # todo: populate /etc/resolv.conf with a static value
310
311 else
312 # these are the defaults
313
314 # this is not needed unless switching from the above condition.
315 # disabling just to debug
316 #uset network.lan.gateway ''
317
318 uset network.wan.proto dhcp
319 uset network.wan6.proto dhcpv6
320 /etc/init.d/dnsmasq start
321 # todo: figure out why this returns 1
322 /etc/init.d/dnsmasq enable ||:
323 /etc/init.d/odhcpd start
324 /etc/init.d/odhcpd enable
325 fi
326
327 wireless_restart=false
328
329 if $client; then
330 uset wireless.default_radio0.network 'wwan'
331 uset wireless.default_radio0.ssid ${rclientssid[$h]}
332 uset wireless.default_radio0.encryption 'psk2'
333 uset wireless.default_radio0.device 'radio0'
334 uset wireless.default_radio0.mode 'sta'
335 uset wireless.default_radio0.bssid ${rclientbssid[$h]}
336 # todo: look into whether 5g network is available.
337 uset wireless.default_radio0.key ${rclientkey[$h]}
338 uset wireless.radio0.disabled false
339 uset wireless.radio1.disabled true
340 else
341 # defaults, just reseting in case client config ran
342 uset wireless.default_radio0.network lan
343 uset wireless.default_radio0.mode ap
344 for x in 0 1; do
345 uset wireless.default_radio$x.ssid "$ssid"
346 uset wireless.default_radio$x.key $key
347 uset wireless.default_radio$x.encryption psk2
348 if [[ $mac ]]; then
349 uset wireless.default_radio$x.macaddr $macpre$((macsuf + 2*x))
350 fi
351 # secondary device has wireless disabled
352 uset wireless.radio$x.disabled $dev2
353 done
354 fi
355
356 if grep '^OPENWRT_BOARD="mvebu/cortexa9"' /etc/os-release &>/dev/null; then
357 # todo, I also enabled irqbalance, didnt script it though
358 # https://forum.openwrt.org/t/wrt1900acs-wifi-issue-after-upgrade-from-19-07-to-21-02-vacuum-cleaner-legacy-rate-support/113311/28
359 cat >/etc/rc.local <<'EOF'
360 echo "0" >> /sys/kernel/debug/ieee80211/phy0/mwlwifi/tx_amsdu
361 echo "0" >> /sys/kernel/debug/ieee80211/phy1/mwlwifi/tx_amsdu
362 exit 0
363 EOF
364 chmod +x /etc/rc.local
365 /etc/rc.local
366 uset wireless.radio0.disassoc_low_ack 0
367 uset wireless.radio1.disassoc_low_ack 0
368 fi
369 case $HOSTNAME in
370 cmc)
371 # found with https://openwrt.org/docs/guide-user/network/wifi/iwchan
372 uset wireless.radio0.channel 11
373 ;;
374 esac
375
376
377 # usb, screen, relay are for libremanage
378 # rsync is for brc
379 #
380 # relay package temporarily disabled
381 # /root/relay_1.0-1_mips_24kc.ipk
382 #
383 # note: prometheus-node-exporter-lua-openwrt seems to be a dependency of
384 # prometheus-node-exporter-lua in practice.
385 v pi tcpdump screen rsync unbound-daemon unbound-checkconf \
386 kmod-usb-storage block-mount kmod-fs-ext4 \
387 prometheus-node-exporter-lua-openwrt \
388 prometheus-node-exporter-lua
389 # nfs-kernel-server \
390 # openvpn-openssl adblock libusb-compat \
391 # kmod-usb-serial-cp210x kmod-usb-serial-ftdi \
392
393
394 cat >/etc/libremanage.conf <<EOF
395 ${libremanage_host}_type=switch
396 ${libremanage_host}_channel=1
397 EOF
398
399
400
401 v /etc/init.d/fstab enable ||:
402
403 # rebooting makes mounting work, but comparing lsmod,
404 # i'm guessing this will too. todo, test it.
405 # 255 == module already loaded
406 for mod in scsi_mod sd_mod; do v modprobe $mod || [[ $? == 255 ]]; done
407
408 # for archlike pxe. The default settings in the installer expect to find
409 # the NFS at one of these dirs
410 mkdir -p /run/archiso/bootmnt
411 mkdir -p /run/parabolaiso/bootmnt
412
413 # todo: at some later time, i found /mnt/usb not mounted, watch to see if
414 # that is the case after running this or rebooting.
415 # wiki says safe to do in case of fstab changes:
416
417 ## ian: usb broke on old router. if that happens, can just comment this to disable problems
418 # echo | cedit /etc/config/fstab ||:
419 cedit /etc/config/fstab <<EOF || { v block umount; v block mount; }
420 config global automount
421 option from_fstab 1
422 option anon_mount 1
423
424 config mount
425 # /overlay is an / overlay mount for installing extra packages, etc.
426 # https://openwrt.org/docs/guide-user/additional-software/extroot_configuration
427 option target /mnt/usb
428 # option target /overlay
429 option device /dev/sda1
430 option fstype ext4
431 option options rw,async,noatime,nodiratime
432 option enabled 0
433 EOF
434
435
436 # ian: disabled because afaik I don't need it, no benefit.
437 # config global autoswap
438 # option from_fstab 1
439 # option anon_swap 1
440
441 # config swap
442 # option device /dev/sda1
443 # option enabled 1
444
445
446
447
448 # exportfs -ra wont cut it when its the same path, but now a bind mount
449 # todo: restart nfs when nfs is enabled?
450 #cedit /etc/exports <<EOF || v /etc/init.d/nfsd restart ||:
451 cedit /etc/exports <<EOF ||:
452 /mnt/usb $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
453 # for arch pxe
454 /run/archiso/bootmnt $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
455 /run/parabolaiso/bootmnt $lan/$cidr(rw,no_root_squash,insecure,sync,no_subtree_check)
456 EOF
457
458
459 # todo: enable nfs when we need it only.
460 # v /etc/init.d/portmap start
461 # v /etc/init.d/nfsd start
462 # v /etc/init.d/portmap enable
463 # v /etc/init.d/nfsd enable
464
465
466 cedit /etc/config/prometheus-node-exporter-lua <<'EOF' || /etc/init.d/prometheus-node-exporter-lua restart
467 config prometheus-node-exporter-lua 'main'
468 option listen_ipv6 '0'
469 option listen_interface 'lan'
470 option listen_port '9100
471 EOF
472
473 # default, as of this writing is:
474 # config prometheus-node-exporter-lua 'main'
475 # option listen_interface 'loopback'
476 # option listen_port '9100'
477
478
479
480
481
482 ########## openvpn exampl
483 ########## missing firewall settings for routing lan
484 ########## traffic
485 # v /etc/init.d/openvpn start
486 # v /etc/init.d/openvpn enable
487
488 # # from https://wiki.openwrt.org/doc/uci/firewall
489 # # todo: not sure if /etc/init.d/network needs restarting.
490 # # I did, and I had to restart the vpn afterwards.
491 # # This maps a uci interface to a real interface which is
492 # # managed outside of uci.
493 # cedit /etc/config/network <<'EOF' ||:
494 # config interface 'tun0'
495 # option ifname 'tun0'
496 # option proto 'none'
497 # EOF
498 # cedit /etc/config/openvpn <<'EOF' || v /etc/init.d/openvpn restart
499 # config openvpn my_client_config
500 # option enabled 1
501 # option config /etc/openvpn/client.conf
502 # EOF
503
504 wgip4=10.3.0.1/24
505 wgip6=fdfd::1/64
506 wgport=26000
507
508 network_restart=false
509 if $client; then
510 cedit wific /etc/config/network <<EOF || network_restart=true
511 # https://openwrt.org/docs/guide-user/network/wifi/connect_client_wifi
512 config interface 'wwan'
513 option proto 'dhcp'
514 EOF
515 fi
516
517 cedit /etc/config/network <<EOF || network_restart=true
518 config 'route' 'transmission'
519 option 'interface' 'lan'
520 option 'target' '10.173.0.0'
521 option 'netmask' '255.255.0.0'
522 option 'gateway' '$l.3'
523
524 option interface 'wg0'
525 option proto 'wireguard'
526 option private_key '$(cat /root/wg.key)'
527 option listen_port $wgport
528 list addresses '10.3.0.1/24'
529 list addresses 'fdfd::1/64'
530
531 # tp
532 config wireguard_wg0 'wgclient'
533 option public_key '3q+WJGrm85r59NgeXOIvppxoW4ux/+koSw6Fee1c1TI='
534 option preshared_key '$(cat /root/wg.psk)'
535 list allowed_ips '10.3.0.2/24'
536 list allowed_ips 'fdfd::2/64'
537 EOF
538
539 # Need to reload before we change dnsmasq to give out
540 # static ips in our new range.
541 if $network_restart; then
542 v /etc/init.d/network reload
543 fi
544
545 firewall-cedit() {
546
547 if $client; then
548 cedit wific /etc/config/firewall <<EOF
549 config zone
550 option name wwan
551 option input REJECT
552 option output ACCEPT
553 option forward REJECT
554 option masq 1
555 option mtu_fix 1
556 option network wwan
557 EOF
558 fi
559
560 case $hostname in
561 wrt)
562 cedit host /etc/config/firewall <<EOF
563 config redirect
564 option name ssh
565 option src wan
566 option src_dport 22
567 option dest_ip $l.3
568 option dest lan
569 EOF
570 ;;
571 cmc)
572 cedit host /etc/config/firewall <<EOF
573 config redirect
574 option name ssh
575 option src wan
576 option src_dport 22
577 option dest_ip $l.2
578 option dest lan
579 EOF
580 ;;
581 esac
582
583 cedit /etc/config/firewall <<EOF
584 ## begin no external dns for ziva
585 config rule
586 option src lan
587 option src_ip 10.2.0.23
588 option dest_port 53
589 option dest wan
590 option target REJECT
591
592
593 config rule
594 option src wan
595 option dest_ip 10.2.0.23
596 option src_port 53
597 option dest lan
598 option target REJECT
599
600
601 config rule
602 option src lan
603 option src_ip 10.2.0.31
604 option dest_port 53
605 option dest wan
606 option target REJECT
607
608
609 config rule
610 option src wan
611 option dest_ip 10.2.0.31
612 option src_port 53
613 option dest lan
614 option target REJECT
615
616
617 config rule
618 option src lan
619 option src_ip 10.2.0.32
620 option dest_port 53
621 option dest wan
622 option target REJECT
623
624
625 config rule
626 option src wan
627 option dest_ip 10.2.0.32
628 option src_port 53
629 option dest lan
630 option target REJECT
631 ## end no external dns for ziva
632
633
634 config rule
635 option src wan
636 option target ACCEPT
637 option dest_port 22
638
639 config redirect
640 option name promkd
641 option src wan
642 option src_dport 9091
643 option dest_port 9091
644 option dest_ip $l.2
645 option dest lan
646 config rule
647 option src wan
648 option target ACCEPT
649 option dest_port 9091
650
651
652 config redirect
653 option name sshkd
654 option src wan
655 option src_dport 2202
656 option dest_port 22
657 option dest_ip $l.2
658 option dest lan
659 config rule
660 option src wan
661 option target ACCEPT
662 option dest_port 2202
663
664
665 config redirect
666 option name sshkdalt
667 option src wan
668 option src_dport 8989
669 option dest_port 8989
670 option dest_ip $l.2
671 option dest lan
672 config rule
673 option src wan
674 option target ACCEPT
675 option dest_port 8989
676
677
678 config redirect
679 option name sshx2
680 option src wan
681 option src_dport 2205
682 option dest_port 22
683 option dest_ip $l.5
684 option dest lan
685 config rule
686 option src wan
687 option target ACCEPT
688 option dest_port 2205
689
690 config redirect
691 option name sshx3
692 option src wan
693 option src_dport 2207
694 option dest_port 22
695 option dest_ip $l.7
696 option dest lan
697 config rule
698 option src wan
699 option target ACCEPT
700 option dest_port 2207
701
702 config redirect
703 option name sshtp
704 option src wan
705 option src_dport 2208
706 option dest_port 22
707 option dest_ip $l.8
708 option dest lan
709 config rule
710 option src wan
711 option target ACCEPT
712 option dest_port 2208
713
714 config redirect
715 option name sshbb8
716 option src wan
717 option src_dport 2209
718 option dest_port 22
719 option dest_ip $l.9
720 option dest lan
721 config rule
722 option src wan
723 option target ACCEPT
724 option dest_port 2209
725
726 config redirect
727 option name icecast
728 option src wan
729 option src_dport 8000
730 option dest_port 8000
731 option dest_ip $l.2
732 option dest lan
733 config rule
734 option src wan
735 option target ACCEPT
736 option dest_port 8000
737
738 config rule
739 option name sshwrt
740 option src wan
741 option target ACCEPT
742 option dest_port 2220
743
744 config rule
745 option name wg
746 option src wan
747 option target ACCEPT
748 option dest_port $wgport
749 option proto udp
750
751
752 config redirect
753 option name httpkd
754 option src wan
755 option src_dport 80
756 option dest lan
757 option dest_ip $l.2
758 option proto tcp
759 config rule
760 option src wan
761 option target ACCEPT
762 option dest_port 80
763 option proto tcp
764
765 config redirect
766 option name httpskd
767 option src wan
768 option src_dport 443
769 option dest lan
770 option dest_ip $l.2
771 option proto tcp
772 config rule
773 option src wan
774 option target ACCEPT
775 option dest_port 443
776 option proto tcp
777
778 config redirect
779 option name httpskd8448
780 option src wan
781 option src_dport 8448
782 option dest lan
783 option dest_ip $l.2
784 option proto tcp
785 config rule
786 option src wan
787 option target ACCEPT
788 option dest_port 8448
789 option proto tcp
790
791 config redirect
792 option name syncthing
793 option src wan
794 option src_dport 22001
795 option dest_ip $l.8
796 option dest lan
797 config rule
798 option src wan
799 option target ACCEPT
800 option dest_port 22001
801
802
803 #config redirect
804 # option name i2p
805 # option src wan
806 # option src_dport $i2pport
807 # option dest_ip $l.178
808 # option dest lan
809 #config rule
810 # option src wan
811 # option target ACCEPT
812 # option dest_port $i2pport
813
814 config rule
815 option name ssh-ipv6
816 option src wan
817 option dest lan
818 # note, using mac transform, we could allow all traffic to a host like this,
819 # replacing 1 as appropriate
820 #option dest_ip ::111:11ff:fe11:1111/::ffff:ffff:ffff:ffff
821 option dest_port 22
822 option target ACCEPT
823 option family ipv6
824
825 config rule
826 option name http-ipv6
827 option src wan
828 option dest lan
829 option dest_port 80
830 option target ACCEPT
831 option family ipv6
832
833 config rule
834 option name https-ipv6
835 option src wan
836 option dest lan
837 option dest_port 443
838 option target ACCEPT
839 option family ipv6
840
841 config rule
842 option name node-exporter
843 option src wan
844 option dest lan
845 option dest_port 9101
846 option target ACCEPT
847 option family ipv6
848
849 config rule
850 option name mail587-ipv6
851 option src wan
852 option dest lan
853 option dest_port 587
854 option target ACCEPT
855 option family ipv6
856
857 # include a file with users custom iptables rules
858 config include
859 option path /etc/firewall.user
860 option type 'restore'
861 option family 'ipv4'
862
863
864 EOF
865 }
866 firewall-cedit || firewall_restart=true
867
868 # not using wireguard for now
869 # if ! uci get firewall.@zone[1].network | grep wg0 &>/dev/null; then
870 # # cant mix cedit plus uci
871 # echo | cedit /etc/config/firewall ||:
872 # uci add_list firewall.@zone[1].network=wg0
873 # uci commit firewall
874 # firewall-cedit ||:
875 # firewall_restart=true
876 # fi
877
878
879
880 cedit /etc/hosts <<EOF ||:
881 127.0.1.1 $hostname
882 EOF
883
884
885 #mail_host=$(grep -F mail.iankelling.org /etc/hosts | awk '{print $1}')
886 # if [[ $mail_host ]]; then
887 # sed -i '/^$mail_host/a mail.iankelling.org' /etc/hosts
888 # fi
889
890
891 uset dhcp.@dnsmasq[0].domain b8.nz
892 uset system.@system[0].hostname $hostname
893 uset dhcp.@dnsmasq[0].local
894
895 # uci doesnt seem to have a way to set an empty value,
896 # if you delete it, it goes back to the default. this seems
897 # to be a decent workaround.
898 # todo: setup /etc/resolv.conf to point to 127.0.0.1
899 # later note: disabled, I dunno why I set this.
900 # uset dhcp.@dnsmasq[0].resolvfile /dev/null
901
902 # if dnsmasq happens to not send out a dns server,
903 # odhcpd will send one out like this:
904 # NetworkManager[953]: <info> [1614982580.5192] dhcp6 (wlan0): option dhcp6_name_servers => 'fd58:5801:8e02::1'
905 # but i dont want ipv6 dns, just keep it simple to ipv4.
906 # I know my isp doesnt have ipv6 right now,
907 # so just stop this thing.
908 # note: tried this, it didn't do anything:
909 # uset dhcp.@odhcpd[0].dns 10.2.0.1
910
911 # iank, disabled while debugging.
912 #/etc/init.d/odhcpd stop
913 #/etc/init.d/odhcpd disable
914
915 # todo: make the above conditional on which server this is.
916
917 # avoid errors in log. current isp doesnt have ipv6
918 uset unbound.@unbound[0].protocol ip4_only
919
920 # todo: im not sure all these are needed, but they all look
921 # like good options.
922 # https://blog.cloudflare.com/dns-over-tls-for-openwrt/
923 # https://gist.github.com/vqiu/7b32d3a19a7a09d32e108d998de166c2
924 #https://blog.thestateofme.com/2018/04/04/howto-secure-your-dns-with-a-raspberry-pi-unbound-and-cloudflare-1-1-1-1/
925 #
926 # # i found that the zone example was having no effect on the config
927 # # here:
928 # https://github.com/openwrt/packages/blob/openwrt-19.07/net/unbound/files/README.md
929 #
930 # # todo: unbound-control, i'm not sure what the purpose of that thing is, some
931 # # kind of coordination with dhcp of dnsmasq, but what?
932 #
933 # note: for debugging, edit /etc/init.d/unbound, change
934 # procd_set_param command $PROG -d -c $UB_TOTAL_CONF
935 # to:
936 # procd_set_param command $PROG -vvv -d -c $UB_TOTAL_CONF
937
938 {
939 cat <<'EOF'
940 do-tcp: yes
941 prefetch: yes
942 qname-minimisation: yes
943 rrset-roundrobin: yes
944 use-caps-for-id: yes
945 do-ip6: no
946 private-domain: b8.nz
947 local-zone: "10.in-addr.arpa." transparent
948 access-control-view: 10.2.0.31/32 "youtube"
949 EOF
950
951 if $zblock; then
952 cat <<'EOF'
953 # no sy until that dongle is used by ziva
954
955 # syw
956 #access-control-view: 10.2.0.7/32 "youtube"
957 # bow
958 access-control-view: 10.2.0.29/32 "youtube"
959 # samsungtab
960 access-control-view: 10.2.0.32/32 "youtube"
961 EOF
962 fi
963 } | cedit /etc/unbound/unbound_srv.conf || restart_unbound=true
964
965
966 # dns based blocking vs ip based. with ip, same
967 # server can have multiple domains. in dns,
968 # you have to make sure clients to use the local dns.
969 # https dns will need to be blocked by ip in
970 # order to be comprehensive
971
972 cedit /etc/unbound/unbound_ext.conf <<'EOF' || restart_unbound=true
973 local-data-ptr: "10.2.0.1 cmc.b8.nz"
974 local-data-ptr: "10.2.0.2 kd.b8.nz"
975 local-data-ptr: "10.2.0.3 sy.b8.nz"
976 local-data-ptr: "10.2.0.4 wrt2.b8.nz"
977 local-data-ptr: "10.2.0.5 x2.b8.nz"
978 local-data-ptr: "10.2.0.6 x2w.b8.nz"
979 local-data-ptr: "10.2.0.7 syw.b8.nz"
980 local-data-ptr: "10.2.0.8 amy.b8.nz"
981 local-data-ptr: "10.2.0.9 bb8.b8.nz"
982 local-data-ptr: "10.2.0.12 demohost.b8.nz"
983 local-data-ptr: "10.2.0.14 wrt3.b8.nz"
984 local-data-ptr: "10.2.0.19 brother.b8.nz"
985 local-data-ptr: "10.2.0.23 amyw.b8.nz"
986 local-data-ptr: "10.2.0.25 hp.b8.nz"
987 local-data-ptr: "10.2.0.31 amazontab.b8.nz"
988 local-data-ptr: "10.2.0.32 samsungtab.b8.nz"
989 local-data-ptr: "10.173.0.2 transmission.b8.nz"
990 local-data-ptr: "10.173.8.1 defaultnn.b8.nz"
991 local-data-ptr: "10.173.8.2 nn.b8.nz"
992
993 forward-zone:
994 name: "."
995 # https://developers.cloudflare.com/1.1.1.1/1.1.1.1-for-families/setup-instructions/dns-over-https
996 forward-addr: 1.1.1.3@853#family.cloudflare-dns.com
997 forward-addr: 1.0.0.3@853#family.cloudflare-dns.com
998 forward-ssl-upstream: yes
999 forward-first: no
1000
1001 view:
1002 name: "youtube"
1003 local-zone: "googlevideo.com." refuse
1004 local-zone: "video.google.com." refuse
1005 local-zone: "youtu.be." refuse
1006 local-zone: "youtube-nocookie.com." refuse
1007 local-zone: "youtube-ui.l.google.com." refuse
1008 local-zone: "youtube.com." refuse
1009 local-zone: "youtube.googleapis.com." refuse
1010 local-zone: "youtubeeducation.com." refuse
1011 local-zone: "youtubei.googleapis.com." refuse
1012 local-zone: "yt3.ggpht.com." refuse
1013 local-zone: "youtubekids.com." refuse
1014 # try global if no match in view
1015 view-first: yes
1016 EOF
1017
1018
1019 if $restart_unbound; then
1020 /etc/init.d/unbound restart
1021 if ! unbound-checkconf; then
1022 echo $0: error: unbound-checkconf failed >&2
1023 exit 1
1024 fi
1025 fi
1026
1027
1028 # # disabled for now. i want to selectively enable it
1029 # # for specific hosts.
1030 # if [[ $(uci get adblock.global.adb_enabled) != 0 ]]; then
1031 # v uci set adblock.global.adb_enabled=0
1032 # uci commit adblock
1033 # /etc/init.d/adblock restart
1034 # fi
1035 # # https://github.com/openwrt/packages/tree/master/net/adblock/files
1036 # cat >/etc/crontabs/root <<'EOF'
1037 # 0 06 * * * /etc/init.d/adblock reload
1038 # EOF
1039
1040
1041 # useful: http://wiki.openwrt.org/doc/howto/dhcp.dnsmasq
1042
1043 # sometimes /mnt/usb fails, cuz it's just a flash drive,
1044 # so make sure we have this dir or else dnsmasq will fail
1045 # to start.
1046 mkdir -p /mnt/usb/tftpboot
1047 cedit /etc/dnsmasq.conf <<EOF || dnsmasq_restart=true
1048 # no dns
1049 port=0
1050 server=/b8.nz/#
1051 ptr-record=1.0.2.10.in-addr.arpa.,cmc.b8.nz
1052
1053 # https://ret2got.wordpress.com/2018/01/19/how-your-ethereum-can-be-stolen-using-dns-rebinding/
1054 stop-dns-rebind
1055 rebind-domain-ok=b8.nz
1056
1057 # This says the ip of dns server.
1058 # It is default if dnsmasq is doing dns, otherwise, we have to specify it.
1059 # To see it in action, I ran this from a client machine:
1060 # sudo dhcpcd -o domain_name_servers -T
1061 dhcp-option=6,$l.1
1062
1063
1064
1065 # results from googling around dnsmasq optimizations
1066 # about 50k in memory. router has 62 megs.
1067 # in a browsing session, I probably won't ever do 5000 lookups
1068 # before the ttl expiration or whatever does expiration.
1069 cache-size=10000
1070
1071 # ask all servers, use the one which responds first.
1072 # http://ma.ttwagner.com/make-dns-fly-with-dnsmasq-all-servers/
1073 all-servers
1074
1075 # namebench benchmarks dns servers. google's dns was only
1076 # slightly less fast than some others, and I trust it more
1077 # to give accurate results, stay relatively fast, and
1078 # not do anythin too malicious, so just use that.
1079 # download namebench and run it like this:
1080 # for x in all regional isp global preferred nearby; do ./namebench.py -s \$x -c US -i firefox -m weighted -J 10 -w; echo \$x; hr; done
1081 # google
1082 server=1.1.1.3
1083 server=1.0.0.3
1084 server=2606:4700:4700::1113
1085 server=2606:4700:4700::1003
1086
1087 server=10.2.0.1
1088 # server=8.8.4.4
1089 # server=8.8.8.8
1090 # server=2001:4860:4860::8888
1091 # server=2001:4860:4860::8844
1092
1093
1094 # to fixup existin ips, on the client you can do
1095 # sudo dhclient -r; sudo dhclient <interface-name>
1096 # or on cmc,
1097 # /etc/init.d/dnsmasq stop
1098 # vi /tmp/dhcp.leases
1099 # /etc/init.d/dnsmasq start
1100
1101
1102 # default dhcp range is 100-150
1103 # bottom port, iPXE (PCI 03:00.0) in seabios boot menu
1104 dhcp-host=c8:60:00:31:6b:75,set:kd,$l.2,kd
1105 dhcp-host=94:05:bb:1e:2c:2e,set:sy,$l.3,sy
1106 #dhcp-host=94:05:bb:1e:2c:2e,set:bo,$l.38,bo
1107 # top port, iPXE (PCI 04:00.0) in seabios boot menu
1108 #dhcp-host=c8:60:00:2b:15:07,set:kd,$l.2,kd
1109 # 4 is reserved for a staticly configured host wrt2
1110 # old x2 with bad fan
1111 #dhcp-host=00:1f:16:16:39:24,set:x2,$l.5,x2
1112 dhcp-host=f0:de:f1:81:ec:88,set:x2,$l.5,x2
1113 dhcp-host=c4:8e:8f:44:f5:63,set:x2w,$l.6,x2w
1114 dhcp-host=70:a6:cc:34:09:22,set:syw,$l.7,syw
1115 dhcp-host=80:fa:5b:1c:6e:cf,set:amy,$l.8,amy
1116 # This is so fai can have an explicit name to use for testing,
1117 # or else any random machine which did a pxe boot would get
1118 # reformatted. The mac is from doing a virt-install, cancelling it,
1119 # and copying the generated mac, so it should be randomish.
1120 dhcp-host=52:54:00:9c:ef:ad,set:demohost,$l.12,demohost
1121 dhcp-host=62:03:cb:a8:3e:a3,set:trp,$1.13,trp
1122 # 14 = wrt3
1123 dhcp-host=00:1f:16:14:01:d8,set:x3,$l.18,x3
1124 # BRN001BA98CA823 in dhcp logs
1125 dhcp-host=00:1b:a9:8c:a8:23,set:brother,$l.19,brother
1126
1127 dhcp-host=00:26:b6:f7:d4:d8,set:amyw,$l.23,amyw
1128 dhcp-host=9a:c6:52:6f:ce:7c,set:onep9,$l.24,onep9
1129 dhcp-host=38:63:bb:07:5a:f9,set:hp,$l.25,hp
1130 dhcp-host=00:26:b6:f6:0f:e9,set:frodow,$l.28,frodow
1131 dhcp-host=70:a6:cc:3a:bb:b4,set:bow,$l.29,bow
1132 dhcp-host=6c:56:97:88:7b:74,set:amazontab,$l.31,amazontab
1133 dhcp-host=0a:8a:9b:cf:b5:ec,set:samsungtab,$l.32,samsungtab
1134 dhcp-host=b8:27:eb:78:21:1d,set:pi3b,$l.33,pi3b
1135 dhcp-host=e4:5f:01:07:50:3f,set:pi4,$l.38,pi4
1136 dhcp-host=e4:5f:01:07:50:40,set:pi4w,$l.39,pi4w
1137 #dhcp-host=,set:pi4,$l.33,pi4
1138
1139
1140
1141 # faiserver vm
1142 dhcp-host=52:54:00:56:09:f9,set:faiserver,$l.15,faiserver
1143
1144 # This is the ip it picks by default if dhcp fails,
1145 # so might as well use it.
1146 # hostname is the name it uses according to telnet
1147 dhcp-host=b4:75:0e:94:29:ca,set:switch9429ca,$l.251,switch9429ca
1148
1149 # template
1150 # dhcp-host=,$l.,
1151
1152 # pxe tftpboot for arch-like. todo: openwrt snapshot from 2022-01, it cant
1153 # access /mnt/usb/tftpboot due to ujail sandbox
1154 #enable-tftp=br-lan
1155 #tftp-root=/mnt/usb/tftpboot
1156 #tftp-root=/var/run/dnsmasq/tftpboot
1157
1158
1159 dhcp-optsfile=/var/run/dnsmasq/dhcpopts.conf
1160
1161 # for debugging dhcp
1162 #log-queries=extra
1163 EOF
1164
1165
1166 if $dnsmasq_restart && ! $dev2; then
1167 # todo: can our ptr records be put in /etc/hosts?
1168 # eg: user normal /etc/hosts records, and they wont be used for A resolution
1169 # due to the other settings, but will be used for ptr? then maybe
1170 # we dont have to restart dnsmasq for a dns update?
1171 #
1172 # interesing link:
1173 # https://www.redpill-linpro.com/techblog/2019/08/27/evaluating-local-dnssec-validators.html#toggling-dnssec-validation-1
1174 # we could turn on dnssec validation when wrt gets dnsmasq > 2.80. currently at 2.80.
1175 # also we can turn off dnssec in systemd-resolved if we know the router is doing it.
1176 #
1177 # Also, reload of dnsmasq seems to break things, wifi
1178 # clients were not getting internet connectivity.
1179
1180 v /etc/init.d/dnsmasq restart
1181 fi
1182
1183 if $firewall_restart; then
1184 v /etc/init.d/firewall restart
1185 fi
1186
1187 # this may just restart the network and take care of the network_restart below.
1188 if $wireless_restart; then
1189 v wifi
1190 fi
1191
1192 # todo: we should catch errors and still run this if needed
1193 if $network_restart; then
1194 reboot
1195 fi
1196
1197 exit 0