dns - Access Router From Internet -
i aware of how access router under normal circumstances (simply entering public ip address), have forwarded few ports web server have setup. ports 22, 80, 8080 forwarded (for different reasons), , public ip set through dns system.
now when attempt access router settings (through public ip) re-directs me website. tried entering:
pu:bl:ic:ip:8080
and
pu:bl:ic:ip:80
with no success. did attempt disable web server (which still have access to) , failed. there anyway around without having go home , change setting manually. have dmz disabled if that's help.
you have forwarded port 22, ssh port. there 3 ways access router ssh:
use ssh port forwarding poke hole through router access you're router's admin interface local computer. in openssh command line, use option
-l 12345:router-ip:80
. in putty, use connection/ssh/tunnels category add local forwarded port source 12345 , destination router-ip:80. can access admin interface local machine browsing http://localhost:12345. if router uses different port 80, change in examples above. if want use different local port 12345, may change well.use text-mode browser, such lynx or elinks, ssh connection. simplest set up, using modern web apps in text-mode browsers can difficult or impossible.
if have x server running @ current location, use ssh's x11 forwarding run graphical browser. use
-x
option openssh @ command line, or check x11 forwarding box in connection/ssh/x11 in putty.
Comments
Post a Comment