LoginSignup
0
0

More than 5 years have passed since last update.

putty note

Last updated at Posted at 2019-01-18

proxy command

putty via GUI

  1. create a session to bastion.
  2. create new session to server over bastion.
  3. Connection/Proxy set Proxy type: Local Telnet command or :
    plink.exe -load <bastion's session name> -l <bastion's username> -nc %host:%port

plink

plink can use putty session, too.
plink.exe -load <bastion over server's session name> -l <username

svn+ssh via plink

Edit %UserProfile%/AppData/Roaming/Subversion/config

[tunnels]
ssh = plink -l <linux-username> -load

We can found <command> <hostname> svnserve -t in config file. It means <command> is follow of ssh = expresison. openssh has that expression like user@host, so we can set both user and host in . But plink can't set like user@host we must set -l user. So, we must set -l option before -load option .

use svn+ssh schema
svn ls svn+ssh://<server's session name>/<full-path to repo>/xxx

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0