├── .github └── workflows │ ├── build-RG3205W-custom-rom.yaml │ ├── jekyll.yaml │ └── release-email-file-server.yaml ├── .gitignore ├── .goreleaser.yml ├── Gemfile ├── IGW5000 ├── README.en.md ├── README.md ├── panel-controller │ ├── app.py │ └── requirements.txt ├── setup │ └── setup.sh ├── xfce.en.md └── xfce.md ├── LICENSE ├── README.en.md ├── README.md ├── RG3205W ├── README.en.md ├── README.md ├── custom-rom-build │ ├── .ansible │ │ ├── patch-boot.yaml │ │ ├── patch-system.yaml │ │ ├── patch-vendor.yaml │ │ └── roles │ │ │ └── apk-downloader │ │ │ └── tasks │ │ │ └── main.yaml │ ├── .gitignore │ └── system │ │ └── bin │ │ └── install-recovery.sh ├── firehose.mbn ├── pcb-edler │ ├── BOM_RG3205W-EDLer.csv │ ├── Gerber_RG3205W-EDLer.zip │ ├── PickAndPlace_RG3205W-EDLer.csv │ ├── RG3205W-EDLer.epro │ └── Schematics_RG3205W-EDLer.pdf ├── rev5-softhacks │ ├── README.en.md │ ├── README.md │ ├── automate-examples │ │ ├── Dim-brightness-at-calculated-sunrise-sunset-times.flo │ │ ├── Run-screensaver-every-3min.flo │ │ └── Start-Firefox-and-screensaver-at-boot.flo │ ├── extras.en.md │ └── extras.md └── stock-rom-dumps │ ├── ES_g1.0_RG3205W1.2.4_201912112049 │ ├── .gitattributes │ ├── ES_g1.0_RG3205W1.2.4_201912112049.7z │ └── SHA256SUMS.txt │ └── ES_g1.0_RG3205W3.7.0_202209282206 │ ├── .gitattributes │ ├── ES_g1.0_RG3205W3.7.0_202209282206.7z │ └── SHA256SUMS.txt ├── _config.yml ├── assets ├── css │ └── style.scss └── img │ ├── IGW5000-bios.jpg │ ├── IGW5000-bsod.jpg │ ├── IGW5000-internal.jpg │ ├── IGW5000-label.jpg │ ├── IGW5000-neofetch.jpg │ ├── IGW5000-original-browser.jpg │ ├── IGW5000-usb-connection-examples.jpg │ ├── IGW5000-usb-port-connection.jpg │ ├── IGW5000-usb-port-location.jpg │ ├── RG3205W-label.jpg │ ├── RG3205W-rev4-internal.jpg │ ├── RG3205W-rev5-internal.jpg │ ├── RG3205W-rev5-usb-jst-port-connection.jpg │ ├── RG3205W-rev5-usb-pull-down-resistor.jpg │ ├── characteristics.png │ ├── email-apks-install.png │ ├── email-apks-step-1.png │ ├── email-apks-step-4.png │ ├── email-apks-step-5.png │ ├── hass.jpg │ ├── onboarding-wifi.jpg │ ├── usb-type-c-pinout.png │ └── wallapop.png ├── email-file-server ├── files │ └── example.txt ├── go.mod ├── go.sum └── main.go └── researches ├── IGW5000.md └── easycwmp ├── config.default.xml ├── config └── easycwmp ├── defaults ├── functions ├── common │ └── common ├── device_info ├── ip ├── ipping_diagnostic ├── ipping_launch ├── management_server └── root └── lib ├── config └── uci.sh ├── functions.sh └── functions └── network.sh /.github/workflows/build-RG3205W-custom-rom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/.github/workflows/build-RG3205W-custom-rom.yaml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/.github/workflows/jekyll.yaml -------------------------------------------------------------------------------- /.github/workflows/release-email-file-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/.github/workflows/release-email-file-server.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/Gemfile -------------------------------------------------------------------------------- /IGW5000/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/README.en.md -------------------------------------------------------------------------------- /IGW5000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/README.md -------------------------------------------------------------------------------- /IGW5000/panel-controller/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/panel-controller/app.py -------------------------------------------------------------------------------- /IGW5000/panel-controller/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/panel-controller/requirements.txt -------------------------------------------------------------------------------- /IGW5000/setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/setup/setup.sh -------------------------------------------------------------------------------- /IGW5000/xfce.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/xfce.en.md -------------------------------------------------------------------------------- /IGW5000/xfce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/IGW5000/xfce.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/README.md -------------------------------------------------------------------------------- /RG3205W/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/README.en.md -------------------------------------------------------------------------------- /RG3205W/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/README.md -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/.ansible/patch-boot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/custom-rom-build/.ansible/patch-boot.yaml -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/.ansible/patch-system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/custom-rom-build/.ansible/patch-system.yaml -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/.ansible/patch-vendor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/custom-rom-build/.ansible/patch-vendor.yaml -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/.ansible/roles/apk-downloader/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/custom-rom-build/.ansible/roles/apk-downloader/tasks/main.yaml -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/.gitignore: -------------------------------------------------------------------------------- 1 | system/app/** 2 | -------------------------------------------------------------------------------- /RG3205W/custom-rom-build/system/bin/install-recovery.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | exit 0 -------------------------------------------------------------------------------- /RG3205W/firehose.mbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/firehose.mbn -------------------------------------------------------------------------------- /RG3205W/pcb-edler/BOM_RG3205W-EDLer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/pcb-edler/BOM_RG3205W-EDLer.csv -------------------------------------------------------------------------------- /RG3205W/pcb-edler/Gerber_RG3205W-EDLer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/pcb-edler/Gerber_RG3205W-EDLer.zip -------------------------------------------------------------------------------- /RG3205W/pcb-edler/PickAndPlace_RG3205W-EDLer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/pcb-edler/PickAndPlace_RG3205W-EDLer.csv -------------------------------------------------------------------------------- /RG3205W/pcb-edler/RG3205W-EDLer.epro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/pcb-edler/RG3205W-EDLer.epro -------------------------------------------------------------------------------- /RG3205W/pcb-edler/Schematics_RG3205W-EDLer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/pcb-edler/Schematics_RG3205W-EDLer.pdf -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/README.en.md -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/README.md -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/automate-examples/Dim-brightness-at-calculated-sunrise-sunset-times.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/automate-examples/Dim-brightness-at-calculated-sunrise-sunset-times.flo -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/automate-examples/Run-screensaver-every-3min.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/automate-examples/Run-screensaver-every-3min.flo -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/automate-examples/Start-Firefox-and-screensaver-at-boot.flo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/automate-examples/Start-Firefox-and-screensaver-at-boot.flo -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/extras.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/extras.en.md -------------------------------------------------------------------------------- /RG3205W/rev5-softhacks/extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/rev5-softhacks/extras.md -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/.gitattributes -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/ES_g1.0_RG3205W1.2.4_201912112049.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/ES_g1.0_RG3205W1.2.4_201912112049.7z -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/SHA256SUMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W1.2.4_201912112049/SHA256SUMS.txt -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/.gitattributes -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/ES_g1.0_RG3205W3.7.0_202209282206.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/ES_g1.0_RG3205W3.7.0_202209282206.7z -------------------------------------------------------------------------------- /RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/SHA256SUMS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/RG3205W/stock-rom-dumps/ES_g1.0_RG3205W3.7.0_202209282206/SHA256SUMS.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/img/IGW5000-bios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-bios.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-bsod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-bsod.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-internal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-internal.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-label.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-neofetch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-neofetch.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-original-browser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-original-browser.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-usb-connection-examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-usb-connection-examples.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-usb-port-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-usb-port-connection.jpg -------------------------------------------------------------------------------- /assets/img/IGW5000-usb-port-location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/IGW5000-usb-port-location.jpg -------------------------------------------------------------------------------- /assets/img/RG3205W-label.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/RG3205W-label.jpg -------------------------------------------------------------------------------- /assets/img/RG3205W-rev4-internal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/RG3205W-rev4-internal.jpg -------------------------------------------------------------------------------- /assets/img/RG3205W-rev5-internal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/RG3205W-rev5-internal.jpg -------------------------------------------------------------------------------- /assets/img/RG3205W-rev5-usb-jst-port-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/RG3205W-rev5-usb-jst-port-connection.jpg -------------------------------------------------------------------------------- /assets/img/RG3205W-rev5-usb-pull-down-resistor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/RG3205W-rev5-usb-pull-down-resistor.jpg -------------------------------------------------------------------------------- /assets/img/characteristics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/characteristics.png -------------------------------------------------------------------------------- /assets/img/email-apks-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/email-apks-install.png -------------------------------------------------------------------------------- /assets/img/email-apks-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/email-apks-step-1.png -------------------------------------------------------------------------------- /assets/img/email-apks-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/email-apks-step-4.png -------------------------------------------------------------------------------- /assets/img/email-apks-step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/email-apks-step-5.png -------------------------------------------------------------------------------- /assets/img/hass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/hass.jpg -------------------------------------------------------------------------------- /assets/img/onboarding-wifi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/onboarding-wifi.jpg -------------------------------------------------------------------------------- /assets/img/usb-type-c-pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/usb-type-c-pinout.png -------------------------------------------------------------------------------- /assets/img/wallapop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/assets/img/wallapop.png -------------------------------------------------------------------------------- /email-file-server/files/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/email-file-server/files/example.txt -------------------------------------------------------------------------------- /email-file-server/go.mod: -------------------------------------------------------------------------------- 1 | module email-file-server 2 | 3 | go 1.25 4 | -------------------------------------------------------------------------------- /email-file-server/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /email-file-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/email-file-server/main.go -------------------------------------------------------------------------------- /researches/IGW5000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/IGW5000.md -------------------------------------------------------------------------------- /researches/easycwmp/config.default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/config.default.xml -------------------------------------------------------------------------------- /researches/easycwmp/config/easycwmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/config/easycwmp -------------------------------------------------------------------------------- /researches/easycwmp/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/defaults -------------------------------------------------------------------------------- /researches/easycwmp/functions/common/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/common/common -------------------------------------------------------------------------------- /researches/easycwmp/functions/device_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/device_info -------------------------------------------------------------------------------- /researches/easycwmp/functions/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/ip -------------------------------------------------------------------------------- /researches/easycwmp/functions/ipping_diagnostic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/ipping_diagnostic -------------------------------------------------------------------------------- /researches/easycwmp/functions/ipping_launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/ipping_launch -------------------------------------------------------------------------------- /researches/easycwmp/functions/management_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/management_server -------------------------------------------------------------------------------- /researches/easycwmp/functions/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/functions/root -------------------------------------------------------------------------------- /researches/easycwmp/lib/config/uci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/lib/config/uci.sh -------------------------------------------------------------------------------- /researches/easycwmp/lib/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/lib/functions.sh -------------------------------------------------------------------------------- /researches/easycwmp/lib/functions/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zry98/movistar-home-hacks/HEAD/researches/easycwmp/lib/functions/network.sh --------------------------------------------------------------------------------