You created the right tunnel:
ssh user@sub.example.com –p 80 –D 6666
Note: I picked port 80 for my environment because it isn’t usually blocked by firewalls. So you can easily bypass them.
Finally you have pointed the proxy of your browser to the right tunnel but it still doesn’t work.
127.0.0.1:6666
It took me a while to figure it out, but the solution was quite simple. You need to leave all proxy settings blank, except the socket setting. Now it works like a charm;-)

admin on April 11th 2014 in Internet, IT, Linux, Windows
This tool is great and is exactly what I was looking for. You can find it in Cydia. With the help of this tool you can easily switch on/off 3G/WLAN/SSH etc. It also shows your IP. It took me a while to find out where the program was hidden. To see the settings you need to tap with both fingers on top of the screen where you can see the time and your phone career.
admin on November 11th 2009 in Smartphones
I think you guys have red about the virus for jailbroken iPhones. It uses a ssh connection to your iPhone and most people forget to change the root and mobile user’s default password. So some crackers are using this security whole to infect your iPhone with viruses. Here a solution how to solve this problem:
- Go to Cydia and install OpenSSH
- Restart Iphone
- Install putty or another SSH Client on your Computer [Download Link]
- Find out your Iphones IP Address [Settings/Wi-Fi/Connected Network/DHCP/IP Address]
- Connect with putty to your Iphone
- Username: root
Password: alpine
- Type passwd to change your password for the root user (type once old password alpine and twice your new one)
- Now switch the user with su mobile
- Type passwd again to change the password for the mobile user (type once old alpine password and twice your new one)
- Done
admin on November 11th 2009 in Smartphones
If you setup a SSH Server and put all the traffic trough it on port 80 you could bypass most firewalls.
Setup an SSH Server on port 80 and bind it with following command in terminal:
ssh [username]@[domain/ip/host] -p [portnumber] -L [bindingiplocal]:localhost:[bindingipremote]
example:
ssh root@mist.com -p 80 -L 2222:RemotesComputerLocalIP:3389
3389 is used on the remote computer for RDP (Remote Desktop Connection). To connect to it trough the tunnel you need to connect Remote Desktop with following syntax: 127.0.0.1:2222
admin on October 9th 2009 in Internet, IT