├── sbmesh └── common │ ├── PACKAGES │ ├── etc │ ├── uci-defaults │ │ ├── zsbmesh_banner │ │ ├── zsystem │ │ ├── zdropbear │ │ ├── zfirewall │ │ └── zlibremap │ ├── shadow │ ├── dropbear │ │ └── authorized_keys │ └── sbmesh │ │ └── sbmesh.banner │ └── www │ └── luci-static │ └── resources │ └── location │ └── images │ └── marker-icon-2x.png ├── libremesh ├── odhcpd │ ├── PACKAGES │ └── etc │ │ └── uci-defaults │ │ └── zz-use-odhcpd ├── encrypt-11s+ap │ ├── PACKAGES │ └── etc │ │ └── uci-defaults │ │ └── 80-set-11s-encryption ├── only-bmx6 │ ├── PACKAGES │ └── etc │ │ └── uci-defaults │ │ └── 80-lime_only_bmx6.sh ├── only-bmx7 │ ├── PACKAGES │ └── etc │ │ └── config │ │ └── lime-community ├── adhoc │ ├── Makefile │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── 80-lime_set_adhoc.sh ├── default │ └── Makefile ├── encrypt-11s │ ├── root │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 80-set-11s-encryption │ └── Makefile ├── suggested-packages-tiny │ └── Makefile ├── README.md └── suggested-packages │ └── Makefile ├── peoplesopen.net └── common │ └── PACKAGES ├── massmesh └── common │ ├── etc │ ├── dropbear │ │ └── authorized_keys │ ├── uci-defaults │ │ ├── zmassmesh_banner │ │ ├── zsystem │ │ ├── zdropbear │ │ ├── zlibremap │ │ └── zfirewall │ └── massmesh │ │ └── mamesh.banner │ ├── PACKAGES │ └── www │ └── luci-static │ └── resources │ └── location │ └── images │ └── marker-icon-2x.png ├── openNET.io ├── tl-wr841-v11 │ ├── PACKAGES │ └── etc │ │ ├── openNET.io_version │ │ ├── uci-defaults │ │ ├── 91-change-sshd-port │ │ ├── 91-allow-gatewayports │ │ ├── 95_set-remote-syslog │ │ ├── 95_set-timezone │ │ ├── 95_reboot-daily │ │ └── 95_add-sshkeys │ │ ├── rc.local │ │ └── config │ │ └── libremap ├── default │ ├── etc │ │ ├── openNET.io_version │ │ ├── uci-defaults │ │ │ ├── 91-change-sshd-port │ │ │ ├── 91-allow-gatewayports │ │ │ ├── 95_set-remote-syslog │ │ │ ├── 95_set-timezone │ │ │ ├── 95_reboot-daily │ │ │ └── 95_add-sshkeys │ │ ├── rc.local │ │ └── config │ │ │ └── libremap │ └── PACKAGES ├── mir3g │ ├── etc │ │ ├── openNET.io_version │ │ ├── uci-defaults │ │ │ ├── 91-change-sshd-port │ │ │ ├── 91-allow-gatewayports │ │ │ ├── 95_set-remote-syslog │ │ │ ├── 95_set-timezone │ │ │ ├── 95_reboot-daily │ │ │ └── 95_add-sshkeys │ │ └── config │ │ │ └── libremap │ └── PACKAGES └── README.md ├── NonoLibre └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-set_system_opts │ │ ├── 94-dnsmasq_cache_size │ │ ├── 94-dnsmasq_set_dhcp_range │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 97-server-local │ │ ├── 90-add_altermundi_net │ │ ├── 94-dnsmasq_startup_workaround │ │ ├── 94-dnsmasq_disable_ipv6 │ │ └── 91-set_libremap │ └── collectd.conf │ └── usr │ ├── bin │ └── sha1sum │ └── sbin │ └── reset_deaf_phys.sh ├── klimacamp ├── common │ ├── etc │ │ ├── dnsmasq.d │ │ │ └── local-mesh.conf │ │ ├── uci-defaults │ │ │ ├── 95-copy-lucy-index │ │ │ ├── 91-disable_passwd_login │ │ │ ├── 91-set_system_opts │ │ │ └── 94-dnsmasq_startup_workaround │ │ └── dropbear │ │ │ └── authorized_keys │ └── usr │ │ ├── bin │ │ └── sha1sum │ │ └── sbin │ │ └── reset_deaf_phys.sh └── secure │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ └── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_system_opts │ │ └── 94-dnsmasq_startup_workaround │ └── usr │ ├── bin │ └── sha1sum │ └── sbin │ └── reset_deaf_phys.sh ├── moinho └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 97-dropbear │ │ ├── 96-minido-info │ │ ├── 94-dnsmasq_startup_workaround │ │ ├── 91-set_libremap │ │ └── 91-set_bmx6_gw_rating │ ├── dropbear │ │ └── authorized_keys │ └── collectd.conf │ └── PACKAGES ├── wunderkammer └── common │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_system_opts │ │ └── 94-dnsmasq_startup_workaround │ └── dropbear │ │ └── authorized_keys │ └── usr │ └── sbin │ └── reset_deaf_phys.sh ├── labolsa.libre.org.ar └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 91-set_system_opts │ │ ├── 90-add_altermundi_net │ │ ├── 94-dnsmasq_startup_workaround │ │ ├── 91-set_libremap │ │ └── 91-set_bmx6_gw_rating │ └── collectd.conf │ └── PACKAGES ├── nono.libre.org.ar └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-set_system_opts │ │ ├── 94-dnsmasq_cache_size │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 97-server-local │ │ ├── 90-add_altermundi_net │ │ ├── 94-dnsmasq_startup_workaround │ │ └── 91-set_libremap │ └── collectd.conf │ └── usr │ ├── bin │ └── sha1sum │ └── sbin │ └── reset_deaf_phys.sh ├── RedCoMani ├── only-bmx7 │ ├── PACKAGES │ └── etc │ │ ├── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config │ │ └── config │ │ └── lime-community ├── default │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config ├── hacklime │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config ├── hacklimebb │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config └── README.md ├── anisacate.libre.org.ar └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 97-dropbear │ │ ├── 91-set_system_opts │ │ ├── 90-add_altermundi_net │ │ ├── 94-dnsmasq_startup_workaround │ │ ├── 91-set_libremap │ │ └── 91-set_bmx6_gw_rating │ └── collectd.conf │ └── PACKAGES ├── laserranita.libre.org.ar └── comun │ ├── etc │ ├── dnsmasq.d │ │ └── local-mesh.conf │ ├── uci-defaults │ │ ├── 95-copy-lucy-index │ │ ├── 91-disable_passwd_login │ │ ├── 91-set_alfred │ │ ├── 91-set_system_opts │ │ ├── 90-add_altermundi_net │ │ ├── 94-dnsmasq_startup_workaround │ │ ├── 91-set_libremap │ │ └── 91-set_bmx6_gw_rating │ └── collectd.conf │ └── PACKAGES ├── NuestraRed.org ├── only-bmx7 │ ├── PACKAGES │ └── etc │ │ ├── uci-defaults │ │ ├── zfirewall │ │ └── 94-dnsmasq_cache_size │ │ └── config │ │ └── lime-community ├── hacklime │ └── etc │ │ └── uci-defaults │ │ ├── zfirewall │ │ └── 94-dnsmasq_cache_size └── README.md ├── RedINC-Comunitaria ├── only-bmx7 │ ├── PACKAGES │ └── etc │ │ ├── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config │ │ └── config │ │ └── lime-community ├── default │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config ├── hacklime │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config ├── hacklimebb │ └── etc │ │ └── uci-defaults │ │ ├── 94-dnsmasq_cache_size │ │ └── 97-redinc-config └── README.md ├── LibremeshTestBed ├── diagram.png ├── outdoor_sectorial_singleband │ └── root │ │ └── etc │ │ ├── dropbear │ │ └── authorized_keys │ │ └── config │ │ └── lime-community ├── indoor_omnidirectional_dualband │ └── root │ │ └── etc │ │ └── dropbear │ │ └── authorized_keys └── outdoor_omnidirectional_dualband │ └── root │ └── etc │ ├── dropbear │ └── authorized_keys │ └── config │ └── lime-community ├── kollserola ├── README.md ├── generic │ ├── PACKAGES │ └── sbin │ │ └── nano_enable_ppt └── talaia │ └── PACKAGES ├── calafou ├── CALAFOU-B-network_map.jpg ├── indoor │ ├── root │ │ └── etc │ │ │ └── lime-assets │ │ │ └── community │ │ │ └── prometheus_enable │ └── DOTconfig-xiaomi_mirouter_4A_gigabit_edition ├── indoor2 │ ├── root │ │ └── etc │ │ │ └── lime-assets │ │ │ └── community │ │ │ └── prometheus_enable │ └── DOTconfig-xiaomi_mirouter_4A_gigabit_edition ├── outdoor_gateway │ ├── root │ │ └── etc │ │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 50-enforce_100M_wan │ │ │ ├── lime-assets │ │ │ └── community │ │ │ │ └── prometheus_enable │ │ │ └── config │ │ │ └── lime-community │ └── DOTconfig-Plasma_Cloud_PA1200 └── outdoor_nongateway │ ├── root │ └── etc │ │ └── lime-assets │ │ └── community │ │ └── prometheus_enable │ ├── DOTconfig-Plasma_Cloud_PA1200 │ └── Makefile ├── ilario-testing ├── 202501-NS-LoCo-M2-XM-setup2and3a │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-setup3-ssh.pcapng ├── 202501-PA1200-setup1a │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-PA1200-setup2 │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-PA1200-setup3 │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-WDR3600-setup2 │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-WDR3600-setup1and3a │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-YouHua_WR1200JS-setup1a │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-YouHua_WR1200JS-setup2a │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-YouHua_WR1200JS-setup3 │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-NS-LoCo-M2-XM-setup1 │ ├── root │ │ └── etc │ │ │ └── config │ │ │ └── lime-community │ └── Makefile ├── 202501-PA1200-setup1b │ ├── Makefile │ └── root │ │ └── etc │ │ └── config │ │ └── lime-community ├── 202501-WDR3600-setup3b │ ├── Makefile │ └── root │ │ └── etc │ │ └── config │ │ └── lime-community ├── 202501-NS-LoCo-M2-XM-setup3b │ ├── Makefile │ └── root │ │ └── etc │ │ └── config │ │ └── lime-community ├── 202501-YouHua_WR1200JS-setup1b │ ├── Makefile │ └── root │ │ └── etc │ │ └── config │ │ └── lime-community └── 202501-YouHua_WR1200JS-setup2b │ ├── Makefile │ └── root │ └── etc │ └── config │ └── lime-community ├── fumacaonline └── fumacaonline-1801 │ └── etc │ └── config │ └── lime ├── jardibotanic ├── mArcFlex │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ ├── zz_jardibotanic_enable_power_over_ethernet_pass_through │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ ├── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ ├── lime │ │ │ └── lime-community │ │ └── init.d │ │ │ └── poe-passthrough │ └── PACKAGES ├── nodes │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ └── prometheus-node-exporter-lua │ └── PACKAGES ├── BCNmtjAvet │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjXiprer │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj1InstitutBabel │ ├── PACKAGES │ └── etc │ │ ├── uci-defaults │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ └── zz_jardibotanic_disable_dhcp_server │ │ ├── config │ │ ├── prometheus-node-exporter-lua │ │ └── lime │ │ └── hotplug.d │ │ └── lime-config │ │ └── guifi-route.sh ├── BCNmtj2InstitutExpo │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3InfoDalt │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3InfoInterior │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3InfoParet │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3SudafricaEst │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjHivernacle │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjPlPolivaBaix │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjPlPolivaCaixa │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjPlPolivaDalt │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj0OficinasServido │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj0OficinesDaltSud │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj0OficinesServido │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj1InstitutDaltNO │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj1InstitutDaltSO │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj1InstitutMonster │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj1InstitutSector │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj2InstitutExpoFi │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj2InstitutSalvado │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3AraucariaAustral │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtj3DracaenaCanaria │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ ├── zz_jardibotanic_enable_power_over_ethernet_pass_through │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ ├── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ ├── lime │ │ │ └── lime-community │ │ └── init.d │ │ │ └── poe-passthrough │ └── PACKAGES ├── BCNmtj3HypericumCanaria │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjAustraliaPorta │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjFonollIPiCanari │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjPiPinyonerCalifo │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES ├── BCNmtjSudafricaEclonis │ ├── etc │ │ ├── uci-defaults │ │ │ ├── zz_jardibotanic_disable_automatic_internet_sharing │ │ │ └── zz_jardibotanic_disable_dhcp_server │ │ └── config │ │ │ ├── prometheus-node-exporter-lua │ │ │ └── lime │ └── PACKAGES └── BCNVerdi78interior │ ├── etc │ └── config │ │ └── lime │ └── www │ └── index.html ├── meshrc ├── node │ ├── PACKAGES │ └── etc │ │ └── config │ │ └── prometheus-node-exporter-lua └── README.md ├── valsamoggia.ninux.org └── vs-ninux-generic │ ├── root │ └── etc │ │ ├── lime-assets │ │ └── community │ │ │ ├── cron_reboot │ │ │ ├── prometheus_enable │ │ │ └── fix_authorized_keys_permissions │ │ └── config │ │ └── lime-node │ └── Makefile ├── canmasdeu ├── bridge │ ├── PACKAGES │ └── etc │ │ └── uci-defaults │ │ └── disable_dhcp ├── dhcp │ └── PACKAGES └── README.adoc ├── BattleMeshV17 └── workshop │ ├── root │ └── etc │ │ └── config │ │ └── lime-community │ └── Makefile ├── fuma-aonline └── fumacaonline-1607 │ ├── etc │ ├── uci-defaults │ │ ├── 97_add-localserver-to-hosts │ │ └── 96_offline-redirect-crontab │ └── dropbear │ │ └── authorized_keys │ └── usr │ └── bin │ └── offline-redirect.sh ├── mobilquattrosud.com ├── L23nodes │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ ├── lime-node │ │ │ └── lime-community │ │ │ ├── uci-defaults │ │ │ └── 90-default-routes │ │ │ └── smonit │ │ │ └── ping_watchdog │ └── PACKAGES ├── L2nodes │ ├── etc │ │ ├── uci-defaults │ │ │ ├── 90-default-routes │ │ │ └── disable_dhcp │ │ └── smonit │ │ │ └── ping_watchdog │ └── PACKAGES ├── M4S-LR-Tetto │ └── files │ │ └── etc │ │ └── config │ │ └── lime-node └── VVS-LR-Tetto │ └── files │ └── etc │ └── config │ └── lime-node ├── es.hackmeeting.org └── hm2019generic │ └── root │ └── etc │ ├── config │ └── prometheus-node-exporter-lua │ └── uci-defaults │ └── 99-prometheus_enable ├── trans.hackmeeting.org ├── L2nodes │ ├── etc │ │ ├── uci-defaults │ │ │ ├── 90-default-routes │ │ │ └── disable_dhcp │ │ └── smonit │ │ │ └── ping_watchdog │ └── PACKAGES └── README.adoc ├── canodrom.barcelona ├── README.md └── simple │ ├── root │ └── etc │ │ ├── lime-assets │ │ └── community │ │ │ ├── fix_authorized_keys_permissions │ │ │ ├── authorized_keys │ │ │ └── root_password │ │ └── config │ │ ├── lime-6466b38a4180 │ │ ├── lime-6466b3c6edca │ │ ├── lime-6466b3ce2f1e │ │ ├── lime-6466b3faaf88 │ │ ├── lime-10feed3b3d72 │ │ ├── lime-10feede5eef2 │ │ ├── lime-10feede5f0c8 │ │ ├── lime-10feede60ad8 │ │ ├── lime-6470023e9d2a │ │ ├── lime-6470023e9d60 │ │ ├── lime-6470023e9dc6 │ │ ├── lime-6470023e9e8c │ │ ├── lime-6470023e9e90 │ │ ├── lime-647002c303b4 │ │ ├── lime-647002c31334 │ │ ├── lime-647002e29824 │ │ ├── lime-a0f3c1a5f9fc │ │ ├── lime-a0f3c1a5fa36 │ │ ├── lime-a0f3c1e4b63c │ │ └── lime-community │ └── Makefile ├── quintanalibre.org.ar └── generic │ ├── files │ └── etc │ │ └── lime-assets │ │ └── community │ │ ├── fix_authorized_keys_permissions │ │ └── cron_defer_reboot │ └── PACKAGES ├── EspaiVeinal └── Comu │ └── etc │ └── shadow ├── antennine.org ├── an-outdoor-8-64 │ ├── root │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 90_wifi-modes │ ├── README.md │ └── Makefile ├── an-metrics │ ├── root │ │ ├── etc │ │ │ └── uci-defaults │ │ │ │ └── 90_prometheus │ │ └── usr │ │ │ └── bin │ │ │ └── prometheus-push │ └── Makefile ├── an-generic-outdoor-8-64 │ └── Makefile ├── an-generic │ └── Makefile ├── an-lime-owut │ └── Makefile └── an-ca-bundle │ └── Makefile ├── _hacks ├── index.mk ├── postinst.mk └── _preinst_pkg_configs.mk ├── garraflliure └── nodo1 │ └── sbin │ └── nano_enable_ppt ├── freifunk ├── 80211s-sae-batadv-only │ └── Makefile ├── 80211s-sae-bmx7-only │ └── Makefile └── 80211s-sae-bmx7-batadv │ └── Makefile ├── ogisynapse └── common │ └── etc │ └── config │ └── ogisynapse.banner ├── JaexaPora └── comum │ └── etc │ └── dropbear │ └── authorized_keys └── MieresLliure └── README.adoc /sbmesh/common/PACKAGES: -------------------------------------------------------------------------------- 1 | tinc 2 | -------------------------------------------------------------------------------- /libremesh/odhcpd/PACKAGES: -------------------------------------------------------------------------------- 1 | odhcpd 2 | -------------------------------------------------------------------------------- /peoplesopen.net/common/PACKAGES: -------------------------------------------------------------------------------- 1 | lime-proto-babeld 2 | -------------------------------------------------------------------------------- /libremesh/encrypt-11s+ap/PACKAGES: -------------------------------------------------------------------------------- 1 | wpad-mesh 2 | -wpad-mini 3 | -------------------------------------------------------------------------------- /massmesh/common/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | # stub entry 2 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/PACKAGES: -------------------------------------------------------------------------------- 1 | wpad-mesh 2 | -wpad-mini 3 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /klimacamp/common/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /klimacamp/secure/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /moinho/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /libremesh/only-bmx6/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx6-auto-gw-mode 2 | lime-proto-bmx6 3 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /RedCoMani/only-bmx7/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7 2 | bmx7-auto-gw-mode 3 | lime-proto-bmx7 4 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/dnsmasq.d/local-mesh.conf: -------------------------------------------------------------------------------- 1 | local=/mesh/ 2 | 3 | -------------------------------------------------------------------------------- /libremesh/only-bmx7/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7 2 | bmx7-auto-gw-mode 3 | lime-proto-bmx7 4 | -------------------------------------------------------------------------------- /NuestraRed.org/only-bmx7/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7 2 | bmx7-auto-gw-mode 3 | lime-proto-bmx7 4 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/only-bmx7/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7 2 | bmx7-auto-gw-mode 3 | lime-proto-bmx7 4 | -------------------------------------------------------------------------------- /massmesh/common/PACKAGES: -------------------------------------------------------------------------------- 1 | nano 2 | cjdns 3 | luci-app-cjdns 4 | luci-app-firewall 5 | -------------------------------------------------------------------------------- /openNET.io/default/etc/openNET.io_version: -------------------------------------------------------------------------------- 1 | openNET.io LIME SDK v0.8.1 2018-12-04 Nz 2 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/openNET.io_version: -------------------------------------------------------------------------------- 1 | openNET.io LIME SDK v0.8.1 2018-12-04 Nz 2 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/openNET.io_version: -------------------------------------------------------------------------------- 1 | openNET.io LIME SDK v0.8.1 2018-12-04 Nz 2 | -------------------------------------------------------------------------------- /openNET.io/mir3g/PACKAGES: -------------------------------------------------------------------------------- 1 | lime-full 2 | luci-ssl 3 | wpad-mesh 4 | nano 5 | iperf3 6 | -wpad-mini 7 | -------------------------------------------------------------------------------- /NuestraRed.org/hacklime/etc/uci-defaults/zfirewall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "#Proxy redirect" >> /etc/firewall.user 3 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /LibremeshTestBed/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/LibremeshTestBed/diagram.png -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /NuestraRed.org/only-bmx7/etc/uci-defaults/zfirewall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "#Proxy redirect" >> /etc/firewall.user 3 | -------------------------------------------------------------------------------- /klimacamp/common/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /klimacamp/secure/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /kollserola/README.md: -------------------------------------------------------------------------------- 1 | `./cooker -c x86/64 --profile=Generic --flavor=lede_vanilla --community=kollserola/talaia` 2 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /sbmesh/common/etc/uci-defaults/zsbmesh_banner: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /etc/sbmesh/sbmesh.banner >> /etc/banner 3 | exit 0 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/usr/bin/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/NonoLibre/comun/usr/bin/sha1sum -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /calafou/CALAFOU-B-network_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/calafou/CALAFOU-B-network_map.jpg -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup2and3a/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime wifi 2 | list modes 'ieee80211s' 3 | -------------------------------------------------------------------------------- /klimacamp/common/usr/bin/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/klimacamp/common/usr/bin/sha1sum -------------------------------------------------------------------------------- /klimacamp/secure/usr/bin/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/klimacamp/secure/usr/bin/sha1sum -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /massmesh/common/etc/uci-defaults/zmassmesh_banner: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /etc/massmesh/mamesh.banner >> /etc/banner 3 | exit 0 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='ART3' 3 | uci commit system 4 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/95-copy-lucy-index: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cp /www/luci-index.html /www/index.html 3 | 4 | -------------------------------------------------------------------------------- /fumacaonline/fumacaonline-1801/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime 'system' 2 | 3 | config lime 'network' 4 | 5 | config lime 'wifi' 6 | 7 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/91-change-sshd-port: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].Port='42022' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedCoMani/default/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedCoMani/hacklime/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedCoMani/only-bmx7/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /ilario-testing/202501-setup3-ssh.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/ilario-testing/202501-setup3-ssh.pcapng -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/nodes/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /meshrc/node/PACKAGES: -------------------------------------------------------------------------------- 1 | wpad-mesh 2 | prometheus-node-exporter-lua 3 | lime-proto-bmx7 4 | bmx7 5 | bmx7-iwinfo 6 | iwinfo 7 | lime-smart-wifi 8 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='ART3' 3 | uci commit system 4 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/usr/bin/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/nono.libre.org.ar/comun/usr/bin/sha1sum -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/91-change-sshd-port: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].Port='42022' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/94-dnsmasq_set_dhcp_range: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Change dhcp range 3 | sed -i 's,65536,32765,' /etc/config/dhcp 4 | 5 | -------------------------------------------------------------------------------- /NuestraRed.org/hacklime/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /NuestraRed.org/only-bmx7/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedCoMani/hacklimebb/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup1a/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '5ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup2/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup3/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '5ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup2/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '5ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAvet/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjXiprer/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /libremesh/adhoc/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | include ../../profile.mk 4 | 5 | # call BuildPackage - OpenWrt buildroot signature 6 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/91-allow-gatewayports: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].GatewayPorts='on' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/91-allow-gatewayports: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].GatewayPorts='on' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/91-change-sshd-port: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].Port='42022' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/default/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/hacklime/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/hacklimebb/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/only-bmx7/etc/uci-defaults/94-dnsmasq_cache_size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.@dnsmasq[0].cachesize='3000' 3 | uci commit dhcp 4 | 5 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup1and3a/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpo/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoDalt/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoInterior/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoParet/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3SudafricaEst/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjHivernacle/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaBaix/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaCaixa/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaDalt/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/uci-defaults/zz_jardibotanic_enable_power_over_ethernet_pass_through: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/poe-passthrough enable 4 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/91-allow-gatewayports: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].GatewayPorts='on' 3 | uci commit dropbear 4 | -------------------------------------------------------------------------------- /valsamoggia.ninux.org/vs-ninux-generic/root/etc/lime-assets/community/cron_reboot: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | echo "30 3 * * * reboot" >> /etc/crontabs/root 3 | 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup1a/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup2a/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup3/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinasServido/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesDaltSud/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesServido/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltNO/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltSO/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutMonster/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutSector/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpoFi/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutSalvado/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3AraucariaAustral/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3HypericumCanaria/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAustraliaPorta/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjFonollIPiCanari/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPiPinyonerCalifo/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjSudafricaEclonis/etc/uci-defaults/zz_jardibotanic_disable_automatic_internet_sharing: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/watchping disable 4 | -------------------------------------------------------------------------------- /klimacamp/common/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /klimacamp/secure/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /canmasdeu/bridge/PACKAGES: -------------------------------------------------------------------------------- 1 | -6relayd 2 | -dnsmasq 3 | -iptables 4 | -ip6tables 5 | lime-system 6 | -odhcp6c 7 | -odhcpd 8 | -ppp 9 | -ppp-mod-pppoe 10 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /canmasdeu/bridge/etc/uci-defaults/disable_dhcp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /etc/init.d/dnsmasq stop 3 | sleep 1 4 | /etc/init.d/dnsmasq disable 5 | chmod 000 /etc/smonit/dnsmasq 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/uci-defaults/zz_jardibotanic_enable_power_over_ethernet_pass_through: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/poe-passthrough enable 4 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /meshrc/node/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /jardibotanic/nodes/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/91-disable_passwd_login: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci commit dropbear 4 | 5 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /BattleMeshV17/workshop/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime wifi 2 | option country 'DE' 3 | option ap_ssid 'LibreMesh-WBM' 4 | option apname_ssid 'LiMe-WBM/%H' 5 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAvet/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjXiprer/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/nodes/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/91-set_alfred: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set alfred.alfred.mode='slave' 3 | uci set alfred.alfred.start_vis='0' 4 | uci commit alfred 5 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/97-dropbear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix dropbear authorized keys permissions 3 | chmod 0600 /etc/dropbear/authorized_keys 4 | chmod 0700 /etc/dropbear 5 | -------------------------------------------------------------------------------- /fuma-aonline/fumacaonline-1607/etc/uci-defaults/97_add-localserver-to-hosts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Adds local server do /etc/hosts 4 | 5 | echo "10.7.128.10 www" >> /etc/hosts 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoDalt/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoParet/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAvet/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjHivernacle/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjXiprer/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/nodes/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L23nodes/files/etc/config/lime-node: -------------------------------------------------------------------------------- 1 | 2 | config lime 'system' 3 | option hostname 'M4S-SenzaNome' 4 | 5 | config lime 'network' 6 | 7 | config lime 'wifi' 8 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinasServido/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesDaltSud/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesServido/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltNO/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltSO/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutMonster/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutSector/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpo/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpo/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpoFi/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutSalvado/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoDalt/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoInterior/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoInterior/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoParet/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3SudafricaEst/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3SudafricaEst/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAustraliaPorta/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAvet/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjFonollIPiCanari/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjHivernacle/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPiPinyonerCalifo/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaBaix/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaBaix/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaCaixa/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaCaixa/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaDalt/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaDalt/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjSudafricaEclonis/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /klimacamp/common/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='EEST' 3 | # uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /klimacamp/secure/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='EEST' 3 | # uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/96-minido-info: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i '\|/thisnode.info/|{p;s|/thisnode.info/|/meuno.info/|}' /etc/config/dhcp 4 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='EEST' 3 | # uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/97-dropbear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix dropbear authorized keys permissions 3 | chmod 0600 /etc/dropbear/authorized_keys 4 | chmod 0700 /etc/dropbear 5 | -------------------------------------------------------------------------------- /es.hackmeeting.org/hm2019generic/root/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinasServido/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesDaltSud/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesServido/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltNO/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltSO/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutMonster/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutSector/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpoFi/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutSalvado/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3AraucariaAustral/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3AraucariaAustral/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3HypericumCanaria/PACKAGES: -------------------------------------------------------------------------------- 1 | prometheus-node-exporter-lua prometheus-node-exporter-lua-bmx6 prometheus-node-exporter-lua-wifi prometheus-node-exporter-lua-wifi_stations 2 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3HypericumCanaria/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoDalt/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAustraliaPorta/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjFonollIPiCanari/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPiPinyonerCalifo/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjSudafricaEclonis/etc/config/prometheus-node-exporter-lua: -------------------------------------------------------------------------------- 1 | config prometheus-node-exporter-lua 'main' 2 | option listen_address '::' 3 | option listen_port '9100' 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjXiprer/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='ART3' 3 | uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L2nodes/etc/uci-defaults/90-default-routes: -------------------------------------------------------------------------------- 1 | echo "((sleep 120 ; ip route add 0.0.0.0/0 via 10.180.0.254 ; ip route add 0::0/0 via 2a00:1508:1:f003::2)&)" > /etc/rc.local 2 | -------------------------------------------------------------------------------- /trans.hackmeeting.org/L2nodes/etc/uci-defaults/90-default-routes: -------------------------------------------------------------------------------- 1 | echo "((sleep 120 ; ip route add 0.0.0.0/0 via 172.16.8.5 ; ip route add 0::0/0 via 2a00:1508:1:f069::5)&)" > /etc/rc.local 2 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='ART3' 3 | uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpo/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoInterior/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoParet/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3SudafricaEst/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAustraliaPorta/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjHivernacle/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaBaix/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaCaixa/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaDalt/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/91-set_system_opts: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='ART3' 3 | uci set system.@system[0].log_ip='10.5.1.4' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /massmesh/common/etc/uci-defaults/zsystem: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='EST5EDT,M3.2.0,M11.1.0' 3 | uci set system.@system[0].zonename='America/New York' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /sbmesh/common/etc/shadow: -------------------------------------------------------------------------------- 1 | root:$1$SCqxKOZ9$NX1sMkFze4bUDXu93sQQH.:17382:0:99999:7::: 2 | daemon:*:0:0:99999:7::: 3 | ftp:*:0:0:99999:7::: 4 | network:*:0:0:99999:7::: 5 | nobody:*:0:0:99999:7::: 6 | -------------------------------------------------------------------------------- /calafou/indoor/root/etc/lime-assets/community/prometheus_enable: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | 3 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 4 | /etc/init.d/prometheus-node-exporter-lua enable 5 | exit 0 6 | -------------------------------------------------------------------------------- /calafou/indoor2/root/etc/lime-assets/community/prometheus_enable: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | 3 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 4 | /etc/init.d/prometheus-node-exporter-lua enable 5 | exit 0 6 | -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup1/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime wifi 2 | list modes 'ieee80211s' 3 | 4 | config net 5 | option linux_name 'eth0' 6 | list protocols 'wan' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinasServido/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesDaltSud/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesServido/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltNO/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltSO/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutMonster/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutSector/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpoFi/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutSalvado/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3AraucariaAustral/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3HypericumCanaria/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjFonollIPiCanari/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPiPinyonerCalifo/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjSudafricaEclonis/etc/uci-defaults/zz_jardibotanic_disable_dhcp_server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /etc/smonit/dnsmasq 4 | /etc/init.d/dnsmasq disable 5 | /etc/init.d/odhcpd disable 6 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L23nodes/files/etc/uci-defaults/90-default-routes: -------------------------------------------------------------------------------- 1 | echo "((sleep 120 ; ip route add 0.0.0.0/0 via 10.180.0.254 ; ip route add 0::0/0 via 2a00:1508:1:f003::2)&)" > /etc/rc.local 2 | -------------------------------------------------------------------------------- /sbmesh/common/etc/uci-defaults/zsystem: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set system.@system[0].timezone='PST8PDT,M3.2.0,M11.1.0' 3 | uci set system.@system[0].zonename='America/Los Angeles' 4 | uci commit system 5 | -------------------------------------------------------------------------------- /calafou/outdoor_gateway/root/etc/hotplug.d/iface/50-enforce_100M_wan: -------------------------------------------------------------------------------- 1 | [ ifup = "$ACTION" ] && { 2 | [ -n "$DEVICE" ] && { 3 | ethtool -s "$DEVICE" autoneg off speed 100 duplex full 4 | } 5 | } 6 | 7 | -------------------------------------------------------------------------------- /canodrom.barcelona/README.md: -------------------------------------------------------------------------------- 1 | # Experimental mesh network 2 | **by Digicòria & DWEB community @ Canòdrom** 3 | 4 | More info on the project here: https://canodrom.barcelona/ca/comunitat/digicoria 5 | 6 | -------------------------------------------------------------------------------- /es.hackmeeting.org/hm2019generic/root/etc/uci-defaults/99-prometheus_enable: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 3 | /etc/init.d/prometheus-node-exporter-lua enable 4 | exit 0 5 | -------------------------------------------------------------------------------- /calafou/outdoor_gateway/root/etc/lime-assets/community/prometheus_enable: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | 3 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 4 | /etc/init.d/prometheus-node-exporter-lua enable 5 | exit 0 6 | -------------------------------------------------------------------------------- /calafou/outdoor_nongateway/root/etc/lime-assets/community/prometheus_enable: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | 3 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 4 | /etc/init.d/prometheus-node-exporter-lua enable 5 | exit 0 6 | -------------------------------------------------------------------------------- /libremesh/default/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Default LibreMesh configuration 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /sbmesh/common/www/luci-static/resources/location/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/sbmesh/common/www/luci-static/resources/location/images/marker-icon-2x.png -------------------------------------------------------------------------------- /massmesh/common/www/luci-static/resources/location/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libremesh/network-profiles/HEAD/massmesh/common/www/luci-static/resources/location/images/marker-icon-2x.png -------------------------------------------------------------------------------- /libremesh/odhcpd/etc/uci-defaults/zz-use-odhcpd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dhcp.odhcpd.maindhcp='1' 3 | uci set dhcp.lan.dhcpv4='server' 4 | uci set dhcp.lan.ignore='0' 5 | uci commit dhcp 6 | 7 | /etc/init.d/odhcpd enable 8 | -------------------------------------------------------------------------------- /moinho/comun/PACKAGES: -------------------------------------------------------------------------------- 1 | collectd collectd-mod-network collectd-mod-interface collectd-mod-syslog collectd-mod-tcpconns collectd-mod-iwinfo collectd-mod-load collectd-mod-memory collectd-mod-ping collectd-mod-processes 2 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/lime-assets/community/fix_authorized_keys_permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Fix dropbear authorized keys permissions 4 | chmod 0600 /etc/dropbear/authorized_keys 5 | chmod 0700 /etc/dropbear 6 | -------------------------------------------------------------------------------- /quintanalibre.org.ar/generic/files/etc/lime-assets/community/fix_authorized_keys_permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix dropbear authorized keys permissions 3 | chmod 0600 /etc/dropbear/authorized_keys 4 | chmod 0700 /etc/dropbear 5 | -------------------------------------------------------------------------------- /valsamoggia.ninux.org/vs-ninux-generic/root/etc/lime-assets/community/prometheus_enable: -------------------------------------------------------------------------------- 1 | !#/bin/sh 2 | 3 | [ -x /etc/init.d/prometheus-node-exporter-lua ] && 4 | /etc/init.d/prometheus-node-exporter-lua enable 5 | exit 0 6 | -------------------------------------------------------------------------------- /EspaiVeinal/Comu/etc/shadow: -------------------------------------------------------------------------------- 1 | root:$1$yK5dyZ8b$8FCAA/NChlQve/ZDmFISE1:17580:0:99999:7::: 2 | daemon:*:0:0:99999:7::: 3 | ftp:*:0:0:99999:7::: 4 | network:*:0:0:99999:7::: 5 | nobody:*:0:0:99999:7::: 6 | dnsmasq:x:0:0:99999:7::: 7 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/97-server-local: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci del_list dhcp.@dnsmasq[0].address='/server.nono.libre.org.ar/10.157.128.1' 3 | uci add_list dhcp.@dnsmasq[0].address='/server.nono.libre.org.ar/10.157.128.1' 4 | 5 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup2/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup3/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAvet/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjAvet 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.82/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:82/64' 7 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/PACKAGES: -------------------------------------------------------------------------------- 1 | collectd collectd-mod-network collectd-mod-interface collectd-mod-syslog collectd-mod-tcpconns collectd-mod-iwinfo collectd-mod-load collectd-mod-memory collectd-mod-ping collectd-mod-processes 2 | -------------------------------------------------------------------------------- /libremesh/encrypt-11s/root/etc/uci-defaults/80-set-11s-encryption: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set lime-defaults.wifi.ieee80211s_encryption='psk2+aes' 3 | uci set lime-defaults.wifi.ieee80211s_key='libremesh' 4 | uci commit lime-defaults 5 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/97-server-local: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci del_list dhcp.@dnsmasq[0].address='/server.nono.libre.org.ar/10.6.1.1' 3 | uci add_list dhcp.@dnsmasq[0].address='/server.nono.libre.org.ar/10.6.1.1' 4 | 5 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/PACKAGES: -------------------------------------------------------------------------------- 1 | collectd collectd-mod-network collectd-mod-interface collectd-mod-syslog collectd-mod-tcpconns collectd-mod-iwinfo collectd-mod-load collectd-mod-memory collectd-mod-ping collectd-mod-processes 2 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup1a/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup1b/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup2/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup3b/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjXiprer/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjXiprer 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.81/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:81/64' 7 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/PACKAGES: -------------------------------------------------------------------------------- 1 | collectd collectd-mod-network collectd-mod-interface collectd-mod-syslog collectd-mod-tcpconns collectd-mod-iwinfo collectd-mod-load collectd-mod-memory collectd-mod-ping collectd-mod-processes 2 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /openNET.io/default/PACKAGES: -------------------------------------------------------------------------------- 1 | lime-full 2 | luci-ssl 3 | wpad-mesh 4 | nano 5 | iperf3 6 | ath10k-firmware-qca988x 7 | kmod-ath10k 8 | -wpad-mini 9 | 10 | ### Remove these for openwrt-18.06 11 | wpad 12 | authsae 13 | hostapd 14 | -------------------------------------------------------------------------------- /quintanalibre.org.ar/generic/PACKAGES: -------------------------------------------------------------------------------- 1 | collectd collectd-mod-network collectd-mod-interface collectd-mod-syslog collectd-mod-tcpconns collectd-mod-iwinfo collectd-mod-load collectd-mod-memory collectd-mod-ping collectd-mod-processes 2 | -------------------------------------------------------------------------------- /valsamoggia.ninux.org/vs-ninux-generic/root/etc/lime-assets/community/fix_authorized_keys_permissions: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Fix dropbear authorized keys permissions 3 | chmod 0600 /etc/dropbear/authorized_keys 4 | chmod 0700 /etc/dropbear 5 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/90-add_altermundi_net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #uci set bmx6.altermundiV4="tunOut" 3 | #uci set bmx6.altermundiV4.tunOut="altermundiV4" 4 | #uci set bmx6.altermundiV4.network="138.255.88.0/22" 5 | #uci commit bmx6 6 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup1/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup3b/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup3b/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime wifi 2 | list modes 'ieee80211s' 3 | 4 | config net 5 | option linux_name 'eth0' 6 | list protocols 'batadv:%N1' 7 | list protocols 'babeld:17' 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup1and3a/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup1a/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup1b/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup2a/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup2b/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup3/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoDalt/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj3InfoDalt 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.131/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:131/64' 7 | -------------------------------------------------------------------------------- /klimacamp/common/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /klimacamp/secure/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/94-dnsmasq_disable_ipv6: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### dnsmasq disable ipv6 3 | sed "\|enable-ra|d" -i /etc/dnsmasq.d/lime-proto-anygw-20-ipv6.conf 4 | sed "\|dhcp-range*|d" -i /etc/dnsmasq.d/lime-proto-anygw-20-ipv6.conf 5 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/90-add_altermundi_net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.altermundiV4="tunOut" 3 | uci set bmx6.altermundiV4.tunOut="altermundiV4" 4 | uci set bmx6.altermundiV4.network="138.255.88.0/22" 5 | uci commit bmx6 6 | -------------------------------------------------------------------------------- /antennine.org/an-outdoor-8-64/root/etc/uci-defaults/90_wifi-modes: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set lime-node.5ghz=lime-wifi-band 3 | uci set lime-node.5ghz.modes='ieee80211s' 4 | uci add_list lime-node.5ghz.modes='ap' 5 | uci commit lime-node 6 | exit 0 7 | -------------------------------------------------------------------------------- /canmasdeu/dhcp/PACKAGES: -------------------------------------------------------------------------------- 1 | -6relayd 2 | bmx6-auto-gw-mode 3 | -dnsmasq 4 | lime-docs-minimal 5 | lime-hwd-openwrt-wan 6 | lime-proto-anygw 7 | lime-proto-bmx6 8 | lime-proto-wan 9 | lime-system 10 | -odhcpd 11 | -ppp 12 | -ppp-mod-pppoe 13 | -------------------------------------------------------------------------------- /ilario-testing/202501-NS-LoCo-M2-XM-setup2and3a/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Profile for testing release 2024.1 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjHivernacle/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjHivernacle 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.141/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:141/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaBaix/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjPlPolivaBaix 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.92/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:92/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaCaixa/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjPlPolivaCaixa 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.93/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:93/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPlPolivaDalt/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjPlPolivaDalt 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.91/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:91/64' 7 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/90-add_altermundi_net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.altermundiV4="tunOut" 3 | uci set bmx6.altermundiV4.tunOut="altermundiV4" 4 | uci set bmx6.altermundiV4.network="138.255.88.0/22" 5 | uci commit bmx6 6 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='moinho' 3 | uci set libremap.settings.community_lat='-31.80461' 4 | uci set libremap.settings.community_lon='-64.41609' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/90-add_altermundi_net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #uci set bmx6.altermundiV4="tunOut" 3 | #uci set bmx6.altermundiV4.tunOut="altermundiV4" 4 | #uci set bmx6.altermundiV4.network="138.255.88.0/22" 5 | #uci commit bmx6 6 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoInterior/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'BCNmtj3InfoInterior' 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.130/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:130/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3SudafricaEst/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj3SudafricaEst 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.135/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:135/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjAustraliaPorta/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjAustraliaPorta 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.90/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:90/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjFonollIPiCanari/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjFonollIPiCanari 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.83/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:83/64' 7 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/90-add_altermundi_net: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.altermundiV4="tunOut" 3 | uci set bmx6.altermundiV4.tunOut="altermundiV4" 4 | uci set bmx6.altermundiV4.network="138.255.88.0/22" 5 | uci commit bmx6 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinasServido/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj0OficinasServido 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.100/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:100/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesDaltSud/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj0OficinesDaltSud 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.101/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:101/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj0OficinesServido/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj0OficinesServido 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.100/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:100/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltNO/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj1InstitutDaltNO 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.111/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:111/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutMonster/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj1InstitutMonster 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.110/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:110/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutSector/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj1InstitutSector 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.112/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:112/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpoFi/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj2InstitutExpoFi 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.122/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:122/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3HypericumCanaria/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj3HypericumCanaria 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.132/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:132/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjPiPinyonerCalifo/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjPiPinyonerCalifo 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.80/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:80/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtjSudafricaEclonis/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtjSudafricaEclonis 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.70/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:70/64' 7 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/94-dnsmasq_startup_workaround: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ### Workaround dnsmasq procd init.d bug 3 | sed -i 's,procd_add_raw_trigger "interface.*" 2000,procd_add_raw_trigger "interface.*" 60000,' /etc/init.d/dnsmasq 4 | -------------------------------------------------------------------------------- /sbmesh/common/etc/uci-defaults/zdropbear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci set dropbear.@dropbear[0].Port='22' 4 | uci set dropbear.@dropbear[0].PasswordAuth='off' 5 | uci commit 6 | /etc/init.d/network restart 7 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='nono.libre.org.ar' 3 | uci set libremap.settings.community_lat='-31.808685' 4 | uci set libremap.settings.community_lon='-64.977965' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutDaltSO/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj1InstitutDaltSO 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.111/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:111/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutExpo/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj2InstitutExpo 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.121/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:121/64' 7 | -------------------------------------------------------------------------------- /massmesh/common/etc/uci-defaults/zdropbear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # uci set dropbear.@dropbear[0].RootPasswordAuth='off' 3 | uci set dropbear.@dropbear[0].Port='22' 4 | # uci set dropbear.@dropbear[0].PasswordAuth='off' 5 | uci commit 6 | /etc/init.d/network restart 7 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Simple profile for experimenting with mesh networks at Canodrom in Barcelona 4 | 5 | include ../../profile.mk 6 | 7 | # call BuildPackage - OpenWrt buildroot signature 8 | -------------------------------------------------------------------------------- /ilario-testing/202501-PA1200-setup1b/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '5ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | 5 | config net 6 | option linux_name 'ethernet1' 7 | list protocols 'batadv:%N1' 8 | list protocols 'babeld:17' 9 | -------------------------------------------------------------------------------- /ilario-testing/202501-WDR3600-setup3b/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | 5 | config net 6 | option linux_name 'eth0.1' 7 | list protocols 'batadv:%N1' 8 | list protocols 'babeld:17' 9 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj2InstitutSalvado/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj2InstitutSalvado 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.120/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:120/64' 7 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3AraucariaAustral/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj3AraucariaAustral 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.133/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:133/64' 7 | -------------------------------------------------------------------------------- /libremesh/encrypt-11s/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Use 802.11s for mesh and WPA3 encryption 4 | PROFILE_DEPENDS:=+wpad-mesh-openssl 5 | 6 | include ../../profile.mk 7 | 8 | # call BuildPackage - OpenWrt buildroot signature 9 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='nono.libre.org.ar' 3 | uci set libremap.settings.community_lat='-31.808685' 4 | uci set libremap.settings.community_lon='-64.977965' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /valsamoggia.ninux.org/vs-ninux-generic/root/etc/config/lime-node: -------------------------------------------------------------------------------- 1 | 2 | config lime 'system' 3 | # option hostname 'ninux-%M4%M5%M6' 4 | 5 | config lime 'network' 6 | 7 | config lime 'wifi' 8 | # option channel_5ghz '48' 9 | # option distance_5ghz '8000' 10 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup1b/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | 5 | config net 6 | option linux_name 'lan1' 7 | list protocols 'batadv:%N1' 8 | list protocols 'babeld:17' 9 | -------------------------------------------------------------------------------- /ilario-testing/202501-YouHua_WR1200JS-setup2b/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime-wifi-band '2ghz' 2 | list modes 'ap' 3 | list modes 'apname' 4 | 5 | config net 6 | option linux_name 'lan1' 7 | list protocols 'batadv:%N1' 8 | list protocols 'babeld:17' 9 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='labolsa.libre.org.ar' 3 | uci set libremap.settings.community_lat='-31.80461' 4 | uci set libremap.settings.community_lon='-64.41609' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L2nodes/etc/uci-defaults/disable_dhcp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ -x /etc/init.d/dnsmasq ] && 3 | { 4 | /etc/init.d/dnsmasq stop 5 | sleep 1 6 | /etc/init.d/dnsmasq disable 7 | } 8 | 9 | [ -x /etc/smonit/dnsmasq ] && 10 | chmod 000 /etc/smonit/dnsmasq 11 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='anisacate.libre.org.ar' 3 | uci set libremap.settings.community_lat='-31.6950359' 4 | uci set libremap.settings.community_lon='-64.4127960' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /antennine.org/an-metrics/root/etc/uci-defaults/90_prometheus: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | unique_append() { 3 | [ ! -f "$2" ] && mkdir -p "$(dirname "$2")" && touch "$2"; 4 | grep -qF "$1" "$2" || echo "$1" >> "$2"; 5 | } 6 | unique_append '*/5 * * * * prometheus-push' /etc/crontabs/root 7 | -------------------------------------------------------------------------------- /sbmesh/common/etc/uci-defaults/zfirewall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "#block access to private address space" >> /etc/firewall.user 3 | echo "iptables -I FORWARD -d 192.168.0.0/16 -j DROP" >> /etc/firewall.user 4 | echo "iptables -I FORWARD -d 172.16.0.0/12 -j DROP" >> /etc/firewall.user 5 | -------------------------------------------------------------------------------- /trans.hackmeeting.org/L2nodes/etc/uci-defaults/disable_dhcp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ -x /etc/init.d/dnsmasq ] && 3 | { 4 | /etc/init.d/dnsmasq stop 5 | sleep 1 6 | /etc/init.d/dnsmasq disable 7 | } 8 | 9 | [ -x /etc/smonit/dnsmasq ] && 10 | chmod 000 /etc/smonit/dnsmasq 11 | -------------------------------------------------------------------------------- /openNET.io/README.md: -------------------------------------------------------------------------------- 1 | To cook openNET.io LiMe images from Debian / Ubuntu: 2 | 3 | ```bash 4 | mkdir -p LiMe 5 | cd LiMe 6 | ``` 7 | ```bash 8 | wget https://raw.githubusercontent.com/libremesh/network-profiles/master/openNET.io/openNET.io-cooker 9 | bash on-cooker 10 | ``` 11 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/95_set-remote-syslog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to send UDP syslog packets through network 4 | if ! uci -q get system.@system[0].log_ip > /dev/null ; then 5 | uci set system.@system[0].log_ip="100.248.248.1" 6 | uci commit system 7 | fi 8 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/91-set_libremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set libremap.settings.community='LaSerranitaLibre' 3 | uci set libremap.settings.community_lat='-31.7389071667272' 4 | uci set libremap.settings.community_lon='-64.45805311203003' 5 | uci commit libremap 6 | -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/95_set-remote-syslog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to send UDP syslog packets through network 4 | if ! uci -q get system.@system[0].log_ip > /dev/null ; then 5 | uci set system.@system[0].log_ip="100.248.248.1" 6 | uci commit system 7 | fi 8 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L2nodes/PACKAGES: -------------------------------------------------------------------------------- 1 | -6relayd 2 | batctl 3 | -dnsmasq-dhcpv6 4 | -dnsmasq-full 5 | -dnsmasq 6 | ethtool 7 | -firewall 8 | -iptables 9 | -ip6tables 10 | lime-proto-batadv 11 | lime-system 12 | -odhcp6c 13 | -odhcpd 14 | -ppp 15 | -ppp-mod-pppoe 16 | smonit 17 | sprunge 18 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/95_set-remote-syslog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to send UDP syslog packets through network 4 | if ! uci -q get system.@system[0].log_ip > /dev/null ; then 5 | uci set system.@system[0].log_ip="100.248.248.1" 6 | uci commit system 7 | fi 8 | -------------------------------------------------------------------------------- /mobilquattrosud.com/M4S-LR-Tetto/files/etc/config/lime-node: -------------------------------------------------------------------------------- 1 | config lime 'system' 2 | option hostname 'M4S-LR-Tetto' 3 | 4 | config lime 'network' 5 | 6 | config lime 'wifi' 7 | list channel_2ghz '11' 8 | list channel_5ghz '50' 9 | list channel_5ghz '157' 10 | option distance '1500' 11 | -------------------------------------------------------------------------------- /mobilquattrosud.com/VVS-LR-Tetto/files/etc/config/lime-node: -------------------------------------------------------------------------------- 1 | config lime 'system' 2 | option hostname 'VVS-LR-Tetto' 3 | 4 | config lime 'network' 5 | 6 | config lime 'wifi' 7 | list channel_2ghz '11' 8 | list channel_5ghz '157' 9 | list channel_5ghz '48' 10 | option distance '1500 11 | -------------------------------------------------------------------------------- /trans.hackmeeting.org/L2nodes/PACKAGES: -------------------------------------------------------------------------------- 1 | -6relayd 2 | batctl 3 | -dnsmasq-dhcpv6 4 | -dnsmasq-full 5 | -dnsmasq 6 | ethtool 7 | -firewall 8 | -iptables 9 | -ip6tables 10 | lime-proto-batadv 11 | lime-system 12 | -odhcp6c 13 | -odhcpd 14 | -ppp 15 | -ppp-mod-pppoe 16 | smonit 17 | sprunge 18 | -------------------------------------------------------------------------------- /kollserola/generic/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7-auto-gw-mode 2 | bmx7-auto-gw-bw-mode 3 | lime-proto-bmx7 4 | luci-app-bmx7 5 | bmx7-mdns 6 | bmx7-topology 7 | bmx7-sms 8 | bmx7-json 9 | lime-proto-wan 10 | lime-system 11 | lime-hwd-openwrt-wan 12 | lime-debug 13 | kmod-ath9k 14 | smonit 15 | luci-app-qos 16 | -------------------------------------------------------------------------------- /kollserola/talaia/PACKAGES: -------------------------------------------------------------------------------- 1 | bmx7-auto-gw-mode 2 | bmx7-auto-gw-bw-mode 3 | lime-proto-bmx7 4 | luci-app-bmx7 5 | bmx7-mdns 6 | bmx7-topology 7 | bmx7-sms 8 | bmx7-json 9 | lime-proto-wan 10 | lime-system 11 | lime-hwd-openwrt-wan 12 | lime-debug 13 | kmod-ath9k 14 | smonit 15 | luci-app-qos 16 | -------------------------------------------------------------------------------- /openNET.io/default/etc/rc.local: -------------------------------------------------------------------------------- 1 | # Restart network after 64 seconds + random [0;9] amount of seconds from boot as temporary workaround to gateway-changed-while-node-offline issue [20170514 | Nk] 2 | 3 | sleep 64 && sleep `head /dev/urandom | tr -dc "0123456789" | head -c1` && /etc/init.d/network restart 4 | -------------------------------------------------------------------------------- /_hacks/index.mk: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_NAME=$(notdir ${CURDIR}) 4 | PROFILE_COMMUNITY=$(lastword $(filter-out $(PROFILE_NAME),$(subst /, ,$(CURDIR)))) 5 | PKG_NAME:=profile-$(PROFILE_COMMUNITY)-$(PROFILE_NAME) 6 | 7 | include ../../_hacks/preinst.mk 8 | include ../../_hacks/postinst.mk 9 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/rc.local: -------------------------------------------------------------------------------- 1 | # Restart network after 64 seconds + random [0;9] amount of seconds from boot as temporary workaround to gateway-changed-while-node-offline issue [20170514 | Nk] 2 | 3 | sleep 64 && sleep `head /dev/urandom | tr -dc "0123456789" | head -c1` && /etc/init.d/network restart 4 | -------------------------------------------------------------------------------- /jardibotanic/BCNVerdi78interior/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'BCNVerdi78interior' 3 | 4 | config lime network 5 | option main_ipv4_address '10.90.235.35/27' 6 | option main_ipv6_address '2a00:1508:0a90:2353::35/64' 7 | 8 | config lime wifi 9 | option ap_ssid 'casa_peris' 10 | -------------------------------------------------------------------------------- /fuma-aonline/fumacaonline-1607/etc/uci-defaults/96_offline-redirect-crontab: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | #changes permissions on offline script 4 | chmod u+x /usr/bin/offline-redirect.sh 5 | 6 | ### Checks every minute if there is internet. Otherwise redirects 7 | 8 | echo "* * * * * /usr/bin/offline-redirect.sh" >> /etc/crontabs/root 9 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/init.d/poe-passthrough: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | 3 | START=88 4 | 5 | start() 6 | { 7 | sleep 1 8 | echo 1 > /sys/class/gpio/poe-passthrough/value 9 | } 10 | 11 | stop() 12 | { 13 | echo 0 > /sys/class/gpio/poe-passthrough/value 14 | } 15 | 16 | reload() 17 | { 18 | stop 19 | start 20 | } 21 | -------------------------------------------------------------------------------- /garraflliure/nodo1/sbin/nano_enable_ppt: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #GPIO=20 # TP-LINK CPE210/510 3 | GPIO=8 # Ubiquiti Nanostation M2/M5 (XM) 4 | #GPIO=2 # Ubiquiti Nanostation M2/M5 (XW) 5 | set -x 6 | echo $GPIO > /sys/class/gpio/export 7 | echo out > /sys/class/gpio/gpio$GPIO/direction 8 | echo 1 > /sys/class/gpio/gpio$GPIO/value 9 | set +x 10 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/etc/hotplug.d/lime-config/guifi-route.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | uci set network.guifiroute=route 4 | uci set network.guifiroute.interface=lan 5 | uci set network.guifiroute.target=10.0.0.0 6 | uci set network.guifiroute.netmask=255.0.0.0 7 | uci set network.guifiroute.gateway=10.1.105.11 8 | uci commit network 9 | -------------------------------------------------------------------------------- /kollserola/generic/sbin/nano_enable_ppt: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #GPIO=20 # TP-LINK CPE210/510 3 | GPIO=8 # Ubiquiti Nanostation M2/M5 (XM) 4 | #GPIO=2 # Ubiquiti Nanostation M2/M5 (XW) 5 | set -x 6 | echo $GPIO > /sys/class/gpio/export 7 | echo out > /sys/class/gpio/gpio$GPIO/direction 8 | echo 1 > /sys/class/gpio/gpio$GPIO/value 9 | set +x 10 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/init.d/poe-passthrough: -------------------------------------------------------------------------------- 1 | #!/bin/sh /etc/rc.common 2 | 3 | START=88 4 | 5 | start() 6 | { 7 | sleep 1 8 | echo 1 > /sys/class/gpio/poe-passthrough/value 9 | } 10 | 11 | stop() 12 | { 13 | echo 0 > /sys/class/gpio/poe-passthrough/value 14 | } 15 | 16 | reload() 17 | { 18 | stop 19 | start 20 | } 21 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/lime-assets/community/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL6yvUIq5lyDxswAUfo8vrsDaG9VU7sMvx6AvQhG35I1 ilario@sindominio.net 2 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGuZnYnYWHIgBe8L28DeGEW54GNzIsA49Y1/ouA6PB/w pedro@dweb 3 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOdNNWmLMJNMkO0UzkOrNjAONlzQ2oBkA+b0f/Lq6RqJ angel 4 | -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/95_set-timezone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to set the correct timezone of all nodes 4 | ### You can check out all the possible values at: 5 | ### http://wiki.openwrt.org/doc/uci/system#time_zones 6 | uci set system.@system[0].timezone="CET-1CEST" 7 | uci set system.@system[0].zonename="Europe/Amsterdam" 8 | uci commit system 9 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/95_set-timezone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to set the correct timezone of all nodes 4 | ### You can check out all the possible values at: 5 | ### http://wiki.openwrt.org/doc/uci/system#time_zones 6 | uci set system.@system[0].timezone="CET-1CEST" 7 | uci set system.@system[0].zonename="Europe/Amsterdam" 8 | uci commit system 9 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/95_set-timezone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Uncomment to set the correct timezone of all nodes 4 | ### You can check out all the possible values at: 5 | ### http://wiki.openwrt.org/doc/uci/system#time_zones 6 | uci set system.@system[0].timezone="CET-1CEST" 7 | uci set system.@system[0].zonename="Europe/Amsterdam" 8 | uci commit system 9 | -------------------------------------------------------------------------------- /antennine.org/an-outdoor-8-64/README.md: -------------------------------------------------------------------------------- 1 | # profile-antennine.org-an-outdoor-8-64 2 | 3 | Profile for outdoor device 8/64 with the following characteristics: 4 | - non-gateway (-ppp -ppp-mod-pppoe) 5 | - all default protocols babeld, batman and anygw: 6 | - usable with openwrt-24.xx and current main 7 | - default wifi modes are non-encrypted 802.11s and AP 8 | 9 | Tested on ar9342_ubnt_litebeam-m5-xw and similars. 10 | -------------------------------------------------------------------------------- /sbmesh/common/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrEwbY3LWgtJ8dRkcsTB0PUnnKo8fa9B3yPgDiUs1EX3nkQzNNhRClsOiJaEscUJxAuVWJNJ9gBtrG9ovqGnaUeGwSr7mnjnYLdrfGPyOCXTsbEJKpbowQE7j5uXEcc2hBkU6zPsWWRIsQ2nnaZnJfAfGTt616zHrnWMB2hRPCN/xpccE8HrYPYMxFw+Lk5UWNlnCDf+qiWewAQWd0+mqomlUERS6eOxtz4fmqS7ANCVmaOjIyJnDb3YeLGrtenF+giQ082VI276zoZOJv9ahuJRYlOCOTh1yq5Zy2Vcjsf00LaxDFbSCtffdFSPit5AeEymcHF3QP6zHfp0O2KNvT meshtodon 2 | -------------------------------------------------------------------------------- /freifunk/80211s-sae-batadv-only/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Use 802.11s with SAE for mesh, route with batman-adv only 4 | PROFILE_DEPENDS:=+wpad-mesh-wolfssl +lime-proto-batadv +lime-proto-anygw +shared-state +shared-state-bat_hosts +shared-state-dnsmasq_hosts +shared-state-dnsmasq_leases +wifi-unstuck-wa 5 | 6 | include ../../profile.mk 7 | 8 | # call BuildPackage - OpenWrt buildroot signature 9 | -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/95_reboot-daily: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Schedule a sunday reboot at 04:08 + random amount of seconds for time scattering between 0 and 108 minutes # 20170514 | Nk 4 | mkdir -p /etc/crontabs ; touch /etc/crontabs/root 5 | sed "\| \* \* \* .*reboot$|d" -i /etc/crontabs/root 6 | echo '8 4 * * 0 sleep `head /dev/urandom | tr -dc "0123456789" | head -c2` && touch /etc/banner && reboot >/dev/null 2>&1' >> /etc/crontabs/root 7 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/95_reboot-daily: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Schedule a sunday reboot at 04:08 + random amount of seconds for time scattering between 0 and 108 minutes # 20170514 | Nk 4 | mkdir -p /etc/crontabs ; touch /etc/crontabs/root 5 | sed "\| \* \* \* .*reboot$|d" -i /etc/crontabs/root 6 | echo '8 4 * * 0 sleep `head /dev/urandom | tr -dc "0123456789" | head -c2` && touch /etc/banner && reboot >/dev/null 2>&1' >> /etc/crontabs/root 7 | -------------------------------------------------------------------------------- /_hacks/postinst.mk: -------------------------------------------------------------------------------- 1 | define Package/$(PKG_NAME)/postinst 2 | #!/bin/bash 3 | # Run only in imagebuilder/sdk, exit if executed on the target device or buildroot 4 | [ -z "$${IPKG_INSTROOT}" ] && exit 0 5 | [ -f "$${TOPDIR}/version" ] && exit 0 6 | grep -q IB_MODIFIED_BY_$(PKG_NAME)_preinst $${TOPDIR}/Makefile || exit 0 7 | echo "########################################################################## Inside package $(PKG_NAME) postinst" 8 | 9 | endef 10 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/95_reboot-daily: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### Schedule a sunday reboot at 04:08 + random amount of seconds for time scattering between 0 and 108 minutes # 20170514 | Nk 4 | mkdir -p /etc/crontabs ; touch /etc/crontabs/root 5 | sed "\| \* \* \* .*reboot$|d" -i /etc/crontabs/root 6 | echo '8 4 * * 0 sleep `head /dev/urandom | tr -dc "0123456789" | head -c2` && touch /etc/banner && reboot >/dev/null 2>&1' >> /etc/crontabs/root 7 | -------------------------------------------------------------------------------- /sbmesh/common/etc/sbmesh/sbmesh.banner: -------------------------------------------------------------------------------- 1 | --------------------------------------------------- 2 | _ _ 3 | | | | | 4 | ___| |__ _ __ ___ ___ ___| |__ 5 | / __| '_ \| '_ ` _ \ / _ \/ __| '_ \ 6 | \__ \ |_) | | | | | | __/\__ \ | | | 7 | |___/_.__/|_| |_| |_|\___||___/_| |_| 8 | 9 | Project: sbmesh.net 10 | GitHub: https://github.com/sbmesh 11 | --------------------------------------------------- 12 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3InfoParet/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj3InfoParet 3 | 4 | config net 'lm_hwd_openwrt_wan' 5 | option comment "in Jardi botanic topology we need to use as wan the interface which get POE input, while OpenWrt would default to lan" 6 | option autogenerated 'false' 7 | list protocols 'ieee80211s' 8 | list protocols 'batadv:%N1' 9 | list protocols 'bmx6:0' 10 | list protocols 'wan' 11 | option linux_name 'eth0.1' 12 | -------------------------------------------------------------------------------- /libremesh/adhoc/root/etc/uci-defaults/80-lime_set_adhoc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | uci del_list lime-defaults.network.protocols=ieee80211s 4 | uci show lime-defaults.network.protocols | \ 5 | grep -q adhoc || uci add_list lime-defaults.network.protocols=adhoc 6 | 7 | uci del_list lime-defaults.wifi.modes=ieee80211s 8 | uci show lime-defaults.wifi.modes | \ 9 | grep -q adhoc || uci add_list lime-defaults.wifi.modes=adhoc 10 | 11 | uci commit lime-defaults 12 | 13 | exit 0 14 | -------------------------------------------------------------------------------- /calafou/indoor/DOTconfig-xiaomi_mirouter_4A_gigabit_edition: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_ramips=y 2 | CONFIG_TARGET_ramips_mt7621=y 3 | CONFIG_TARGET_ramips_mt7621_DEVICE_xiaomi_mi-router-4a-gigabit=y 4 | # CONFIG_PACKAGE_dnsmasq is not set 5 | # CONFIG_FEED_libremesh is not set 6 | # CONFIG_FEED_profiles is not set 7 | CONFIG_PACKAGE_profile-calafou-indoor=y 8 | # CONFIG_PACKAGE_wpad-basic-wolfssl is not set 9 | # CONFIG_PACKAGE_wpad-mesh-openssl is not set 10 | CONFIG_PACKAGE_wpad-openssl=y 11 | -------------------------------------------------------------------------------- /calafou/indoor2/DOTconfig-xiaomi_mirouter_4A_gigabit_edition: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_ramips=y 2 | CONFIG_TARGET_ramips_mt7621=y 3 | CONFIG_TARGET_ramips_mt7621_DEVICE_xiaomi_mi-router-4a-gigabit=y 4 | # CONFIG_PACKAGE_dnsmasq is not set 5 | # CONFIG_FEED_libremesh is not set 6 | # CONFIG_FEED_profiles is not set 7 | CONFIG_PACKAGE_profile-calafou-indoor2=y 8 | # CONFIG_PACKAGE_wpad-basic-wolfssl is not set 9 | # CONFIG_PACKAGE_wpad-mesh-openssl is not set 10 | CONFIG_PACKAGE_wpad-openssl=y 11 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L23nodes/PACKAGES: -------------------------------------------------------------------------------- 1 | -6relayd 2 | -dnsmasq 3 | -firewall 4 | -odhcp6c 5 | -odhcpd 6 | -odhcpd-ipv6only 7 | -ppp 8 | -ppp-mod-pppoe 9 | check-date-http 10 | hotplug-initd-services 11 | lime-app 12 | lime-debug 13 | lime-proto-anygw 14 | lime-proto-babeld 15 | lime-proto-batadv 16 | lime-system 17 | shared-state 18 | shared-state-babeld_hosts 19 | shared-state-bat_hosts 20 | shared-state-dnsmasq_hosts 21 | shared-state-dnsmasq_leases 22 | shared-state-nodes_and_links 23 | -------------------------------------------------------------------------------- /freifunk/80211s-sae-bmx7-only/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Use 802.11s with SAE for mesh, route with bmx7 only 4 | PROFILE_DEPENDS:=+wpad-mesh-wolfssl +wpa-cli +bmx7 +bmx7-iwinfo +bmx7-json +bmx7-sms +bmx7-table +bmx7-tun +bmx7-uci-config +bmx7-auto-gw-mode +lime-proto-bmx7 +lime-proto-anygw +shared-state +shared-state-dnsmasq_hosts +shared-state-dnsmasq_leases +wifi-unstuck-wa 5 | 6 | include ../../profile.mk 7 | 8 | # call BuildPackage - OpenWrt buildroot signature 9 | -------------------------------------------------------------------------------- /NuestraRed.org/README.md: -------------------------------------------------------------------------------- 1 | # NuestraRED.org 2 | 3 | Perfiles de configuracion para los nodos de la Red libre NuestraRED.org 4 | 5 | # Listado 6 | 7 | * default: Perfil que tiene solo un cambio en el nombre de la red Wifi y la red ad-hoc mesh para poner el nombre NuestraRED.org 8 | * hacklime: Es el perfil que tiene las pruebas para automatizar la configuración manual que estamos haciendo actualmente en los nodos 9 | * only-bmx7: Es un perfil de prueba para usar solo bmx7 en la NuestraRED.org 10 | 11 | -------------------------------------------------------------------------------- /sbmesh/common/etc/uci-defaults/zlibremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci del_list libremap.settings.api_url='http://libremap.berlin.freifunk.net/api' 3 | # uci del_list libremap.settings.api_url='http://libremap.net/api/' 4 | # uci add_list libremap.settings.api_url='http://sbmesh.net/map/api' 5 | uci set libremap.settings.community='Santa Barbara Mesh Network' 6 | uci set libremap.location.latitude='34.419275' 7 | uci set libremap.location.longitude='-119.699334' 8 | uci commit 9 | # /etc/init.d/libremap-agent disable 10 | -------------------------------------------------------------------------------- /jardibotanic/BCNVerdi78interior/www/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | LiMe-App 10 | 11 | 12 | -------------------------------------------------------------------------------- /massmesh/common/etc/uci-defaults/zlibremap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | uci del_list libremap.settings.api_url='http://libremap.berlin.freifunk.net/api' 4 | uci del_list libremap.settings.api_url='http://libremap.net/api/' 5 | 6 | uci add_list libremap.settings.api_url='http://map.meshte.ch/api' 7 | uci set libremap.settings.community='Massachusetts Meshnet' 8 | uci commit 9 | 10 | 11 | # uci set libremap.location.latitude='34.419275' 12 | # uci set libremap.location.longitude='-119.699334' 13 | 14 | # /etc/init.d/libremap-agent disable 15 | -------------------------------------------------------------------------------- /_hacks/_preinst_pkg_configs.mk: -------------------------------------------------------------------------------- 1 | # hack to define/modify configs among those evaluated by the imagebuilder 2 | define Package/$(PKG_NAME)/preinst_pkg_configs 3 | for config in "$(PKG_CONFIGS)"; do 4 | grep -q "$${config}" $${TOPDIR}/.config && continue 5 | need_rerun=1 6 | if [ "$${config:0:1}" = '#' ]; then 7 | sed -i "s|$${config:2:-11}}=y|$${config}|" $${TOPDIR}/.config 8 | else 9 | config_name="$$(echo $${config} | cut -d '=' -f 1)" 10 | sed -i "s|# $${config_name} is not set|$${config}|" $${TOPDIR}/.config 11 | fi 12 | done 13 | endef 14 | -------------------------------------------------------------------------------- /massmesh/common/etc/uci-defaults/zfirewall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cjdns_fw_idx=$(uci show firewall \ 3 | | grep -Eo "firewall.@rule.+Allow-.+cjdns" \ 4 | | grep -E "[0-9]{1,}" -o) 5 | for x in ${cjdns_fw_idx}; do 6 | uci set firewall.@rule[${x}].enabled=1 7 | done 8 | uci commit firewall 9 | 10 | # echo "#block access to private address space" >> /etc/firewall.user 11 | # echo "iptables -I FORWARD -d 192.168.0.0/16 -j DROP" >> /etc/firewall.user 12 | # echo "iptables -I FORWARD -d 172.16.0.0/12 -j DROP" >> /etc/firewall.user 13 | -------------------------------------------------------------------------------- /antennine.org/an-generic-outdoor-8-64/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Generic metapackage for 8MB flash and/or 64MB RAM devices \ 4 | with lime files, pubkeys and metrics, and eff ca-cert 5 | PROFILE_DEPENDS:=\ 6 | +profile-antennine.org-an-ca-bundle \ 7 | +profile-antennine.org-an-generic \ 8 | +profile-antennine.org-an-lime-owut \ 9 | +profile-antennine.org-an-metrics \ 10 | +profile-antennine.org-an-outdoor-8-64 11 | 12 | include ../../profile.mk 13 | 14 | # call BuildPackage - OpenWrt buildroot signature 15 | -------------------------------------------------------------------------------- /freifunk/80211s-sae-bmx7-batadv/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Use 802.11s with SAE for mesh, route with bmx7 and batman-adv 4 | PROFILE_DEPENDS:=+wpad-mesh-wolfssl +wpa-cli +bmx7 +bmx7-iwinfo +bmx7-json +bmx7-sms +bmx7-table +bmx7-tun +bmx7-uci-config +lime-proto-batadv +bmx7-auto-gw-mode +lime-proto-bmx7 +lime-proto-anygw +shared-state +shared-state-dnsmasq_hosts +shared-state-dnsmasq_leases +shared-state-bat_hosts +wifi-unstuck-wa 5 | 6 | include ../../profile.mk 7 | 8 | # call BuildPackage - OpenWrt buildroot signature 9 | -------------------------------------------------------------------------------- /ogisynapse/common/etc/config/ogisynapse.banner: -------------------------------------------------------------------------------- 1 | ___ ____ ___ ______ ___ _ _ ____ ____ _____ 2 | / _ \ / ___|_ _/ ___\ \ / / \ | | / \ | _ \/ ___|| ____| 3 | | | | | | _ | |\___ \\ V /| \| | / _ \ | |_) \___ \| _| 4 | | |_| | |_| || | ___) || | | |\ |/ ___ \| __/ ___) | |___ 5 | \___/ \____|___|____/ |_| |_| \_/_/ \_\_| |____/|_____| 6 | 7 | ============================================================ 8 | / \ .../\ OFF THE GRID MOBILE MESH NETWORK../\.../\ 9 | ============================================================= 10 | -------------------------------------------------------------------------------- /antennine.org/an-metrics/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Prometheus collectors and script to push to a pushgateway server 4 | PROFILE_DEPENDS:=\ 5 | +coreutils-base64 \ 6 | +prometheus-node-exporter-lua \ 7 | +prometheus-node-exporter-lua-openwrt \ 8 | +prometheus-node-exporter-lua-wifi \ 9 | +prometheus-node-exporter-lua-wifi_stations \ 10 | +prometheus-node-exporter-lua-wifi-stations-extra \ 11 | +prometheus-node-exporter-lua-location-latlon 12 | 13 | include ../../profile.mk 14 | 15 | # call BuildPackage - OpenWrt buildroot signature 16 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/lime-assets/community/root_password: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Disclamer: We know that hardcoding the password is a bad idea and that uploading its hash on the internet is stupid 4 | 5 | # as recommended by Pedro here: 6 | # https://agora.exo.cat/t/decidir-gestio-testbed/318/9 7 | # salt=$(openssl rand -base64 12) 8 | # password=FIXME 9 | # hashed_passwd=$(openssl passwd -6 -salt "$salt" "$password") 10 | 11 | sed -i 's|root::|root:$6$5VUgcTdRQN4igoWs$ZuZu.4ruzVUQ.Yg3klttzl57NrDySmJZOWKngIL9V/AjEDyCkx.o.cfIo2wLuJdCl9GHNR5sKm.ld5/09Q0WQ1:|' /etc/shadow 12 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6466b38a4180: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device8' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.8/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.4278' 9 | list uci_set 'location.settings.node_longitude=2.1838' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.8/24' 16 | option static_ipv6 '2a00:1508:0a00::8/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6466b3c6edca: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device7' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.7/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.4277' 9 | list uci_set 'location.settings.node_longitude=2.1837' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.7/24' 16 | option static_ipv6 '2a00:1508:0a00::7/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6466b3ce2f1e: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device9' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.9/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.4279' 9 | list uci_set 'location.settings.node_longitude=2.1839' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.9/24' 16 | option static_ipv6 '2a00:1508:0a00::9/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6466b3faaf88: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device6' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.6/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.4276' 9 | list uci_set 'location.settings.node_longitude=2.1836' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.6/24' 16 | option static_ipv6 '2a00:1508:0a00::6/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-10feed3b3d72: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device38' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.38/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42738' 9 | list uci_set 'location.settings.node_longitude=2.18338' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.38/24' 16 | option static_ipv6 '2a00:1508:0a00::38/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-10feede5eef2: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device44' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.44/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42744' 9 | list uci_set 'location.settings.node_longitude=2.18344' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.44/24' 16 | option static_ipv6 '2a00:1508:0a00::44/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-10feede5f0c8: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device43' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.43/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42743' 9 | list uci_set 'location.settings.node_longitude=2.18343' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.43/24' 16 | option static_ipv6 '2a00:1508:0a00::43/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-10feede60ad8: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device28' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.28/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42728' 9 | list uci_set 'location.settings.node_longitude=2.18328' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.28/24' 16 | option static_ipv6 '2a00:1508:0a00::28/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6470023e9d2a: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device26' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.26/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42726' 9 | list uci_set 'location.settings.node_longitude=2.18326' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.26/24' 16 | option static_ipv6 '2a00:1508:0a00::26/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6470023e9d60: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device29' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.29/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42729' 9 | list uci_set 'location.settings.node_longitude=2.18329' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.29/24' 16 | option static_ipv6 '2a00:1508:0a00::29/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6470023e9dc6: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device15' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.15/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42715' 9 | list uci_set 'location.settings.node_longitude=2.18315' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.15/24' 16 | option static_ipv6 '2a00:1508:0a00::15/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6470023e9e8c: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device37' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.37/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42737' 9 | list uci_set 'location.settings.node_longitude=2.18337' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.37/24' 16 | option static_ipv6 '2a00:1508:0a00::37/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-6470023e9e90: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device34' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.34/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42734' 9 | list uci_set 'location.settings.node_longitude=2.18334' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.34/24' 16 | option static_ipv6 '2a00:1508:0a00::34/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-647002c303b4: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device35' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.35/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42735' 9 | list uci_set 'location.settings.node_longitude=2.18335' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.35/24' 16 | option static_ipv6 '2a00:1508:0a00::35/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-647002c31334: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device20' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.20/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42720' 9 | list uci_set 'location.settings.node_longitude=2.18320' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.20/24' 16 | option static_ipv6 '2a00:1508:0a00::20/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-647002e29824: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device21' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.21/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42721' 9 | list uci_set 'location.settings.node_longitude=2.18321' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.21/24' 16 | option static_ipv6 '2a00:1508:0a00::21/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-a0f3c1a5f9fc: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device41' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.41/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42741' 9 | list uci_set 'location.settings.node_longitude=2.18341' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.41/24' 16 | option static_ipv6 '2a00:1508:0a00::41/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-a0f3c1a5fa36: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device42' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.42/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42742' 9 | list uci_set 'location.settings.node_longitude=2.18342' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.42/24' 16 | option static_ipv6 '2a00:1508:0a00::42/64' 17 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-a0f3c1e4b63c: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'device40' 3 | 4 | config lime network 5 | option main_ipv4_address '10.0.0.40/16' 6 | 7 | config generic_uci_config location_coord 8 | list uci_set 'location.settings.node_latitude=41.42740' 9 | list uci_set 'location.settings.node_longitude=2.18340' 10 | 11 | config net 'lm_hwd_openwrt_wan' 12 | option autogenerated 'false' 13 | option linux_name 'eth0.2' 14 | list protocols 'static' 15 | option static_ipv4 '192.168.1.40/24' 16 | option static_ipv6 '2a00:1508:0a00::40/64' 17 | -------------------------------------------------------------------------------- /libremesh/only-bmx6/etc/uci-defaults/80-lime_only_bmx6.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci add_list lime-defaults.network.protocols=bmx6:13 3 | uci del_list lime-defaults.network.protocols=batadv:%N 4 | uci del_list lime-defaults.network.protocols=olsr:14 5 | uci del_list lime-defaults.network.protocols=olsr6:15 6 | uci del_list lime-defaults.network.protocols=olsr2:16 7 | uci del_list lime-defaults.network.protocols=anygw 8 | uci set lime-defaults.network.main_ipv4_address='10.0.0.0/27/8' 9 | uci set lime-defaults.network.main_ipv6_address='2a00:1508:0a%M4:%M600::/64' 10 | uci commit lime-defaults 11 | exit 0 12 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L23nodes/files/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'M4S-%M4%M5%M6' 3 | 4 | config lime network 5 | option main_ipv4_address '10.180.0.128/24/25' 6 | option main_ipv6_address '2a00:1508:1:f003::%M5%M6/64' 7 | list protocols ieee80211s 8 | list protocols lan 9 | list protocols anygw 10 | list protocols batadv:%N1 11 | list protocols babeld:17 12 | 13 | config lime wifi 14 | option ap_ssid 'MobilQuattroSud.com' 15 | option ap_encryption 'psk2' 16 | option ap_key 'attrantaacafittera' 17 | option apname_encryption 'psk2' 18 | option apname_key 'attrantaacafittera' 19 | -------------------------------------------------------------------------------- /quintanalibre.org.ar/generic/files/etc/lime-assets/community/cron_defer_reboot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Si anda llegar "a internet" extendemos el plazo de "deferrable reboot". 4 | # Es el último recurso para no quedar desconectados del nodo si queda en un estado inaccesible. 5 | 6 | internet_gw_ip=8.8.8.8 #FIXME 7 | 8 | unique_append() 9 | { 10 | grep -qF "$1" "$2" || echo "$1" >> "$2" 11 | } 12 | 13 | unique_append \ 14 | "*/10 * * * * ((if ping -c 10 -W 10 $internet_gw_ip &> /dev/null; then awk '{print \$1 + 800}' /proc/uptime > /tmp/deferrable-reboot.defer ; fi )&) "\ 15 | /etc/crontabs/root 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /LibremeshTestBed/outdoor_sectorial_singleband/root/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCMrAQzKZUDvXiliHyj/DB06L9f6RPoq3UMaEbvEYi6J7WX61bGmcH2cIr4CZDHrvzk0jk1jYyS3FVgn3iH/gVJhIOUI/VoZNgo5YOUWG27gix5yHHcL5BLrELSKr12uB0FHhjXFvfSuWFvc9CGtEhKAS9wwLdsOXxXTngxjcAP1bZdRqbz7G18Cn8wox+QEVlGFTvcBojkk9XlA20uSRsHLqegUtFgg2efEjhVJlar6f+eejVJtQoGDnP9L+bZnWMzHK6yDNZyNsdxemuyDvY1R5OtJrg9RKyFNzV5wp/AAtngcl1knkjr5WHh6Hs8U9IAN+2WeWZ4NqDWaRdCBuFZj8T+4gdNE3xMnnefx7HUgfv6ZePzvUSTff1bjGysvHK7S/PRkcLOLmamdJdRbJBdENBM1cUJ02MbIvwHUbIiqpNA8aYXEC6qUqzaXUJeSK/9xAkDTZF2rkMnvviq/74QpASPrZ+k+I7B+CX1HOAqZBXBAMhhUVWJA+ReMVl2q8M= hiure@blackhole 2 | -------------------------------------------------------------------------------- /LibremeshTestBed/indoor_omnidirectional_dualband/root/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCMrAQzKZUDvXiliHyj/DB06L9f6RPoq3UMaEbvEYi6J7WX61bGmcH2cIr4CZDHrvzk0jk1jYyS3FVgn3iH/gVJhIOUI/VoZNgo5YOUWG27gix5yHHcL5BLrELSKr12uB0FHhjXFvfSuWFvc9CGtEhKAS9wwLdsOXxXTngxjcAP1bZdRqbz7G18Cn8wox+QEVlGFTvcBojkk9XlA20uSRsHLqegUtFgg2efEjhVJlar6f+eejVJtQoGDnP9L+bZnWMzHK6yDNZyNsdxemuyDvY1R5OtJrg9RKyFNzV5wp/AAtngcl1knkjr5WHh6Hs8U9IAN+2WeWZ4NqDWaRdCBuFZj8T+4gdNE3xMnnefx7HUgfv6ZePzvUSTff1bjGysvHK7S/PRkcLOLmamdJdRbJBdENBM1cUJ02MbIvwHUbIiqpNA8aYXEC6qUqzaXUJeSK/9xAkDTZF2rkMnvviq/74QpASPrZ+k+I7B+CX1HOAqZBXBAMhhUVWJA+ReMVl2q8M= hiure@blackhole 2 | -------------------------------------------------------------------------------- /LibremeshTestBed/outdoor_omnidirectional_dualband/root/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCMrAQzKZUDvXiliHyj/DB06L9f6RPoq3UMaEbvEYi6J7WX61bGmcH2cIr4CZDHrvzk0jk1jYyS3FVgn3iH/gVJhIOUI/VoZNgo5YOUWG27gix5yHHcL5BLrELSKr12uB0FHhjXFvfSuWFvc9CGtEhKAS9wwLdsOXxXTngxjcAP1bZdRqbz7G18Cn8wox+QEVlGFTvcBojkk9XlA20uSRsHLqegUtFgg2efEjhVJlar6f+eejVJtQoGDnP9L+bZnWMzHK6yDNZyNsdxemuyDvY1R5OtJrg9RKyFNzV5wp/AAtngcl1knkjr5WHh6Hs8U9IAN+2WeWZ4NqDWaRdCBuFZj8T+4gdNE3xMnnefx7HUgfv6ZePzvUSTff1bjGysvHK7S/PRkcLOLmamdJdRbJBdENBM1cUJ02MbIvwHUbIiqpNA8aYXEC6qUqzaXUJeSK/9xAkDTZF2rkMnvviq/74QpASPrZ+k+I7B+CX1HOAqZBXBAMhhUVWJA+ReMVl2q8M= hiure@blackhole 2 | -------------------------------------------------------------------------------- /RedCoMani/README.md: -------------------------------------------------------------------------------- 1 | # RedCoMani / Mani - Casanare - Colombia 2 | 3 | Perfiles de configuracion para los nodos de la Red comunitaria RedCoMani.org 4 | Estos perfiles estan pensandos para lograr una configuración que obligue a todos los nodos y los clientes tener como puerta de enlace 5 | en la LAN IPV4 un Firewall configurado con PfSense 6 | 7 | # Listado 8 | 9 | * default: Perfil que tiene solo un cambio en el nombre de la red Wifi y la red ad-hoc mesh para poner el nombre RedCoMani 10 | * hacklime: Es el perfil que tiene las pruebas para automatizar la configuración manual que estamos haciendo actualmente en los nodos 11 | 12 | -------------------------------------------------------------------------------- /meshrc/README.md: -------------------------------------------------------------------------------- 1 | # meshrc 2 | 3 | network profile for [bachelor thesis](https://github.com/aparcar/meshrc) which 4 | allow mesh network monitoring & configuration from a central place. 5 | 6 | ## node 7 | 8 | * Uses the newly introduced 9 | [%m](https://github.com/libremesh/lime-packages/pull/349/) parameter to have 10 | persistent names and IP addresses. Mesh and access points are encrypted. 11 | * Access point is encrypted 12 | * Mesh is encrypted 13 | * Both disabled on first startup as they eventually retrieve a real config via 14 | the `meshrc-initial` daemon. 15 | * Activates `prometheus-node-exporter-lua` on all interfaces 16 | -------------------------------------------------------------------------------- /libremesh/encrypt-11s+ap/etc/uci-defaults/80-set-11s-encryption: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci delete lime-defaults.wifi.modes 3 | uci add_list lime-defaults.wifi.modes='ap_2ghz' 4 | uci add_list lime-defaults.wifi.modes='apname_2ghz' 5 | uci add_list lime-defaults.wifi.modes='ieee80211s_5ghz' 6 | uci set lime-defaults.wifi.ap_encryption='psk2' 7 | uci set lime-defaults.wifi.ap_key='libremesh' 8 | uci set lime-defaults.wifi.apname_encryption='psk2' 9 | uci set lime-defaults.wifi.apname_key='libremesh' 10 | uci set lime-defaults.wifi.ieee80211s_encryption='psk2+aes' 11 | uci set lime-defaults.wifi.ieee80211s_key='libremesh' 12 | uci commit lime-defaults 13 | 14 | -------------------------------------------------------------------------------- /moinho/comun/etc/uci-defaults/91-set_bmx6_gw_rating: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.inet6torreunc=tunOut 3 | uci set bmx6.inet6torreunc.tunOut='inet6torreunc' 4 | uci set bmx6.inet6torreunc.network='::/0' 5 | uci set bmx6.inet6torreunc.maxPrefixLen='0' 6 | uci set bmx6.inet6torreunc.gwName='torreunc' 7 | uci set bmx6.inet6torreunc.rating='1000' 8 | 9 | uci set bmx6.inet4torreunc=tunOut 10 | uci set bmx6.inet4torreunc.tunOut='inet4torreunc' 11 | uci set bmx6.inet4torreunc.network='0.0.0.0/0' 12 | uci set bmx6.inet4torreunc.maxPrefixLen='0' 13 | uci set bmx6.inet4torreunc.gwName='torreunc' 14 | uci set bmx6.inet4torreunc.rating='1000' 15 | 16 | uci commit bmx6 17 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/uci-defaults/91-set_bmx6_gw_rating: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.inet6torreunc=tunOut 3 | uci set bmx6.inet6torreunc.tunOut='inet6torreunc' 4 | uci set bmx6.inet6torreunc.network='::/0' 5 | uci set bmx6.inet6torreunc.maxPrefixLen='0' 6 | uci set bmx6.inet6torreunc.gwName='torreunc' 7 | uci set bmx6.inet6torreunc.rating='1000' 8 | 9 | uci set bmx6.inet4torreunc=tunOut 10 | uci set bmx6.inet4torreunc.tunOut='inet4torreunc' 11 | uci set bmx6.inet4torreunc.network='0.0.0.0/0' 12 | uci set bmx6.inet4torreunc.maxPrefixLen='0' 13 | uci set bmx6.inet4torreunc.gwName='torreunc' 14 | uci set bmx6.inet4torreunc.rating='1000' 15 | 16 | uci commit bmx6 17 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/uci-defaults/91-set_bmx6_gw_rating: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.inet6torreunc=tunOut 3 | uci set bmx6.inet6torreunc.tunOut='inet6torreunc' 4 | uci set bmx6.inet6torreunc.network='::/0' 5 | uci set bmx6.inet6torreunc.maxPrefixLen='0' 6 | uci set bmx6.inet6torreunc.gwName='torreunc' 7 | uci set bmx6.inet6torreunc.rating='1000' 8 | 9 | uci set bmx6.inet4torreunc=tunOut 10 | uci set bmx6.inet4torreunc.tunOut='inet4torreunc' 11 | uci set bmx6.inet4torreunc.network='0.0.0.0/0' 12 | uci set bmx6.inet4torreunc.maxPrefixLen='0' 13 | uci set bmx6.inet4torreunc.gwName='torreunc' 14 | uci set bmx6.inet4torreunc.rating='1000' 15 | 16 | uci commit bmx6 17 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/uci-defaults/91-set_bmx6_gw_rating: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | uci set bmx6.inet6torreunc=tunOut 3 | uci set bmx6.inet6torreunc.tunOut='inet6torreunc' 4 | uci set bmx6.inet6torreunc.network='::/0' 5 | uci set bmx6.inet6torreunc.maxPrefixLen='0' 6 | uci set bmx6.inet6torreunc.gwName='torreunc' 7 | uci set bmx6.inet6torreunc.rating='1000' 8 | 9 | uci set bmx6.inet4torreunc=tunOut 10 | uci set bmx6.inet4torreunc.tunOut='inet4torreunc' 11 | uci set bmx6.inet4torreunc.network='0.0.0.0/0' 12 | uci set bmx6.inet4torreunc.maxPrefixLen='0' 13 | uci set bmx6.inet4torreunc.gwName='torreunc' 14 | uci set bmx6.inet4torreunc.rating='1000' 15 | 16 | uci commit bmx6 17 | -------------------------------------------------------------------------------- /RedCoMani/default/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 10 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 11 | 12 | -------------------------------------------------------------------------------- /RedCoMani/only-bmx7/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 10 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 11 | 12 | -------------------------------------------------------------------------------- /calafou/outdoor_gateway/DOTconfig-Plasma_Cloud_PA1200: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_ipq40xx=y 2 | CONFIG_TARGET_ipq40xx_generic=y 3 | CONFIG_TARGET_ipq40xx_generic_DEVICE_plasmacloud_pa1200=y 4 | # CONFIG_PACKAGE_dnsmasq is not set 5 | # CONFIG_FEED_libremesh is not set 6 | # CONFIG_FEED_profiles is not set 7 | CONFIG_PACKAGE_ipq-wifi-plasmacloud_pa1200=y 8 | CONFIG_PACKAGE_ath10k-board-qca4019=y 9 | CONFIG_PACKAGE_ath10k-firmware-qca4019=y 10 | CONFIG_PACKAGE_kmod-ath10k=y 11 | # CONFIG_PACKAGE_kmod-ath10k-ct is not set 12 | CONFIG_PACKAGE_profile-calafou-outdoor_gateway=y 13 | # CONFIG_PACKAGE_wpad-basic-wolfssl is not set 14 | # CONFIG_PACKAGE_wpad-mesh-openssl is not set 15 | CONFIG_PACKAGE_wpad-openssl=y 16 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/config/lime: -------------------------------------------------------------------------------- 1 | config net 'lm_hwd_openwrt_wan' 2 | option comment "in Jardi botanic topology we need to use as wan the inderface which get POE input, while OpenWrt would defalut to lan on flex mArch" 3 | option autogenerated 'false' 4 | list protocols 'ieee80211s' 5 | list protocols 'batadv:%N1' 6 | list protocols 'bmx6:0' 7 | list protocols 'wan' 8 | option linux_name 'eth0.1' 9 | 10 | config wifi radio0 11 | option comment "the radios which comes with flex mArch do not work well with multiple VAPs" 12 | option autogenerated 'false' 13 | option channel_2ghz '11' 14 | option distance '1000' 15 | list modes 'ap' 16 | option ap_ssid 'jardibotanic.guifi.net' 17 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/default/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 10 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 11 | 12 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/only-bmx7/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 10 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 11 | 12 | -------------------------------------------------------------------------------- /calafou/outdoor_nongateway/DOTconfig-Plasma_Cloud_PA1200: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_ipq40xx=y 2 | CONFIG_TARGET_ipq40xx_generic=y 3 | CONFIG_TARGET_ipq40xx_generic_DEVICE_plasmacloud_pa1200=y 4 | # CONFIG_PACKAGE_dnsmasq is not set 5 | # CONFIG_FEED_libremesh is not set 6 | # CONFIG_FEED_profiles is not set 7 | CONFIG_PACKAGE_ipq-wifi-plasmacloud_pa1200=y 8 | CONFIG_PACKAGE_ath10k-board-qca4019=y 9 | CONFIG_PACKAGE_ath10k-firmware-qca4019=y 10 | CONFIG_PACKAGE_kmod-ath10k=y 11 | # CONFIG_PACKAGE_kmod-ath10k-ct is not set 12 | CONFIG_PACKAGE_profile-calafou-outdoor_nongateway=y 13 | # CONFIG_PACKAGE_wpad-basic-wolfssl is not set 14 | # CONFIG_PACKAGE_wpad-mesh-openssl is not set 15 | CONFIG_PACKAGE_wpad-openssl=y 16 | -------------------------------------------------------------------------------- /NonoLibre/comun/usr/sbin/reset_deaf_phys.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # checks for deaf interfaces and brings them up, only if there are associated stations 3 | 4 | for num in 0 1; do 5 | if [ -d /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc ]; then 6 | logger "deaf_phys: checking wlan$num-adhoc status..." 7 | neighs=$(ls -ld /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc/stations/* 2>/dev/null | wc -l) 8 | if [ $neighs == 0 ]; then 9 | logger "deaf_phys: triggering wlan$num-adhoc scan..." 10 | iw wlan$num-adhoc scan 11 | else 12 | logger "deaf_phys: wlan$num-adhoc has $neighs neighbors." 13 | fi 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /klimacamp/common/usr/sbin/reset_deaf_phys.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # checks for deaf interfaces and brings them up, only if there are associated stations 3 | 4 | for num in 0 1; do 5 | if [ -d /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc ]; then 6 | logger "deaf_phys: checking wlan$num-adhoc status..." 7 | neighs=$(ls -ld /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc/stations/* 2>/dev/null | wc -l) 8 | if [ $neighs == 0 ]; then 9 | logger "deaf_phys: triggering wlan$num-adhoc scan..." 10 | iw wlan$num-adhoc scan 11 | else 12 | logger "deaf_phys: wlan$num-adhoc has $neighs neighbors." 13 | fi 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /klimacamp/secure/usr/sbin/reset_deaf_phys.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # checks for deaf interfaces and brings them up, only if there are associated stations 3 | 4 | for num in 0 1; do 5 | if [ -d /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc ]; then 6 | logger "deaf_phys: checking wlan$num-adhoc status..." 7 | neighs=$(ls -ld /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc/stations/* 2>/dev/null | wc -l) 8 | if [ $neighs == 0 ]; then 9 | logger "deaf_phys: triggering wlan$num-adhoc scan..." 10 | iw wlan$num-adhoc scan 11 | else 12 | logger "deaf_phys: wlan$num-adhoc has $neighs neighbors." 13 | fi 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /wunderkammer/common/usr/sbin/reset_deaf_phys.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # checks for deaf interfaces and brings them up, only if there are associated stations 3 | 4 | for num in 0 1; do 5 | if [ -d /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc ]; then 6 | logger "deaf_phys: checking wlan$num-adhoc status..." 7 | neighs=$(ls -ld /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc/stations/* 2>/dev/null | wc -l) 8 | if [ $neighs == 0 ]; then 9 | logger "deaf_phys: triggering wlan$num-adhoc scan..." 10 | iw wlan$num-adhoc scan 11 | else 12 | logger "deaf_phys: wlan$num-adhoc has $neighs neighbors." 13 | fi 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/usr/sbin/reset_deaf_phys.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # checks for deaf interfaces and brings them up, only if there are associated stations 3 | 4 | for num in 0 1; do 5 | if [ -d /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc ]; then 6 | logger "deaf_phys: checking wlan$num-adhoc status..." 7 | neighs=$(ls -ld /sys/kernel/debug/ieee80211/phy$num/netdev\:wlan$num-adhoc/stations/* 2>/dev/null | wc -l) 8 | if [ $neighs == 0 ]; then 9 | logger "deaf_phys: triggering wlan$num-adhoc scan..." 10 | iw wlan$num-adhoc scan 11 | else 12 | logger "deaf_phys: wlan$num-adhoc has $neighs neighbors." 13 | fi 14 | fi 15 | done 16 | 17 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/README.md: -------------------------------------------------------------------------------- 1 | # RedINC-Comunitaria / Buenos Aires - Cauca - Colombia 2 | 3 | Perfiles de configuracion para los nodos de la Red comunitaria RedINC.org 4 | Estos perfiles estan pensandos para lograr una configuración que obligue a todos los nodos y los clientes tener como puerta de enlace 5 | en la LAN IPV4 un Firewall configurado con PfSense 6 | 7 | # Listado 8 | 9 | * default: Perfil que tiene solo un cambio en el nombre de la red Wifi y la red ad-hoc mesh para poner el nombre RedINC 10 | * hacklime: Es el perfil que tiene las pruebas para automatizar la configuración manual que estamos haciendo actualmente en los nodos 11 | * only-bmx7: Es un perfil de prueba para usar solo bmx7 en la RedINC.org 12 | 13 | -------------------------------------------------------------------------------- /moinho/comun/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCxB3c9LCC1nvb2Y+bHD0g5Ld4Auz84SjpNCO2L7bdociim1K7zOzeHQ3ZvlqMRfBlLO9kTmXo4fviiSqRsoQONQENiPextSnBNXHejRCy9u6UbnoseIrLizVtjEsXiXPLKgNqe2cVWkyh8/k8iAmu0FdvbNuCA6MwHLSNpCi/CJN4I72Z+yZOA059DChQpun5l60CDdSZwPCGYokybfpsPhJf1STJUjCOoT8U/zvv2kRg+ohL41kf/UJLmMYdFNYGCMLmmgi8F4YF72BLIziCPlU3q0LvNxEoFeQy50Db6f/tGghvhDEx2NzBYOjXLYELLS3ewqIxbSxckukftKw/wYAOCYzI5fkiZ1VIO0tcs6OG4/6tvOklC8nDARLZkVVs73lF+mh6qSBnjbVTV/MlE2UdTl5vc7agmYvqemtxzMgaa0MvH4238GJnjcJr+NCis12gco1EjPb5gBlsiqCDzlsRvy7nAAUKOlF64kzSpward/ZGdiGchf+Dm5JY+lbBKskXBPBHqCnUWOG0kh5oBy8DQx7cnXVRzsYlx3apjm/nL59ERDG2jMxA5anMZAcbSo0qSgK54GmfCoKyiJSNnQVeqS7ialMNE8M6uqoFfnfH2N78x+MIiICQYjvB99PJE4MMnmrZTQYiE+7mvHopfx+8/O8DwKWc8meIX6TVH3w== luandro@gmail.com -------------------------------------------------------------------------------- /massmesh/common/etc/massmesh/mamesh.banner: -------------------------------------------------------------------------------- 1 | --------------------------------------------------- 2 | .____ ._____. 3 | | | |__\_ |_________ ____ 4 | | | | || __ \_ __ \_/ __ \ 5 | | |___| || \_\ \ | \/\ ___/ 6 | |_______ \__||___ /__| \___ > 7 | \/ \/ \/ 8 | __________ __ 9 | \______ \ ____ _______/ |_ ____ ____ 10 | | | _// _ \/ ___/\ __\/ _ \ / \ 11 | | | ( <_> )___ \ | | ( <_> ) | \ 12 | |______ /\____/____ > |__| \____/|___| / 13 | \/ \/ \/ 14 | Maps: http://map.meshte.ch/ 15 | GitHub: https://github.com/massmesh 16 | --------------------------------------------------- 17 | -------------------------------------------------------------------------------- /JaexaPora/comum/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDOnRtx79dX2kHYpibGbhrIaJPIcjWLbFUuF3Eumg0r/RAD6KGegpnmSfTPlTkkDL+QyYyCcl6dsNMpqod+8Mjwj6DQZHNtse3XJBs7t9yX53UkqbfCum3j7a3OHsIhx81cc3UNV9nDI3HGn6eLMeuYsiIDvN8K7wIx6eqXcd0DhoUo3lVmJBShmcuZq4iLc3GkxvXyfN7czBt8i7wiA6+EriY4RP1L0+AZg78P64OEHYBBfRmEIAJadFEWPXnkwvK1GvHnaveL0PXT+HjKtTiPIRI6m9KdtiFovHUgTYLwsPiFwJgWQSKeUJUWATGELq1ndrnwbLFaihk43yI7BFYVoAU42YExNZxYhB6nMd63EeRbtejhJOHxJ52gfpdxsRkOKuUeSkX7GyyDRtbv10fgR8TcD5cBOR6TLIh1dTEUgQ7VEgox//dcCgdQIDzOunncinxw+kETev2Jc+YqAiiuZVR5PVYvcnLXFICuFxaW4r8v0IVxRQgDSjgpyM3ddNHrYiPQwPzZVS140+uoKQkJqUCzZJDJf7PX+XbXTxcEyEvl29i//E9GM/TPbIZ7hQrbSyqfMPbNZBQ8gPZAkxgsqtT8W7VBe9WvOwHjsi1MdTFT9iAHzZBMZpQG2GXZCfvFcKUIw4LFsG0LKtEFklmZpE7vZn5Wh5Nq5tdaO5QWHw== bruno@pobox.com 2 | -------------------------------------------------------------------------------- /fuma-aonline/fumacaonline-1607/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDOnRtx79dX2kHYpibGbhrIaJPIcjWLbFUuF3Eumg0r/RAD6KGegpnmSfTPlTkkDL+QyYyCcl6dsNMpqod+8Mjwj6DQZHNtse3XJBs7t9yX53UkqbfCum3j7a3OHsIhx81cc3UNV9nDI3HGn6eLMeuYsiIDvN8K7wIx6eqXcd0DhoUo3lVmJBShmcuZq4iLc3GkxvXyfN7czBt8i7wiA6+EriY4RP1L0+AZg78P64OEHYBBfRmEIAJadFEWPXnkwvK1GvHnaveL0PXT+HjKtTiPIRI6m9KdtiFovHUgTYLwsPiFwJgWQSKeUJUWATGELq1ndrnwbLFaihk43yI7BFYVoAU42YExNZxYhB6nMd63EeRbtejhJOHxJ52gfpdxsRkOKuUeSkX7GyyDRtbv10fgR8TcD5cBOR6TLIh1dTEUgQ7VEgox//dcCgdQIDzOunncinxw+kETev2Jc+YqAiiuZVR5PVYvcnLXFICuFxaW4r8v0IVxRQgDSjgpyM3ddNHrYiPQwPzZVS140+uoKQkJqUCzZJDJf7PX+XbXTxcEyEvl29i//E9GM/TPbIZ7hQrbSyqfMPbNZBQ8gPZAkxgsqtT8W7VBe9WvOwHjsi1MdTFT9iAHzZBMZpQG2GXZCfvFcKUIw4LFsG0LKtEFklmZpE7vZn5Wh5Nq5tdaO5QWHw== bruno@pobox.com 2 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L2nodes/etc/smonit/ping_watchdog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | hook_name="ping_watchdog" 4 | 5 | function hook_is_installed() 6 | { 7 | installed=yes 8 | } 9 | 10 | function hook_check() 11 | { 12 | local testAddresses="10.180.0.$(seq -s ' 10.180.0.' 1 10) sf.net 8.8.8.8" 13 | local hostAddresses="$(ip address show)" 14 | 15 | status=error 16 | 17 | for addr in ${testAddresses} ; do 18 | (echo "${hostAddresses}" | grep -q -w -F ${addr}) && continue 19 | 20 | ping -w 3 -c 2 ${addr} &> /dev/null && 21 | { 22 | status=ok 23 | break 24 | } 25 | done 26 | } 27 | 28 | function hook_quickfix() 29 | { 30 | true 31 | } 32 | 33 | function hook_longfix() 34 | { 35 | log="Ping whatch-dog failed maybe the device got dumb: rebooting" 36 | reboot 37 | } 38 | 39 | -------------------------------------------------------------------------------- /trans.hackmeeting.org/L2nodes/etc/smonit/ping_watchdog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | hook_name="ping_watchdog" 4 | 5 | function hook_is_installed() 6 | { 7 | installed=yes 8 | } 9 | 10 | function hook_check() 11 | { 12 | local testAddresses="172.16.8.$(seq -s ' 172.16.8.' 1 10) sf.net 8.8.8.8" 13 | local hostAddresses="$(ip address show)" 14 | 15 | status=error 16 | 17 | for addr in ${testAddresses} ; do 18 | (echo "${hostAddresses}" | grep -q -w -F ${addr}) && continue 19 | 20 | ping -w 3 -c 2 ${addr} &> /dev/null && 21 | { 22 | status=ok 23 | break 24 | } 25 | done 26 | } 27 | 28 | function hook_quickfix() 29 | { 30 | true 31 | } 32 | 33 | function hook_longfix() 34 | { 35 | log="Ping watch-dog failed maybe the device got dumb: rebooting" 36 | reboot 37 | } 38 | 39 | -------------------------------------------------------------------------------- /mobilquattrosud.com/L23nodes/files/etc/smonit/ping_watchdog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | hook_name="ping_watchdog" 4 | 5 | function hook_is_installed() 6 | { 7 | installed=yes 8 | } 9 | 10 | function hook_check() 11 | { 12 | local testAddresses="10.180.0.$(seq -s ' 10.180.0.' 1 10) sf.net 8.8.8.8" 13 | local hostAddresses="$(ip address show)" 14 | 15 | status=error 16 | 17 | for addr in ${testAddresses} ; do 18 | (echo "${hostAddresses}" | grep -q -w -F ${addr}) && continue 19 | 20 | ping -w 3 -c 2 ${addr} &> /dev/null && 21 | { 22 | status=ok 23 | break 24 | } 25 | done 26 | } 27 | 28 | function hook_quickfix() 29 | { 30 | true 31 | } 32 | 33 | function hook_longfix() 34 | { 35 | log="Ping whatch-dog failed maybe the device got dumb: rebooting" 36 | reboot 37 | } 38 | 39 | -------------------------------------------------------------------------------- /libremesh/suggested-packages-tiny/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Tiny version of packages officially suggested on the LibreMesh.org website. Intended for 4/32 devices: suited for devices with ≤4MB Flash up to openwrt 19.07; suited for devices with ≤32MB RAM up to openwrt 22.03 4 | PROFILE_DEPENDS:=+lime-hwd-openwrt-wan \ 5 | +lime-proto-anygw \ 6 | +lime-proto-babeld \ 7 | +lime-proto-batadv \ 8 | +shared-state \ 9 | +shared-state-babeld_hosts \ 10 | +lime-docs-minimal \ 11 | +babeld-auto-gw-mode 12 | 13 | include ../../profile.mk 14 | 15 | # call BuildPackage - OpenWrt buildroot signature 16 | -------------------------------------------------------------------------------- /antennine.org/an-outdoor-8-64/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Generic metapackage for 8MB flash and/or 64MB RAM devices 4 | PKG_CONFLICTS:=\ 5 | -apk-mbedtls \ 6 | -batctl-tiny \ 7 | -ca-bundle \ 8 | -dnsmasq \ 9 | -odhcpd-ipv6only \ 10 | -opkg \ 11 | -ppp \ 12 | -ppp-mod-pppoe 13 | PKG_CONFIGS:=\ 14 | CONFIG_CLEAN_IPKG=y 15 | PROFILE_DEPENDS:=\ 16 | +batctl-default \ 17 | +babeld-auto-gw-mode \ 18 | +check-date-http \ 19 | +lime-docs-minimal \ 20 | +lime-hwd-openwrt-wan \ 21 | +lime-proto-anygw \ 22 | +lime-proto-babeld \ 23 | +lime-proto-batadv \ 24 | +shared-state \ 25 | +shared-state-babeld_hosts \ 26 | +shared-state-nodes_and_links 27 | 28 | include ../../_hacks/index.mk 29 | include ../../profile.mk 30 | 31 | # call BuildPackage - OpenWrt buildroot signature 32 | -------------------------------------------------------------------------------- /antennine.org/an-generic/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Generic package with authorized_keys and lime files 4 | 5 | PROFILE_NAME=$(notdir ${CURDIR}) 6 | PROFILE_COMMUNITY=$(lastword $(filter-out $(PROFILE_NAME),$(subst /, ,$(CURDIR)))) 7 | PKG_NAME:=profile-$(PROFILE_COMMUNITY)-$(PROFILE_NAME) 8 | 9 | define Package/$(PKG_NAME)/postinst 10 | #!/bin/sh 11 | [ -z "$${IPKG_INSTROOT}" ] && exit 0 12 | 13 | # Disable dropbear password authentication 14 | sed -i "s|\(PasswordAuth\).*|\1\ 'off'|g" $${IPKG_INSTROOT}/etc/config/dropbear 15 | 16 | # Fix dropbear authorized keys permissions 17 | chmod 0600 $${IPKG_INSTROOT}/etc/dropbear/authorized_keys 18 | chmod 0700 $${IPKG_INSTROOT}/etc/dropbear 19 | endef 20 | 21 | include ../../profile.mk 22 | 23 | # call BuildPackage - OpenWrt buildroot signature 24 | -------------------------------------------------------------------------------- /RedCoMani/hacklimebb/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].dhcp_option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].dhcp_option='121,10.17.0.0/16,10.17.0.1' 10 | uci add_list dhcp.@dnsmasq[0].dhcp_option='249,10.17.0.0/16,10.17.0.1' 11 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 12 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 13 | -------------------------------------------------------------------------------- /BattleMeshV17/workshop/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Firmware to use in a workshop presenting LibreMesh in BattleMesh v17 in Sundhausen 4 | PROFILE_DEPENDS:=+shared-state-network_nodes +shared-state-dnsmasq_servers \ 5 | +lime-docs \ 6 | +lime-proto-babeld \ 7 | +lime-proto-batadv \ 8 | +lime-proto-anygw \ 9 | +lime-hwd-openwrt-wan \ 10 | +shared-state \ 11 | +hotplug-initd-services \ 12 | +shared-state-babeld_hosts \ 13 | +shared-state-bat_hosts \ 14 | +shared-state-dnsmasq_hosts \ 15 | +shared-state-dnsmasq_leases \ 16 | +shared-state-nodes_and_links \ 17 | +check-date-http \ 18 | +lime-app \ 19 | +lime-hwd-ground-routing \ 20 | +lime-debug \ 21 | +babeld-auto-gw-mode \ 22 | +px5g-standalone 23 | 24 | include ../../profile.mk 25 | 26 | # call BuildPackage - OpenWrt buildroot signature 27 | -------------------------------------------------------------------------------- /LibremeshTestBed/outdoor_omnidirectional_dualband/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option deferrable_reboot_uptime_s '654321' # reboot every 7.5 days 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.128.0/16/17' 6 | option anygw_dhcp_start '2562' 7 | option anygw_dhcp_limit '30205' 8 | option batadv_orig_interval '5000' 9 | 10 | config lime wifi 11 | option country 'BR' 12 | option ap_ssid 'LibremeshTestBed' 13 | option apname_ssid 'LibremeshTestBed/%H' 14 | option ieee80211s_mesh_id 'libremesh' 15 | 16 | config lime-wifi-band '5ghz' 17 | option channel '48' 18 | option htmode 'VHT20' 19 | list modes 'ieee80211s' 20 | option distance '300' 21 | 22 | config lime-wifi-band '2ghz' 23 | option channel '1' 24 | option htmode 'HT40' 25 | list modes 'ieee80211s' 26 | option distance '1000' -------------------------------------------------------------------------------- /RedINC-Comunitaria/hacklime/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].dhcp_option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].dhcp_option='121,10.17.0.0/16,10.17.0.1' 10 | uci add_list dhcp.@dnsmasq[0].dhcp_option='249,10.17.0.0/16,10.17.0.1' 11 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 12 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 13 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/hacklimebb/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].dhcp_option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].dhcp_option='121,10.17.0.0/16,10.17.0.1' 10 | uci add_list dhcp.@dnsmasq[0].dhcp_option='249,10.17.0.0/16,10.17.0.1' 11 | uci add_list dhcp.@dnsmasq[0].address='/.redinc.org/10.17.95.2' 12 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redinc.org/10.17.95.1' 13 | -------------------------------------------------------------------------------- /wunderkammer/common/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBNNT9RX2m9RP+UKyE3wgMrU6bstXxnI2K2MikIACAtCylMvowEw/ahypoI8njLLzYSmA+iIIoUWwYmJ6ZZBwsTMEH4C3z4HH+9+jsZSAXw34DpBvzejg67wfBmJZtzUch8+ZUwASM9MuM22eN/5sq+ya+UHTHWvfd095C+knG6UfRIsx7I8GrLLnagJHaJrh9LczHdOdlA+SXHZeUIDQOG2eXgUj9bcoXTxG0FUfA4YJV66uvum0Zcxt8dUYU2Nhwlks6DDtNLiY8qPWg4nhRh7Sk/g5Vh+GZBqibnuwjm0PEv+XqGnAiQWZZi9xLcsAfWCNl682L0Vfw68C4cf7V nickar@ingorian 2 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDt933ssQuBzLF92GP23bbp1kAlicSDe7LRb3h9Nj4LPi+1H3YpzQ9kB+lGyyBUvhCK5EqQHr7JjY+fRkT5TYCFLh0GV+dCqyQVUfajqiswCMZvMuAtQcCynuxa81VFkpgC7Yjs2Ax91XMLx4zgPDGNPAqIQPeFCNV2bHkmWu9ye6YEKxS2KWU+bY+ewJau9osQdoC26RL86db+1o59U7QdEEdVveztu2fwrvIzClMnVWlMoUs1Mw5U5u4kSxWO+aqwOta1fpO3atf7yVZzrys7aUncsnE36Sty4m2RyEPGdKQMUpJMpFLMNuknGfyGMCfQdFrZ+1JVSkIvVNWqihSJ panayotis@panayotis-ThinkPad-T450s 3 | 4 | -------------------------------------------------------------------------------- /antennine.org/an-lime-owut/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_NAME=$(notdir ${CURDIR}) 4 | PROFILE_COMMUNITY=$(lastword $(filter-out $(PROFILE_NAME),$(subst /, ,$(CURDIR)))) 5 | PKG_NAME:=profile-$(PROFILE_COMMUNITY)-$(PROFILE_NAME) 6 | 7 | PROFILE_DESCRIPTION:=lime-owut 8 | PROFILE_DEPENDS:=+owut 9 | 10 | define Package/$(PKG_NAME)/postinst 11 | #!/bin/sh 12 | # Backup opkg status before cleaning if CONFIG_CLEAN_IPKG=y 13 | grep -q CONFIG_CLEAN_IPKG=y $${TOPDIR}/.config || exit 0 14 | 15 | cp $${IPKG_INSTROOT}/usr/lib/opkg/status $${IPKG_INSTROOT}/etc/opkg/ 16 | cat << EOF >> $${IPKG_INSTROOT}/etc/uci-defaults/99_owut-packagelist 17 | #!/bin/sh 18 | rm /usr/lib/opkg/status 19 | ln -s /etc/opkg/status /usr/lib/opkg/status 20 | EOF 21 | endef 22 | 23 | include ../../profile.mk 24 | 25 | # call BuildPackage - OpenWrt buildroot signature 26 | -------------------------------------------------------------------------------- /antennine.org/an-ca-bundle/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_NAME=$(notdir ${CURDIR}) 4 | PROFILE_COMMUNITY=$(lastword $(filter-out $(PROFILE_NAME),$(subst /, ,$(CURDIR)))) 5 | PKG_NAME:=profile-$(PROFILE_COMMUNITY)-$(PROFILE_NAME) 6 | 7 | PKG_CA_CERTS_URLS:=\ 8 | https://letsencrypt.org/certs/isrgrootx1.pem \ 9 | https://letsencrypt.org/certs/isrg-root-x2.pem 10 | 11 | define Package/$(PKG_NAME)/preinst 12 | [ -z "$${IPKG_INSTROOT}" ] && exit 0 13 | $(INSTALL_DIR) $${IPKG_INSTROOT}/etc/ssl/certs 14 | for ca_cert_url in $(PKG_CA_CERTS_URLS); do 15 | wget -q "$${ca_cert_url}" -O - >> $${IPKG_INSTROOT}/etc/ssl/certs/ca-certificates.crt 16 | done 17 | $(LN) /etc/ssl/certs/ca-certificates.crt $${IPKG_INSTROOT}/etc/ssl/cert.pem 18 | endef 19 | 20 | include ../../profile.mk 21 | 22 | # call BuildPackage - OpenWrt buildroot signature 23 | -------------------------------------------------------------------------------- /libremesh/README.md: -------------------------------------------------------------------------------- 1 | # Example profiles 2 | 3 | These are example community profiles of libremesh which might be used as basis for other community profiles. 4 | It is not recommended to create a firmware based on any of these profiles. They might be broken or incomplete, as they are only examples. 5 | 6 | # List 7 | 8 | * adhoc: use ad-hoc instead of ieee80211s for meshing 9 | * encrypt-11s: adds an encryption layer to the mesh backbone (default password libremesh) 10 | * encrypt-11s+ap: encrypt both Mesh and AP and let them run on differnt interfaces. Requires dualband router. 11 | * odhcpd: enables odhcpd as default DHCP server instead of dnsmasq 12 | * only-bmx6: uses only bmx6 as routing protocol (disable batman-adv and anygw), each node has an autogenerated /27 sub-network (32 IPs) for its AP clients 13 | * only-bmx7: same as **only-bmx6** 14 | -------------------------------------------------------------------------------- /trans.hackmeeting.org/README.adoc: -------------------------------------------------------------------------------- 1 | README 2 | ====== 3 | 4 | .Generating the firmware images 5 | ---------------------------------------- 6 | ./cooker -c ar71xx/generic --profile=tl-wr741nd-v4 --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 7 | ./cooker -c ar71xx/generic --profile=tl-wr740n-v4 --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 8 | ./cooker -c brcm63xx/generic --profile=AGPF-S0 --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 9 | ./cooker -c ar71xx/generic --profile=ubnt-bullet-m --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 10 | ./cooker -c ar71xx/generic --profile=ubnt-nano-m --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 11 | ./cooker -c ar71xx/generic --profile=tl-wr841-v9 --flavor=lede_vanilla --community=trans.hackmeeting.org/L2nodes 12 | ---------------------------------------- 13 | 14 | -------------------------------------------------------------------------------- /valsamoggia.ninux.org/vs-ninux-generic/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Generic valsamoggia configuration 4 | PROFILE_DEPENDS:= +prometheus-node-exporter-lua \ 5 | +prometheus-node-exporter-lua-wifi \ 6 | +prometheus-node-exporter-lua-wifi_stations \ 7 | +prometheus-node-exporter-lua-openwrt \ 8 | +lime-proto-babeld \ 9 | +lime-proto-batadv \ 10 | +lime-proto-anygw \ 11 | +lime-proto-wan \ 12 | +lime-hwd-openwrt-wan \ 13 | +shared-state \ 14 | +hotplug-initd-services \ 15 | +shared-state-babeld_hosts \ 16 | +shared-state-bat_hosts \ 17 | +shared-state-dnsmasq_hosts \ 18 | +shared-state-dnsmasq_leases \ 19 | +shared-state-nodes_and_links \ 20 | +check-date-http \ 21 | +lime-app \ 22 | +lime-hwd-ground-routing \ 23 | +lime-debug \ 24 | +luci 25 | 26 | include ../../profile.mk 27 | 28 | # call BuildPackage - OpenWrt buildroot signature 29 | -------------------------------------------------------------------------------- /fuma-aonline/fumacaonline-1607/usr/bin/offline-redirect.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # script to check if there is internet connection 3 | # if there isn't, all traffic will be redirected to local server 4 | # fumaça online feature 5 | 6 | if ! ip route | grep -q -e default # if there is no route out, then... 7 | then 8 | # offline; check if redirect is already there 9 | 10 | if ! grep -q address=/#/10.7.128.10 /etc/dnsmasq.d/lime-proto-anygw-10-ipv4.conf 11 | then 12 | echo "address=/#/10.7.128.10">> /etc/dnsmasq.d/lime-proto-anygw-10-ipv4.conf 13 | echo "added line" 14 | /etc/init.d/dnsmasq restart 15 | fi 16 | else 17 | #if online, delete that line in case it is there 18 | if sed -i '\|address=/#/10.7.128.10|d' /etc/dnsmasq.d/lime-proto-anygw-10-ipv4.conf 19 | then 20 | /etc/init.d/dnsmasq restart 21 | fi 22 | echo "tried to delete line" 23 | fi 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'BCNmtj3DracaenaCanaria' 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.134/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:134/64' 7 | 8 | config net 'lm_hwd_openwrt_wan' 9 | option comment "in Jardi botanic topology we need to use as wan the interface which get POE input, while OpenWrt would default to lan on flex mArch" 10 | option autogenerated 'false' 11 | list protocols 'ieee80211s' 12 | list protocols 'batadv:%N1' 13 | list protocols 'bmx6:0' 14 | list protocols 'wan' 15 | option linux_name 'eth0.1' 16 | 17 | config wifi radio0 18 | option comment "the radios which comes with flex mArch do not work well with multiple VAPs" 19 | option autogenerated 'false' 20 | option channel_2ghz '11' 21 | option distance '1000' 22 | list modes 'ap' 23 | option ap_ssid 'jardibotanic.guifi.net' 24 | -------------------------------------------------------------------------------- /LibremeshTestBed/outdoor_sectorial_singleband/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option deferrable_reboot_uptime_s '654321' # reboot every 7.5 days 3 | 4 | config lime wifi 5 | option country 'KR' 6 | option ap_ssid 'PSP' 7 | option apname_ssid 'PSP/%H' 8 | option ieee80211s_mesh_id 'LiMe' 9 | 10 | config lime-wifi-band '2ghz' 11 | option channel '13' 12 | option htmode 'HT40' 13 | list modes 'ap' 14 | list modes 'apname' 15 | list modes 'ieee80211s' 16 | option distance '300' 17 | 18 | config lime-wifi-band '5ghz' 19 | option channel '157' 20 | option htmode 'VHT80' 21 | list modes 'ieee80211s' 22 | option distance '1000' 23 | 24 | config net lan1onlymesh 25 | option linux_name 'lan1' 26 | #list protocols lan # we want all the protocols but LAN, as this ethernet port will be used for meshing, not for clients access 27 | list protocols anygw 28 | list protocols batadv:%N1 29 | list protocols babeld:17 30 | -------------------------------------------------------------------------------- /NonoLibre/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Interval 30 34 | TTL 255 35 | MaxMissed -1 36 | 37 | 38 | 39 | Server "10.157.128.1" "25826" 40 | 41 | -------------------------------------------------------------------------------- /nono.libre.org.ar/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Interval 30 34 | TTL 255 35 | MaxMissed -1 36 | 37 | 38 | 39 | Server "10.6.1.1" "25826" 40 | 41 | -------------------------------------------------------------------------------- /RedCoMani/hacklime/etc/uci-defaults/97-redinc-config: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ##Lo primero que hacemos es agregar el gateway de la lan de forma manual 3 | ##Este gateway es el PfSense que tenemos en la red 4 | uci set network.lan.gateway='10.17.95.1' 5 | ###Lo segundo es modificar un par de opciones en el servidor DHCP (DNSmasq) de cada uno de los nodos 6 | ##Para que los clientes seban que maquina es la salida a internet 7 | ###Tambien agregamos reglas al dns para definir nuestro dominio local 8 | uci add_list dhcp.@dnsmasq[0].dhcp_option='3,10.17.95.1' 9 | uci add_list dhcp.@dnsmasq[0].dhcp_option='121,10.17.0.0/16,10.17.0.1' 10 | uci add_list dhcp.@dnsmasq[0].dhcp_option='249,10.17.0.0/16,10.17.0.1' 11 | uci add_list dhcp.@dnsmasq[0].address='/.redcomani.org/10.17.95.2' 12 | uci add_list dhcp.@dnsmasq[0].address='/firewall.redcomani.org/10.17.95.1' 13 | uci add_list dhcp.@dnsmasq[0].address='/pve.redcomani.org/10.17.95.3' 14 | uci add_list dhcp.@dnsmasq[0].address='/unms.redcomani.org/10.17.95.4' 15 | -------------------------------------------------------------------------------- /moinho/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Host "10.5.40.2" 34 | Interval 30 35 | TTL 255 36 | MaxMissed -1 37 | 38 | 39 | 40 | Server "10.5.1.4" "25826" 41 | 42 | -------------------------------------------------------------------------------- /jardibotanic/mArcFlex/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'jardi-%M4%M5%M6' 3 | option domain 'lan' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.1.105.%M6/21' 9 | option main_ipv6_address '2a00:1508:1:fe4c::105:%M6/64' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols batadv:%N1 13 | list protocols bmx6:13 14 | list resolvers '10.1.104.2' 15 | option bmx6_over_batman false 16 | option bmx6_pref_gw none 17 | option bmx6_mtu '1500' 18 | 19 | config lime wifi 20 | option ap_ssid 'jardibotanic.guifi.net' 21 | option channel_2ghz '11' 22 | option channel_5ghz '48' 23 | option htmode_5ghz 'HT40' 24 | option distance '1000' 25 | list modes 'ieee80211s' 26 | option ieee80211s_mesh_fwding '0' 27 | option ieee80211s_mesh_id 'LiMe' 28 | -------------------------------------------------------------------------------- /anisacate.libre.org.ar/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Host "10.5.40.2" 34 | Interval 30 35 | TTL 255 36 | MaxMissed -1 37 | 38 | 39 | 40 | Server "10.5.1.4" "25826" 41 | 42 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj3DracaenaCanaria/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'jardi-%M4%M5%M6' 3 | option domain 'lan' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.1.105.%M6/21' 9 | option main_ipv6_address '2a00:1508:1:fe4c::105:%M6/64' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols batadv:%N1 13 | list protocols bmx6:13 14 | list resolvers '10.1.104.2' 15 | option bmx6_over_batman false 16 | option bmx6_pref_gw none 17 | option bmx6_mtu '1500' 18 | 19 | config lime wifi 20 | option ap_ssid 'jardibotanic.guifi.net' 21 | option channel_2ghz '11' 22 | option channel_5ghz '48' 23 | option htmode_5ghz 'HT40' 24 | option distance '1000' 25 | list modes 'ieee80211s' 26 | option ieee80211s_mesh_fwding '0' 27 | option ieee80211s_mesh_id 'LiMe' 28 | -------------------------------------------------------------------------------- /labolsa.libre.org.ar/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Host "10.5.40.2" 34 | Interval 30 35 | TTL 255 36 | MaxMissed -1 37 | 38 | 39 | 40 | Server "10.5.1.4" "25826" 41 | 42 | -------------------------------------------------------------------------------- /laserranita.libre.org.ar/comun/etc/collectd.conf: -------------------------------------------------------------------------------- 1 | # Config file for collectd. More info: https://collectd.org/ 2 | # Note: Luci statistics will generate a new config and overwrite this file. 3 | 4 | BaseDir "/var/run/collectd" 5 | PIDFile "/var/run/collectd.pid" 6 | PluginDir "/usr/lib/collectd" 7 | TypesDB "/usr/share/collectd/types.db" 8 | Interval 30 9 | ReadThreads 2 10 | 11 | LoadPlugin interface 12 | LoadPlugin ping 13 | LoadPlugin syslog 14 | LoadPlugin network 15 | 16 | 17 | LogLevel info 18 | 19 | 20 | 21 | IgnoreSelected false 22 | Interface "br-lan" 23 | Interface "eth0.1" 24 | Interface "eth0.2" 25 | Interface "eth0.3" 26 | Interface "eth0.4" 27 | Interface "eth1" 28 | 29 | 30 | 31 | Host "8.8.8.8" 32 | Host "10.5.24.12" 33 | Host "10.5.40.2" 34 | Interval 30 35 | TTL 255 36 | MaxMissed -1 37 | 38 | 39 | 40 | Server "10.5.1.4" "25826" 41 | 42 | -------------------------------------------------------------------------------- /canodrom.barcelona/simple/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime network 2 | option main_ipv4_address '10.0.128.0/16/17' 3 | option anygw_dhcp_start '2562' 4 | option anygw_dhcp_limit '30205' 5 | option batadv_orig_interval '5000' 6 | 7 | config lime wifi 8 | option country 'ES' 9 | option ap_ssid 'LibreMesh.org' 10 | option apname_ssid 'LibreMesh.org/%H' 11 | list modes 'ieee80211s' 12 | option ieee80211s_mesh_id 'libremesh' 13 | 14 | config lime-wifi-band '2ghz' 15 | option channel '13' 16 | option distance '500' 17 | 18 | config lime-wifi-band '5ghz' 19 | option channel '48' 20 | option distance '500' 21 | 22 | config run_asset root_password 23 | option asset 'community/root_password' 24 | option when 'ATFIRSTBOOT' 25 | 26 | config copy_asset authorized_keys 27 | option asset 'community/authorized_keys' 28 | option dst '/etc/dropbear' 29 | 30 | config run_asset fix_authorized_keys_permissions 31 | option asset 'community/fix_authorized_keys_permissions' 32 | option when 'ATCONFIG' 33 | -------------------------------------------------------------------------------- /canmasdeu/README.adoc: -------------------------------------------------------------------------------- 1 | Can Masdeu Network profiles 2 | =========================== 3 | 4 | There are two profile, one called +dhcp+ is used only for the upstream gateway 5 | and provides routing, NAT, DHCP, DNS cashing with web interface to 6 | look at router status, and the other profile called +bridge+ is used for 7 | the rest of the devices, and provide just bridged WiFi access point 8 | functionality. 9 | 10 | .Compiling 11 | [source,bash] 12 | -------------------------------------------------------------------------------- 13 | 14 | for profile in \ 15 | tl-wdr4310-v1 tl-wr841-v1.5 tl-wr841-v3 tl-wr841-v5 tl-wr841-v7 \ 16 | tl-wr841-v8 tl-wr841-v9 tl-wr841-v10 tl-wr841-v11 tl-wr841-v12 17 | do 18 | ./cooker -c ar71xx/generic --profile=${profile} --flavor=lede_vanilla \ 19 | --community=canmasdeu/bridge 20 | done 21 | 22 | ./cooker -c ar71xx/generic --profile=tl-wdr4310-v1 --flavor=lede_vanilla \ 23 | --community=canmasdeu/dhcp 24 | 25 | -------------------------------------------------------------------------------- 26 | -------------------------------------------------------------------------------- /libremesh/suggested-packages/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Packages officially suggested on the LibreMesh.org website 4 | PROFILE_DEPENDS:=+lime-docs-minimal \ 5 | +lime-app \ 6 | +lime-hwd-openwrt-wan \ 7 | +lime-proto-anygw \ 8 | +lime-proto-babeld \ 9 | +lime-proto-batadv \ 10 | +shared-state \ 11 | +shared-state-babeld_hosts \ 12 | +shared-state-bat_hosts \ 13 | +shared-state-nodes_and_links \ 14 | +babeld-auto-gw-mode \ 15 | +batctl-default \ 16 | +check-date-http \ 17 | +lime-docs \ 18 | +lime-hwd-ground-routing \ 19 | +lime-debug 20 | 21 | include ../../profile.mk 22 | 23 | # call BuildPackage - OpenWrt buildroot signature 24 | -------------------------------------------------------------------------------- /jardibotanic/BCNmtj1InstitutBabel/etc/config/lime: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname BCNmtj1InstitutBabel 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.104.113/21' 6 | option main_ipv6_address '2a00:1508:1:fe4c::104:113/64' 7 | list protocols ieee80211s 8 | list protocols lan 9 | list protocols batadv:%N1 10 | list protocols babeld:17 11 | list resolvers '10.1.104.2' 12 | 13 | config hwd_gr grlan 14 | option net_dev 'eth0' 15 | option vlan '1' 16 | option switch_dev 'switch0' 17 | option switch_cpu_port '0' 18 | list switch_ports '3 4 5' 19 | 20 | config hwd_gr grwan 21 | option net_dev 'eth0' 22 | option vlan '2' 23 | option switch_dev 'switch0' 24 | option switch_cpu_port '0' 25 | list switch_ports '1' 26 | 27 | config hwd_gr linkverdi 28 | option net_dev 'eth0' 29 | option vlan '3' 30 | option switch_dev 'switch0' 31 | option switch_cpu_port '0' 32 | list switch_ports '2' 33 | 34 | config net netverdi 35 | option linux_name 'eth0.3' 36 | list protocols babeld:17 37 | list protocols batadv:%N1 38 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/uci-defaults/95_add-sshkeys: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sshkeys=" 4 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC9f+Z36iEyXcpPAwZMQxDTbAHEDrTxFQuMXGu0CiR11RVcnbFsF2rEvuo20WhSuMl2yd4cDZlikYpkAzQVqZyx1RXsCK7F1s0c9p1sx5UIddljBHsjYn16UCBz0OjSznGb4Q1qVmQr9ZoTamvn/OMSTE1YujCe8r3ti6w3rYXAZKFEGIvLWfu1g4VRmEeaKhE/zNrgqtLb+B7zS6zSbpNyAiXECOgcp4iKQzh/StK+H9qghBRlxfVFl6R/22sVIRx25vgOXiiMXGXaZr8DqJ3Puqa8q3HI0yL0ySp/GuMahD1rC4hXKm6G1Q+d26qkHKtZukO8bYSci0GfExmUKyOz2vmXoPNmiWs4PtoUTlDrQcYaDZycDLd6PTG2RlpexZO4WDfHgz7n8tpIknudEFXj/V9DWjvQclxtqoP1AVgsa5g0DAVAOakQSJPeb4DI8BDkvq5l6SFasOiSCg+n0XyoOE3YjR4U6bckDFm+d9ah+BjLIR4MLqI1TcsPb3jmjyZfMs3gc50Z9QpaNKtbAEXwk4xaVDiR3sMZ3BM99NNhj9dM4HD2w1yIIZuw5KkNpOJ/AO3OaPvkVxgrsRsBZanEhLW+uryZO8kmWnpAR77V3q/52mpjq6cmuVdtm+hXMlnfzgKjJrJbQ/qUZgKMr9PUgYK2i7iozAmwe1EDRBtAmw== 5 | " 6 | 7 | authkeys="/etc/dropbear/authorized_keys" 8 | umask 077 ; mkdir -p $(dirname $authkeys) ; touch $authkeys 9 | IFS=" 10 | " 11 | for key in $sshkeys ; do 12 | sed "\|^$key$|d" -i $authkeys 13 | echo "$key" >> $authkeys 14 | done 15 | -------------------------------------------------------------------------------- /NuestraRed.org/only-bmx7/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'NosRedORG-%M4%M5%M6' 3 | option domain 'nuestrared.org' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.%N1.0.0/16' 9 | option main_ipv6_address '2012:0:0:%M6::/48' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols bmx7 13 | list resolvers 10.132.1.1 # b.resolvers.Level3.net 14 | option bmx7_over_batman false 15 | option bmx7_pref_gw none 16 | option bmx7_mtu '1500' 17 | 18 | config lime wifi 19 | option channel_2ghz '11' 20 | option channel_5ghz '48' 21 | option htmode_5ghz 'HT40' 22 | option distance '1000' 23 | list modes 'ap' 24 | list modes 'apname' 25 | list modes 'ieee80211s' 26 | option ap_ssid 'NuestraRED.org' 27 | option apname_ssid 'NuestraRED.org' 28 | option ieee80211s_mesh_fwding '0' 29 | option ieee80211s_mesh_id 'NuestraRED' 30 | -------------------------------------------------------------------------------- /RedCoMani/only-bmx7/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'RedINC-%M4%M5%M6' 3 | option domain 'lan' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.%N1.%M5.%M6/16' 9 | option main_ipv6_address '2012:0:0:%M6::/48' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols bmx7 13 | list resolvers 10.17.95.1 # dns por defecto de la redinc.org 14 | option bmx7_over_batman false 15 | option bmx7_pref_gw none 16 | option bmx7_mtu '1500' 17 | 18 | config lime wifi 19 | option channel_2ghz '11' 20 | option channel_5ghz '48' 21 | option htmode_5ghz 'HT40' 22 | option distance '1000' 23 | list modes 'ap' 24 | list modes 'apname' 25 | list modes 'ieee80211s' 26 | option ap_ssid 'RedINC-Comunitaria' 27 | option apname_ssid 'RedINC-Comunitaria' 28 | option ieee80211s_mesh_fwding '0' 29 | option ieee80211s_mesh_id 'RedINC' 30 | -------------------------------------------------------------------------------- /antennine.org/an-metrics/root/usr/bin/prometheus-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pushgateway_host=$(uci get lime-autogen.pushgateway.host) 4 | pushgateway_user=$(uci get lime-autogen.pushgateway.user) 5 | pushgateway_password=$(uci get lime-autogen.pushgateway.password) 6 | metrics_file=/tmp/prometheus-metrics 7 | domain=$(uci get lime-autogen.system.domain) 8 | lan_ipv4=$(uci get network.lan.ipaddr) 9 | host=$(uci get system.@system[0].hostname) 10 | token="$(echo -n "$pushgateway_user:$pushgateway_password" | base64)" 11 | 12 | # push a subset of metrics 13 | prometheus-node-exporter-lua | grep \ 14 | -e scrape \ 15 | -e time \ 16 | \ 17 | -e wifi \ 18 | -e bytes \ 19 | \ 20 | -e cpu \ 21 | -e load \ 22 | \ 23 | -e openwrt \ 24 | -e uname \ 25 | \ 26 | -e location \ 27 | > "$metrics_file" 28 | 29 | wget -qO /dev/null \ 30 | --post-file "$metrics_file" \ 31 | --header="Authorization: Basic $token" \ 32 | https://${pushgateway_host}/metrics\ 33 | /job/remote_nodes\ 34 | /domain/${domain}\ 35 | /instance/${lan_ipv4}\ 36 | /port/9090\ 37 | /host/${host} 38 | 39 | rm "$metrics_file" 40 | -------------------------------------------------------------------------------- /openNET.io/default/etc/uci-defaults/95_add-sshkeys: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sshkeys=" 4 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC9f+Z36iEyXcpPAwZMQxDTbAHEDrTxFQuMXGu0CiR11RVcnbFsF2rEvuo20WhSuMl2yd4cDZlikYpkAzQVqZyx1RXsCK7F1s0c9p1sx5UIddljBHsjYn16UCBz0OjSznGb4Q1qVmQr9ZoTamvn/OMSTE1YujCe8r3ti6w3rYXAZKFEGIvLWfu1g4VRmEeaKhE/zNrgqtLb+B7zS6zSbpNyAiXECOgcp4iKQzh/StK+H9qghBRlxfVFl6R/22sVIRx25vgOXiiMXGXaZr8DqJ3Puqa8q3HI0yL0ySp/GuMahD1rC4hXKm6G1Q+d26qkHKtZukO8bYSci0GfExmUKyOz2vmXoPNmiWs4PtoUTlDrQcYaDZycDLd6PTG2RlpexZO4WDfHgz7n8tpIknudEFXj/V9DWjvQclxtqoP1AVgsa5g0DAVAOakQSJPeb4DI8BDkvq5l6SFasOiSCg+n0XyoOE3YjR4U6bckDFm+d9ah+BjLIR4MLqI1TcsPb3jmjyZfMs3gc50Z9QpaNKtbAEXwk4xaVDiR3sMZ3BM99NNhj9dM4HD2w1yIIZuw5KkNpOJ/AO3OaPvkVxgrsRsBZanEhLW+uryZO8kmWnpAR77V3q/52mpjq6cmuVdtm+hXMlnfzgKjJrJbQ/qUZgKMr9PUgYK2i7iozAmwe1EDRBtAmw== 5 | " 6 | 7 | authkeys="/etc/dropbear/authorized_keys" 8 | umask 077 ; mkdir -p $(dirname $authkeys) ; touch $authkeys 9 | IFS=" 10 | " 11 | for key in $sshkeys ; do 12 | sed "\|^$key$|d" -i $authkeys 13 | echo "$key" >> $authkeys 14 | done 15 | -------------------------------------------------------------------------------- /MieresLliure/README.adoc: -------------------------------------------------------------------------------- 1 | Profiles for libremesh workshop 2018 in Mieres Girona 2 | ===================================================== 3 | 4 | .Compiling 5 | [source,bash] 6 | -------------------------------------------------------------------------------- 7 | 8 | ./cooker -c ar71xx/generic --flavor=lime_default --profile=ubnt-nano-m-xw \ 9 | --community=MieresLliure/default --flavor=lime_babel 10 | 11 | ./cooker -c ar71xx/generic --flavor=lime_default --profile=mynet-n600 \ 12 | --community=MieresLliure/default --flavor=lime_babel 13 | 14 | ./cooker -c ar71xx/generic --flavor=lime_default --profile=tl-wdr3500-v1 \ 15 | --community=MieresLliure/default --flavor=lime_babel 16 | 17 | ./cooker -c ar71xx/generic --flavor=lime_default --profile=tl-wdr3600-v1 \ 18 | --community=MieresLliure/default --flavor=lime_babel 19 | 20 | ./cooker -c ar71xx/generic --flavor=lime_default --profile=tl-wdr4300-v1 \ 21 | --community=MieresLliure/default --flavor=lime_babel 22 | 23 | -------------------------------------------------------------------------------- 24 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/uci-defaults/95_add-sshkeys: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sshkeys=" 4 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC9f+Z36iEyXcpPAwZMQxDTbAHEDrTxFQuMXGu0CiR11RVcnbFsF2rEvuo20WhSuMl2yd4cDZlikYpkAzQVqZyx1RXsCK7F1s0c9p1sx5UIddljBHsjYn16UCBz0OjSznGb4Q1qVmQr9ZoTamvn/OMSTE1YujCe8r3ti6w3rYXAZKFEGIvLWfu1g4VRmEeaKhE/zNrgqtLb+B7zS6zSbpNyAiXECOgcp4iKQzh/StK+H9qghBRlxfVFl6R/22sVIRx25vgOXiiMXGXaZr8DqJ3Puqa8q3HI0yL0ySp/GuMahD1rC4hXKm6G1Q+d26qkHKtZukO8bYSci0GfExmUKyOz2vmXoPNmiWs4PtoUTlDrQcYaDZycDLd6PTG2RlpexZO4WDfHgz7n8tpIknudEFXj/V9DWjvQclxtqoP1AVgsa5g0DAVAOakQSJPeb4DI8BDkvq5l6SFasOiSCg+n0XyoOE3YjR4U6bckDFm+d9ah+BjLIR4MLqI1TcsPb3jmjyZfMs3gc50Z9QpaNKtbAEXwk4xaVDiR3sMZ3BM99NNhj9dM4HD2w1yIIZuw5KkNpOJ/AO3OaPvkVxgrsRsBZanEhLW+uryZO8kmWnpAR77V3q/52mpjq6cmuVdtm+hXMlnfzgKjJrJbQ/qUZgKMr9PUgYK2i7iozAmwe1EDRBtAmw== 5 | " 6 | 7 | authkeys="/etc/dropbear/authorized_keys" 8 | umask 077 ; mkdir -p $(dirname $authkeys) ; touch $authkeys 9 | IFS=" 10 | " 11 | for key in $sshkeys ; do 12 | sed "\|^$key$|d" -i $authkeys 13 | echo "$key" >> $authkeys 14 | done 15 | -------------------------------------------------------------------------------- /RedINC-Comunitaria/only-bmx7/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'RedINC-%M4%M5%M6' 3 | option domain 'lan' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.%N1.%M5.%M6/16' 9 | option main_ipv6_address '2012:0:0:%M6::/48' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols bmx7 13 | list resolvers 10.17.95.1 # dns por defecto de la redinc.org 14 | option bmx7_over_batman false 15 | option bmx7_pref_gw none 16 | option bmx7_mtu '1500' 17 | 18 | config lime wifi 19 | option channel_2ghz '11' 20 | option channel_5ghz '48' 21 | option htmode_5ghz 'HT40' 22 | option distance '1000' 23 | list modes 'ap' 24 | list modes 'apname' 25 | list modes 'ieee80211s' 26 | option ap_ssid 'RedINC-Comunitaria' 27 | option apname_ssid 'RedINC-Comunitaria' 28 | option ieee80211s_mesh_fwding '0' 29 | option ieee80211s_mesh_id 'RedINC' 30 | -------------------------------------------------------------------------------- /calafou/outdoor_gateway/root/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option deferrable_reboot_uptime_s '654321' # reboot every 7.5 days 3 | 4 | config lime network 5 | option main_ipv4_address '10.1.128.0/16/17' 6 | option anygw_dhcp_start '2562' 7 | option anygw_dhcp_limit '30205' 8 | option batadv_orig_interval '5000' 9 | 10 | config lime wifi 11 | option country 'ES' 12 | option ap_ssid 'Calafou-to-be-configured' 13 | option apname_ssid 'Calafou/%H-to-be-configured' 14 | option ieee80211s_mesh_id 'libremesh' 15 | 16 | config lime-wifi-band '2ghz' 17 | option channel '1' 18 | option htmode 'HT40' 19 | list modes 'ap' 20 | list modes 'apname' 21 | list modes 'ieee80211s' 22 | option distance '300' 23 | 24 | config lime-wifi-band '5ghz' 25 | option channel '36' 26 | option htmode 'VHT80' 27 | list modes 'ieee80211s' 28 | option distance '300' 29 | 30 | config generic_uci_config prometheus 31 | list uci_set "prometheus-node-exporter-lua.main.listen_interface=lan" 32 | 33 | config run_asset prometheus_enable 34 | option asset 'community/prometheus_enable' 35 | option when 'ATFIRSTBOOT' 36 | 37 | -------------------------------------------------------------------------------- /calafou/outdoor_nongateway/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)/rules.mk 2 | 3 | PROFILE_DESCRIPTION:=Encryptable mesh and AP for Calafou outdoor nodes 4 | PROFILE_DEPENDS:=+deferrable-reboot +safe-reboot +shared-state-network_nodes +shared-state-dnsmasq_servers \ 5 | +lime-docs \ 6 | +lime-proto-babeld \ 7 | +lime-proto-batadv \ 8 | +lime-proto-anygw \ 9 | +shared-state \ 10 | +hotplug-initd-services \ 11 | +shared-state-babeld_hosts \ 12 | +shared-state-bat_hosts \ 13 | +shared-state-dnsmasq_hosts \ 14 | +shared-state-dnsmasq_leases \ 15 | +shared-state-nodes_and_links \ 16 | +check-date-http \ 17 | +lime-app \ 18 | +lime-hwd-ground-routing \ 19 | +lime-debug \ 20 | +prometheus-node-exporter-lua \ 21 | +prometheus-node-exporter-lua-openwrt \ 22 | +prometheus-node-exporter-lua-wifi_stations \ 23 | +prometheus-node-exporter-lua-wifi-stations-extra \ 24 | +prometheus-node-exporter-lua-wifi-survey \ 25 | +prometheus-node-exporter-lua-wifi-params \ 26 | +prometheus-node-exporter-lua-location-latlon \ 27 | +prometheus-node-push-influx 28 | 29 | include ../../profile.mk 30 | 31 | # call BuildPackage - OpenWrt buildroot signature 32 | -------------------------------------------------------------------------------- /openNET.io/mir3g/etc/config/libremap: -------------------------------------------------------------------------------- 1 | 2 | config libremap 'settings' 3 | list api_url 'http://libremap.net/api/' 4 | list api_url 'http://libremap.berlin.freifunk.net/api' 5 | option public_url 'http://libremap.net/' 6 | option fetch_by_name '0' 7 | option community 'openNET.io' 8 | option community_lat '45.464161' 9 | option community_lon '9.190336' 10 | 11 | config plugin 'altermap' 12 | option enabled '0' 13 | 14 | config plugin 'contact' 15 | option enabled '0' 16 | option name 'Nz' 17 | option email '01152671@ndhv.os.vu' 18 | 19 | config plugin 'freifunk' 20 | option enabled '0' 21 | 22 | config plugin 'location' 23 | option enabled '1' 24 | option latitude '45.464161' 25 | option longitude '9.190336' 26 | option elev '124' 27 | 28 | config plugin 'olsr' 29 | option enabled '0' 30 | 31 | config plugin 'system' 32 | option enabled '1' 33 | 34 | config plugin 'wireless' 35 | option enabled '1' 36 | 37 | config plugin 'babel' 38 | option enabled '0' 39 | 40 | config plugin 'bmx6' 41 | option enabled '1' 42 | 43 | config plugin 'qmp' 44 | option enabled '0' 45 | -------------------------------------------------------------------------------- /openNET.io/default/etc/config/libremap: -------------------------------------------------------------------------------- 1 | 2 | config libremap 'settings' 3 | list api_url 'http://libremap.net/api/' 4 | list api_url 'http://libremap.berlin.freifunk.net/api' 5 | option public_url 'http://libremap.net/' 6 | option fetch_by_name '0' 7 | option community 'openNET.io' 8 | option community_lat '45.464161' 9 | option community_lon '9.190336' 10 | 11 | config plugin 'altermap' 12 | option enabled '0' 13 | 14 | config plugin 'contact' 15 | option enabled '0' 16 | option name 'Nz' 17 | option email '01152671@ndhv.os.vu' 18 | 19 | config plugin 'freifunk' 20 | option enabled '0' 21 | 22 | config plugin 'location' 23 | option enabled '1' 24 | option latitude '45.464161' 25 | option longitude '9.190336' 26 | option elev '124' 27 | 28 | config plugin 'olsr' 29 | option enabled '0' 30 | 31 | config plugin 'system' 32 | option enabled '1' 33 | 34 | config plugin 'wireless' 35 | option enabled '1' 36 | 37 | config plugin 'babel' 38 | option enabled '0' 39 | 40 | config plugin 'bmx6' 41 | option enabled '1' 42 | 43 | config plugin 'qmp' 44 | option enabled '0' 45 | -------------------------------------------------------------------------------- /libremesh/only-bmx7/etc/config/lime-community: -------------------------------------------------------------------------------- 1 | config lime system 2 | option hostname 'LiMe-%M4%M5%M6' 3 | option domain 'lan' 4 | option keep_on_upgrade 'libremesh base-files-essential /etc/sysupgrade.conf' 5 | 6 | config lime network 7 | option primary_interface eth0 8 | option main_ipv4_address '10.%N1.%M5.%M6/24' 9 | option main_ipv6_address '2012:0:0:%M6::/48' 10 | list protocols ieee80211s 11 | list protocols lan 12 | list protocols bmx7 13 | list resolvers 4.2.2.2 # b.resolvers.Level3.net 14 | list resolvers 141.1.1.1 # cns1.cw.net 15 | list resolvers 2001:470:20::2 # ordns.he.net 16 | option bmx7_over_batman false 17 | option bmx7_pref_gw none 18 | option bmx7_mtu '1500' 19 | 20 | config lime wifi 21 | option channel_2ghz '11' 22 | option channel_5ghz '48' 23 | option htmode_5ghz 'HT40' 24 | option distance '1000' 25 | list modes 'ap' 26 | list modes 'apname' 27 | list modes 'ieee80211s' 28 | option ap_ssid 'LibreMesh.org' 29 | option apname_ssid 'LibreMesh.org/%H' 30 | option ieee80211s_mesh_fwding '0' 31 | option ieee80211s_mesh_id 'LiMe' 32 | -------------------------------------------------------------------------------- /openNET.io/tl-wr841-v11/etc/config/libremap: -------------------------------------------------------------------------------- 1 | 2 | config libremap 'settings' 3 | list api_url 'http://libremap.net/api/' 4 | list api_url 'http://libremap.berlin.freifunk.net/api' 5 | option public_url 'http://libremap.net/' 6 | option fetch_by_name '0' 7 | option community 'openNET.io' 8 | option community_lat '45.464161' 9 | option community_lon '9.190336' 10 | 11 | config plugin 'altermap' 12 | option enabled '0' 13 | 14 | config plugin 'contact' 15 | option enabled '0' 16 | option name 'Nz' 17 | option email '01152671@ndhv.os.vu' 18 | 19 | config plugin 'freifunk' 20 | option enabled '0' 21 | 22 | config plugin 'location' 23 | option enabled '1' 24 | option latitude '45.464161' 25 | option longitude '9.190336' 26 | option elev '124' 27 | 28 | config plugin 'olsr' 29 | option enabled '0' 30 | 31 | config plugin 'system' 32 | option enabled '1' 33 | 34 | config plugin 'wireless' 35 | option enabled '1' 36 | 37 | config plugin 'babel' 38 | option enabled '0' 39 | 40 | config plugin 'bmx6' 41 | option enabled '1' 42 | 43 | config plugin 'qmp' 44 | option enabled '0' 45 | -------------------------------------------------------------------------------- /klimacamp/common/etc/dropbear/authorized_keys: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBNNT9RX2m9RP+UKyE3wgMrU6bstXxnI2K2MikIACAtCylMvowEw/ahypoI8njLLzYSmA+iIIoUWwYmJ6ZZBwsTMEH4C3z4HH+9+jsZSAXw34DpBvzejg67wfBmJZtzUch8+ZUwASM9MuM22eN/5sq+ya+UHTHWvfd095C+knG6UfRIsx7I8GrLLnagJHaJrh9LczHdOdlA+SXHZeUIDQOG2eXgUj9bcoXTxG0FUfA4YJV66uvum0Zcxt8dUYU2Nhwlks6DDtNLiY8qPWg4nhRh7Sk/g5Vh+GZBqibnuwjm0PEv+XqGnAiQWZZi9xLcsAfWCNl682L0Vfw68C4cf7V nickar@ingorian 2 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDuB3efv4G7beZQW4h0qsZ8shJUStzULB1IRtaGzFUQbyzrV3tnN0hLcC0dgtP1c4dT/dLuVWBbbCK7QZZMxvH4IyQVqugD4bpOnsONh8l1m6TbwJvwtCGetIHTxMu2yyltdK3/VUfZ1ypqHlXKFMTaNVm2vD0hWObykVzDA6LmhiCLfuASKmFn5cDlcPQDSNx4TFZt45YF3plPZyDnlaKx4d385a8/oSg0SWV+K6Zd9R4fW/ZdRvaf9QBaWgb0YELd+PpdQqG2rajslNVgK1UiH0A+DpTigJuXUdWoru+rsETUWl12k8tijKrh/S23z4Qf75OoL3UA/eJt5lHtoOKbwuYLzRAmXf70rreDX2P1QyftaHSv9cSe0Y1t7f9FN8DjBl0FDitzXErsxw71d82W3y35wnoWzVUcEbILLq1I53qZcpo3nGcVTWEkEmSwLBiEQNQgcfZskX1GahGZjz8ZHPFRj1fppx6+cqPx1Muc4yPu9zX1euJvXTkFBaua7l4iHxUrREOr/5Y+E1wiuO2jGhT/wn1SU3+hHLoi49LmTaOE85Q1vpGLms2EJ72VoDAIkmfFGcRBkSmdqKAHOxwXxO6n0r3F9XnuePYmS38YtdFZ2zTkLUTCYobzCs92FEhYXoqmKkzKOOmoUxlh3uptV1yYv9ziHsum6Asj4vGu6w== klima@netz.coop 3 | 4 | --------------------------------------------------------------------------------