1
19.7 Legacy Series / Re: accessing dsl modem behind firewall with some caveats...
« on: August 29, 2019, 05:19:59 pm »
I solved it with an SSH port forwarding.
My Vigor DSL modem has the IP 192.168.244.1
OPNsense has the IP 192.168.11.1
Allow ssh login on the OPNsense.
Use the following command to get the port of the DSL modem to the local PC.
ssh -p 9998 OPNSenseUser@192.168.11.1 -L 8082:192.168.244.1:443
9998 = SSH Port OPNSense
Now directly access the modem in the WEB browser on the local PC with the following URL:
https://127.0.0.1:8082/
So I can see all parameters and also do firmware updates.
Possibly the solution is also interesting for others.
My Vigor DSL modem has the IP 192.168.244.1
OPNsense has the IP 192.168.11.1
Allow ssh login on the OPNsense.
Use the following command to get the port of the DSL modem to the local PC.
ssh -p 9998 OPNSenseUser@192.168.11.1 -L 8082:192.168.244.1:443
9998 = SSH Port OPNSense
Now directly access the modem in the WEB browser on the local PC with the following URL:
https://127.0.0.1:8082/
So I can see all parameters and also do firmware updates.
Possibly the solution is also interesting for others.