You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.1 KiB

  1. #
  2. # password authentication is not possible, public key authentication must be used.
  3. # set "option IdentityFile" to he file from which the identity (private key) for RSA or DSA authentication is read.
  4. # The default is ~/.ssh/identity for protocol version 1, and ~/.ssh/id_rsa and ~/.ssh/id_dsa for protocol version 2.
  5. # ssh will also try to load certificate information from the filename obtained by appending -cert.pub to identity filenames.
  6. #
  7. #config server disney
  8. # option user mourinho
  9. # option hostname server.disney.com
  10. # option port 22
  11. # option retrydelay 1
  12. # option CheckHostIP yes
  13. # option Compression no
  14. # option CompressionLevel 6
  15. # option IdentityFile ~/.ssh/id_rsa
  16. # option LogLevel INFO
  17. # option PKCS11Provider /lib/pteidpkcs11.so
  18. # option ServerAliveCountMax 3
  19. # option ServerAliveInterval 0
  20. # option StrictHostKeyChecking ask
  21. # option TCPKeepAlive yes
  22. # option VerifyHostKeyDNS yes
  23. # tunnelR(emote) - when the connection will be initiated to the R(emote) endpoint at
  24. # remoteaddress:remoteport and then forwarded to localaddress:localport
  25. #
  26. #config tunnelR http
  27. # option server disney
  28. # option remoteaddress *
  29. # option remoteport 9009
  30. # option localaddress 192.168.1.13
  31. # option localport 80
  32. # tunnelL(ocal) - when the connection will be initiated to the L(ocal) endpoint at
  33. # localaddress:localport and then forwarded to remoteaddress:remoteport
  34. #
  35. #config tunnelL test
  36. # option server disney
  37. # option localaddress *
  38. # option localport 1022
  39. # option remoteaddress secretserver.disney.com
  40. # option remoteport 22
  41. # tunnelD(ynamic) - when the connection will be initiated with the SOCKS4 or SOCKS5 protocol
  42. # to the local endpoint at localaddress:localport and then forwarded over the remote host
  43. #
  44. #config tunnelD proxy
  45. # option server disney
  46. # option localaddress *
  47. # option localport 4055
  48. # tunnelW - creates TUN/TAP devices on client and server to establish a VPN tunnel between them
  49. # vpntypes:
  50. # point-to-point = TUN
  51. # ethernet = TAP
  52. #
  53. #config tunnelW proxy
  54. # option server disney
  55. # option vpntype point-to-point|ethernet
  56. # option localdev any|0|1|2|...
  57. # option remotedev any|0|1|2|...