-
-
Save myabc/106930 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On OS X: | |
ssh myserver -D 10080 | |
svn checkout http://dsocks.googlecode.com/svn/trunk/ dsocks | |
cd dsocks | |
bsdmake && sudo bsdmake install | |
cp dsocks.sh ~/bin/dsocks | |
dsocks svn ls http://secretsite/svn/secretproject/trunk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# proxychains.conf file | |
# See http://sites.google.com/a/gapps.oxuni.org.uk/oliver/Home/Teleworking | |
dynamic_chain | |
tcp_read_time_out 15000 | |
tcp_connect_time_out 10000 | |
[ProxyList] | |
socks5 127.0.0.1 1080 | |
# NB: for some reason 'localhost' doesn't work in the above line | |
# Use 'socks4 127.0.0.1 1080' for older openSSH systems |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On Ubuntu: | |
ssh myserver -D 1080 | |
sudo aptitude install proxychains | |
mkdir ~/.proxychains | |
vim ~/.proxychains/proxychains.conf | |
proxychains svn ls http://secretsite/svn/secretproject/trunk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment