├── .gitignore ├── LICENSE ├── README.md ├── banip.md ├── configs ├── gateway │ └── etc │ │ ├── config │ │ ├── banip │ │ ├── dhcp │ │ ├── firewall │ │ ├── ntpclient │ │ └── system │ │ └── hotplug.d │ │ └── iface │ │ └── 99-google └── netgear │ └── etc │ └── config │ ├── dhcp │ ├── dropbear │ ├── firewall │ ├── network │ ├── ntpclient │ ├── system │ └── wireless ├── images ├── gateway-luci-banip-blacklist.png ├── gateway-luci-banip-sources.png ├── gateway-luci-firewall.png ├── gateway-luci-vlans.png ├── netgear-luci-ssid.png └── netgear-luci-switch.png └── ntpclient.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/README.md -------------------------------------------------------------------------------- /banip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/banip.md -------------------------------------------------------------------------------- /configs/gateway/etc/config/banip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/config/banip -------------------------------------------------------------------------------- /configs/gateway/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/config/dhcp -------------------------------------------------------------------------------- /configs/gateway/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/config/firewall -------------------------------------------------------------------------------- /configs/gateway/etc/config/ntpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/config/ntpclient -------------------------------------------------------------------------------- /configs/gateway/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/config/system -------------------------------------------------------------------------------- /configs/gateway/etc/hotplug.d/iface/99-google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/gateway/etc/hotplug.d/iface/99-google -------------------------------------------------------------------------------- /configs/netgear/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/dhcp -------------------------------------------------------------------------------- /configs/netgear/etc/config/dropbear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/dropbear -------------------------------------------------------------------------------- /configs/netgear/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/firewall -------------------------------------------------------------------------------- /configs/netgear/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/network -------------------------------------------------------------------------------- /configs/netgear/etc/config/ntpclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/ntpclient -------------------------------------------------------------------------------- /configs/netgear/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/system -------------------------------------------------------------------------------- /configs/netgear/etc/config/wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/configs/netgear/etc/config/wireless -------------------------------------------------------------------------------- /images/gateway-luci-banip-blacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/gateway-luci-banip-blacklist.png -------------------------------------------------------------------------------- /images/gateway-luci-banip-sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/gateway-luci-banip-sources.png -------------------------------------------------------------------------------- /images/gateway-luci-firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/gateway-luci-firewall.png -------------------------------------------------------------------------------- /images/gateway-luci-vlans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/gateway-luci-vlans.png -------------------------------------------------------------------------------- /images/netgear-luci-ssid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/netgear-luci-ssid.png -------------------------------------------------------------------------------- /images/netgear-luci-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/images/netgear-luci-switch.png -------------------------------------------------------------------------------- /ntpclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cydergoth/openwrt_vlan/HEAD/ntpclient.md --------------------------------------------------------------------------------