├── .github └── ISSUE_TEMPLATE │ └── task_template.md ├── .gitignore ├── README.md ├── communications ├── .keep ├── email-templates │ └── new-contributor.md └── shortlinks.csv ├── governance └── .keep ├── network ├── .keep └── scripts │ ├── l2tp-tunnel-endpoint │ ├── README.md │ └── l2tp-update.sh │ ├── openwrt-exporter │ ├── README.md │ └── metrics │ └── unms_exporter │ ├── README.md │ └── unms_exporter.py └── operations ├── .keep ├── emails-templates └── working-at-heights-training.md ├── hardware-budgets ├── 2020-09-18-ip-asn.md ├── 2020-09-18-telephone-service.md ├── 2020-10-01-hardware.md ├── 2020-11-16-mounts.md ├── 2021-02-15-airfiber-SN2-SN3.md └── 2021-02-15-spare-hardware.md └── published-documents ├── Brief-v002.pdf ├── Brief-v002r.pdf ├── brief-v001.pdf ├── brief-v001r.pdf ├── proposal-draft-v001.pdf ├── proposal-draft-v002.pdf └── proposal-draft-v003.pdf /.github/ISSUE_TEMPLATE/task_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/.github/ISSUE_TEMPLATE/task_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/README.md -------------------------------------------------------------------------------- /communications/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /communications/email-templates/new-contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/communications/email-templates/new-contributor.md -------------------------------------------------------------------------------- /communications/shortlinks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/communications/shortlinks.csv -------------------------------------------------------------------------------- /governance/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/scripts/l2tp-tunnel-endpoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/l2tp-tunnel-endpoint/README.md -------------------------------------------------------------------------------- /network/scripts/l2tp-tunnel-endpoint/l2tp-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/l2tp-tunnel-endpoint/l2tp-update.sh -------------------------------------------------------------------------------- /network/scripts/openwrt-exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/openwrt-exporter/README.md -------------------------------------------------------------------------------- /network/scripts/openwrt-exporter/metrics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/openwrt-exporter/metrics -------------------------------------------------------------------------------- /network/scripts/unms_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/unms_exporter/README.md -------------------------------------------------------------------------------- /network/scripts/unms_exporter/unms_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/network/scripts/unms_exporter/unms_exporter.py -------------------------------------------------------------------------------- /operations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operations/emails-templates/working-at-heights-training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/emails-templates/working-at-heights-training.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2020-09-18-ip-asn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2020-09-18-ip-asn.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2020-09-18-telephone-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2020-09-18-telephone-service.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2020-10-01-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2020-10-01-hardware.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2020-11-16-mounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2020-11-16-mounts.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2021-02-15-airfiber-SN2-SN3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2021-02-15-airfiber-SN2-SN3.md -------------------------------------------------------------------------------- /operations/hardware-budgets/2021-02-15-spare-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/hardware-budgets/2021-02-15-spare-hardware.md -------------------------------------------------------------------------------- /operations/published-documents/Brief-v002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/Brief-v002.pdf -------------------------------------------------------------------------------- /operations/published-documents/Brief-v002r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/Brief-v002r.pdf -------------------------------------------------------------------------------- /operations/published-documents/brief-v001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/brief-v001.pdf -------------------------------------------------------------------------------- /operations/published-documents/brief-v001r.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/brief-v001r.pdf -------------------------------------------------------------------------------- /operations/published-documents/proposal-draft-v001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/proposal-draft-v001.pdf -------------------------------------------------------------------------------- /operations/published-documents/proposal-draft-v002.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/proposal-draft-v002.pdf -------------------------------------------------------------------------------- /operations/published-documents/proposal-draft-v003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomeshnet/toronto-community-network/HEAD/operations/published-documents/proposal-draft-v003.pdf --------------------------------------------------------------------------------