├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── meta └── openwisp-fw │ ├── Config.in │ ├── Makefile │ ├── files-umts │ └── etc │ │ ├── gcom │ │ └── getreginfo.gcom │ │ └── owispmanager │ │ ├── apn.sh │ │ └── umts-wd.sh │ └── files │ └── etc │ ├── config │ ├── htpdate.default │ ├── network │ ├── owispmanager │ └── system │ ├── crontabs │ └── root │ ├── init.d │ ├── openvpn.new │ └── owispmanager │ ├── owispmanager │ ├── common.sh │ ├── owispmanager.sh │ ├── preinit.sh │ ├── tools │ │ ├── mac80211.sh │ │ └── madwifi.sh │ └── web │ │ ├── cgi-bin │ │ └── owispmanager.sh │ │ ├── images │ │ ├── spinner.gif │ │ └── switch_minus.gif │ │ ├── index.html │ │ ├── javascripts │ │ ├── fluid16.js │ │ ├── jquery-ui.js │ │ └── jquery.js │ │ └── stylesheets │ │ ├── custom.css │ │ └── fluid960 │ │ ├── 960.css │ │ ├── grid.css │ │ ├── ie.css │ │ ├── ie6.css │ │ ├── layout.css │ │ ├── nav.css │ │ ├── reset.css │ │ └── text.css │ ├── ppp │ ├── ip-down.d │ │ └── del_default_route.sh │ └── ip-up.d │ │ └── add_default_route.sh │ └── uci-defaults │ └── 90_openwisp └── tests ├── Readme.rst ├── boards └── ubiquiti.sh ├── dummy_config └── etc │ ├── config │ └── owispmanager │ └── shadow ├── test.sh └── vendor └── tiny-dhcp.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/README.rst -------------------------------------------------------------------------------- /meta/openwisp-fw/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/Config.in -------------------------------------------------------------------------------- /meta/openwisp-fw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/Makefile -------------------------------------------------------------------------------- /meta/openwisp-fw/files-umts/etc/gcom/getreginfo.gcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files-umts/etc/gcom/getreginfo.gcom -------------------------------------------------------------------------------- /meta/openwisp-fw/files-umts/etc/owispmanager/apn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files-umts/etc/owispmanager/apn.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files-umts/etc/owispmanager/umts-wd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files-umts/etc/owispmanager/umts-wd.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/config/htpdate.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-s -t www.google.com" 2 | -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/config/network -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/config/owispmanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/config/owispmanager -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/config/system -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/crontabs/root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/init.d/openvpn.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/init.d/openvpn.new -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/init.d/owispmanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/init.d/owispmanager -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/common.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/owispmanager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/owispmanager.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/preinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/preinit.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/tools/mac80211.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/tools/mac80211.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/tools/madwifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/tools/madwifi.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/cgi-bin/owispmanager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/cgi-bin/owispmanager.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/images/spinner.gif -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/images/switch_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/images/switch_minus.gif -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/index.html -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/javascripts/fluid16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/javascripts/fluid16.js -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/javascripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/javascripts/jquery-ui.js -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/javascripts/jquery.js -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/custom.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/960.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/grid.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/ie.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/ie6.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/layout.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/nav.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/reset.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/owispmanager/web/stylesheets/fluid960/text.css -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/ppp/ip-down.d/del_default_route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/ppp/ip-down.d/del_default_route.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/ppp/ip-up.d/add_default_route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/ppp/ip-up.d/add_default_route.sh -------------------------------------------------------------------------------- /meta/openwisp-fw/files/etc/uci-defaults/90_openwisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/meta/openwisp-fw/files/etc/uci-defaults/90_openwisp -------------------------------------------------------------------------------- /tests/Readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/Readme.rst -------------------------------------------------------------------------------- /tests/boards/ubiquiti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/boards/ubiquiti.sh -------------------------------------------------------------------------------- /tests/dummy_config/etc/config/owispmanager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/dummy_config/etc/config/owispmanager -------------------------------------------------------------------------------- /tests/dummy_config/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/dummy_config/etc/shadow -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/vendor/tiny-dhcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwisp/OpenWISP-Firmware/HEAD/tests/vendor/tiny-dhcp.py --------------------------------------------------------------------------------