Hello,
when I log in through ssh to a remote site and open the web interface from a ( new ) printer using Lynx, it only displays :
FRAME: wlmframe
I suspect this is some unfriendly coding, that will cost me time in opening Firefox instead of Lynx or w3m.
Does anybody know of a way around this?
Greetings, Johan
On 2014-10-23, Johan Vermeulen jvermeulen@cawdekempen.be wrote:
when I log in through ssh to a remote site and open the web interface from a ( new ) printer using Lynx, it only displays :
FRAME: wlmframe
I suspect this is some unfriendly coding, that will cost me time in opening Firefox instead of Lynx or w3m.
Does anybody know of a way around this?
You will need to figure out what URL the printer wants. You can look at the source HTML to see if you can figure it out. links might be able to show more of the page, as well. That might be a total solution, as there may be even more ''unfriendly'' coding that prevents you from using their UI from a text-based browser (e.g., point-and-click JavaScript).
--keith
On Oct 23, 2014, at 12:27 PM, Johan Vermeulen jvermeulen@cawdekempen.be wrote:
Does anybody know of a way around this?
You could also use SSH port forwarding to let you open up the printer's web page on your workstation rather on the remote server.
-- Jonathan Billings billings@negate.org
I'd use a SOCKS proxy for that. On your local machine run:
ssh -ND 3333 remote_server
Then temporarily configure your web browser to use localhost:3333 as its proxy.
In Firefox the setting is under Preferences -> Advanced -> Network -> Connection
Since this is only temporary, but something you might want to do from time to time, consider one of the numerous browser extensions that help with this. For firefox, I use the Toggle Proxy addon to toggle between no proxy and the manually configured one.
Hope this helps,
Kal
In case you're not familiar with SOCKS proxies, the aforementioned setup will allow your browser to connect to the printers web server as though you were running the browser on remote_server.
op 24-10-14 00:52, Kahlil Hodgson schreef:
In case you're not familiar with SOCKS proxies, the aforementioned setup will allow your browser to connect to the printers web server as though you were running the browser on remote_server. _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hello Keith, Jonathan & Kahlil,
thanks for helping me out.
On the printer, I found nothing to help me further. I tried both port forwarding and Socks proxy, and both work!
So I can now configure remote printers faster.
Greetings, J.