ROUTER FIRMWARE
Download Firmware & Configuration
Get the latest firmware and configuration scripts for your router. Compatible with MikroTik, OpenWRT, and more.
Supported Routers
Configuration Scripts
MikroTik Setup
/interface vlan add name=vlan-wifihapa vlan-id=100 interface=ether1
/ip address add address=10.0.0.1/24 interface=vlan-wifihapa
/ip pool add name=dhcp-pool ranges=10.0.0.10-10.0.0.200
/ip dhcp-server add interface=vlan-wifihapa address-pool=dhcp-pool
Download Script
/ip address add address=10.0.0.1/24 interface=vlan-wifihapa
/ip pool add name=dhcp-pool ranges=10.0.0.10-10.0.0.200
/ip dhcp-server add interface=vlan-wifihapa address-pool=dhcp-pool
OpenWRT Setup
# Create VLAN
uci set network.wifihapa=interface
uci set network.wifihapa.ifname='eth0.100'
uci set network.wifihapa.proto='static'
uci set network.wifihapa.ipaddr='10.0.0.1'
uci commit network
/etc/init.d/network restart
Download Script
uci set network.wifihapa=interface
uci set network.wifihapa.ifname='eth0.100'
uci set network.wifihapa.proto='static'
uci set network.wifihapa.ipaddr='10.0.0.1'
uci commit network
/etc/init.d/network restart