2
0
Fork 0
This repository has been archived on 2019-12-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ffka-querfunk/assets/zz_custom

17 lines
359 B
Bash
Executable file

#!/bin/sh /etc/rc.common
START=99
boot() {
echo zz_custom started | logger
# route to the dmz via WAN
QFEXT=192.168.3.0/24
QFGW=192.168.2.1
/sbin/ip route add $QFEXT via $QFGW dev br-wan
# ipv6 fixed
/sbin/ip -6 addr add 2a03:2260:a:b::1:66/64 dev br-client
echo zz_custom ended | logger
}