├── .gitignore ├── 22-03 with TV └── etc - wan name interface = eth0 │ ├── checkinternet.sh │ ├── checknftrules.sh │ ├── config │ ├── dhcp │ ├── dropbear │ ├── firewall │ ├── igmpproxy │ ├── luci │ ├── network │ ├── rpcd │ ├── system │ ├── ucitrack │ └── uhttpd │ ├── crontabs │ └── root │ ├── nftables.d │ ├── 10-custom-filter-chains.nft │ ├── README │ └── nft-prio6-rules.include │ ├── rc.local │ └── sysupgrade.conf ├── 22-03 └── etc - wan name interface = eth0 │ ├── checkinternet.sh │ ├── checknftrules.sh │ ├── config │ ├── dhcp │ ├── dropbear │ ├── firewall │ ├── luci │ ├── network │ ├── rpcd │ ├── system │ ├── ucitrack │ └── uhttpd │ ├── crontabs │ └── root │ ├── nftables.d │ ├── 10-custom-filter-chains.nft │ ├── README │ └── nft-prio6-rules.include │ ├── rc.local │ └── sysupgrade.conf ├── README.md ├── eth0-only └── etc │ ├── config │ ├── dhcp │ ├── firewall │ ├── igmpproxy │ └── network │ ├── firewall.user │ ├── rc.local │ └── vlanprio.sh └── eth1ð0 └── etc ├── config ├── dhcp ├── firewall ├── igmpproxy └── network ├── firewall.user ├── rc.local └── vlanprio.sh /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/checkinternet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/checkinternet.sh -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/checknftrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/checknftrules.sh -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/dhcp -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/dropbear -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/firewall -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/igmpproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/igmpproxy -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/luci -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/network -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/rpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/rpcd -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/system -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/ucitrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/ucitrack -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/config/uhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/config/uhttpd -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/crontabs/root -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/nftables.d/10-custom-filter-chains.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/nftables.d/10-custom-filter-chains.nft -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/nftables.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/nftables.d/README -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/nftables.d/nft-prio6-rules.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/nftables.d/nft-prio6-rules.include -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/rc.local -------------------------------------------------------------------------------- /22-03 with TV/etc - wan name interface = eth0/sysupgrade.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03 with TV/etc - wan name interface = eth0/sysupgrade.conf -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/checkinternet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/checkinternet.sh -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/checknftrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/checknftrules.sh -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/dhcp -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/dropbear -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/firewall -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/luci -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/network -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/rpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/rpcd -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/system -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/ucitrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/ucitrack -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/config/uhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/config/uhttpd -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/crontabs/root -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/nftables.d/10-custom-filter-chains.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/nftables.d/10-custom-filter-chains.nft -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/nftables.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/nftables.d/README -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/nftables.d/nft-prio6-rules.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/nftables.d/nft-prio6-rules.include -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/rc.local -------------------------------------------------------------------------------- /22-03/etc - wan name interface = eth0/sysupgrade.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/22-03/etc - wan name interface = eth0/sysupgrade.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/README.md -------------------------------------------------------------------------------- /eth0-only/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/config/dhcp -------------------------------------------------------------------------------- /eth0-only/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/config/firewall -------------------------------------------------------------------------------- /eth0-only/etc/config/igmpproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/config/igmpproxy -------------------------------------------------------------------------------- /eth0-only/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/config/network -------------------------------------------------------------------------------- /eth0-only/etc/firewall.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/firewall.user -------------------------------------------------------------------------------- /eth0-only/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/rc.local -------------------------------------------------------------------------------- /eth0-only/etc/vlanprio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth0-only/etc/vlanprio.sh -------------------------------------------------------------------------------- /eth1ð0/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/config/dhcp -------------------------------------------------------------------------------- /eth1ð0/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/config/firewall -------------------------------------------------------------------------------- /eth1ð0/etc/config/igmpproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/config/igmpproxy -------------------------------------------------------------------------------- /eth1ð0/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/config/network -------------------------------------------------------------------------------- /eth1ð0/etc/firewall.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/firewall.user -------------------------------------------------------------------------------- /eth1ð0/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/rc.local -------------------------------------------------------------------------------- /eth1ð0/etc/vlanprio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubune/openwrt-livebox/HEAD/eth1ð0/etc/vlanprio.sh --------------------------------------------------------------------------------