Changes between Version 15 and Version 16 of SSHKEYGEN


Ignore:
Timestamp:
05/26/21 03:00:50 (4 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SSHKEYGEN

    v15 v16  
    3939
    4040Ref [https://linuxize.com/post/how-to-setup-passwordless-ssh-login ref] [[br]]
     41
    4142Remote to local [[br]]
    42 At localhost user create tunnel to remote host with following
     43 At localhost user create tunnel to remote host with following
    4344{{{
    4445ssh -R 8022:localhost:22 remoteUser@remotehost.com
    4546}}}
    46 Then, at remote host, user can '''ssh -p 8022 localUser@127.0.0.1''' to localhost
     47 Then, at remote host, user can '''ssh -p 8022 localUser@127.0.0.1''' to localhost
    4748
    4849
    4950Local to Remote
    50 At localhost user create tunnel to remote host with following
     51 At localhost user create tunnel to remote host with following
    5152{{{
     53[krit@mini ~]$ ssh -L 2000:localhost:22 remoteUser@remotehost.com
     54}}}
     55 Then, at localhost, user can ''' ssh -p 2000 krit@127.0.0.1''' at localhost it will tunnel to remote host [[br]]
    5256
    53 }}}