diff options
author | Marco Bonetti <sid77@slackware.it> | 2010-05-12 23:32:00 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:32:00 +0200 |
commit | 1d64c3277d7442916773cf98e3a4bebc7fa2233b (patch) | |
tree | 0f8b6867d96cd4219001e2e6a0ca4734586342b8 /network/corkscrew/README | |
parent | 40a4b9bf9a4bf496b3d5d6f51540b18e735b18b8 (diff) | |
download | slackbuilds-1d64c3277d7442916773cf98e3a4bebc7fa2233b.tar.gz |
network/corkscrew: Added to 12.2 repository
Diffstat (limited to 'network/corkscrew/README')
-rw-r--r-- | network/corkscrew/README | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/network/corkscrew/README b/network/corkscrew/README new file mode 100644 index 0000000000..adc964e457 --- /dev/null +++ b/network/corkscrew/README @@ -0,0 +1,27 @@ +Corkscrew is a tool for tunneling SSH through HTTP proxies. +Setting up Corkscrew with SSH/OpenSSH is very simple. Adding +the following line to your ~/.ssh/config file will usually do +the trick (replace proxy.example.com and 8080 with correct values): + +ProxyCommand /usr/bin/corkscrew proxy.example.com 8080 %h %p + +Basic HTTP authentication is also supported, you will need to create a file +that contains your usename and password +in the form of: + +username:password + +I suggest you place this file in your ~/.ssh directory. +After creating this file you will need to ensure that the proper perms +are set so nobody else can get your username and password by reading +this file. So do this: + +chmod 600 ~/.ssh/myauth + +Now you will have to change the ProxyCommand line in your ~/.ssh/config +file. Here's an example: + +ProxyCommand /usr/bin/corkscrew proxy.work.com 80 %h %p ~/.ssh/myauth + +The proxy authentication feature is very new and has not been tested +extensively so your mileage may vary. |