Tagged Questions
0
votes
1answer
50 views
How can I replicate putty's capabilities in gnome-terminal?
I connect to my workplace via citrix. Now to connect to servers, I currently use putty. This is because in putty, I can use the proxy settings options to add connect via HTTP proxy which is set to ...
0
votes
1answer
31 views
SSH via Corkscrew - Where is the config?
I've read this page: http://www.ubuntugeek.com/how-to-use-ssh-via-http-proxy-using-corkscrew-in-ubuntu.html
And it tells me to open up the SSH config file, which was in 2008, located in ...
2
votes
0answers
143 views
SSH Tunneling Suddenly Not Working
I have a home PC running Ubuntu 12.10.
In order to make sure that my data isn't being monitored in public, I had in the past used a subscription VPN service.
I decided to research alternatives and I ...
2
votes
2answers
619 views
How do I set up a linux proxy for my mac
As my title suggest, I would like to set up a proxy in linux. The client that I'm using is a mac osx lion. I think I understand the theory but I keep hitting roadblocks.
I started using set proxy ...
1
vote
1answer
111 views
Dynamic Proxy with password
I need to setup a proxy on my localbox to redirect some requests to another network. I am doing it in the following way
ssh -f -N -D 0.0.0.0:22022 some-external-host
In this case every time i try ...
1
vote
1answer
592 views
SSH connection reset by peer after 11.10 update. (Proxy Issue)
My work computer sits behind a proxy (I know thats where the problem lies.) I was running 11.4 and using ssh to establish a socks proxy to my server at home. I can still connect to that server from ...
5
votes
3answers
2k views
How can I autostart a SSH -D tunnel at login for a SOCKS proxy?
I know that if I want to start an SSH tunnel
ssh -d 9000 user@userserver
This is one solution for a dynamic tunnel to be opened on port 9000 for a user named "user" on the host "userserver"
...