Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 14.89 KB | None | 0 0
  1. user@user-133891124:~$ ssh-keygen -o -t rsa -b 4096 -C "3g0lex@gmail.com"
  2. Generating public/private rsa key pair.
  3. Enter file in which to save the key (/home/user/.ssh/id_rsa):
  4. Created directory '/home/user/.ssh'.
  5. Enter passphrase (empty for no passphrase):
  6. Enter same passphrase again:
  7. Your identification has been saved in /home/user/.ssh/id_rsa.
  8. Your public key has been saved in /home/user/.ssh/id_rsa.pub.
  9. The key fingerprint is:
  10. SHA256:RthyAePtNKbvuOPc+7MLRGBGL2VB9RSDWoJefzcCbj8 3g0lex@gmail.com
  11. The key's randomart image is:
  12. +---[RSA 4096]----+
  13. |     .B+*o..+.   |
  14. |     +.Xo.+o .   |
  15. |     .=.@* ..    |
  16. |      .@..+ o o  |
  17. |      . S. o o . |
  18. |       +    E    |
  19. |        o    .   |
  20. |     ..+ ..      |
  21. |     .=o+o++     |
  22. +----[SHA256]-----+
  23. user@user-133891124:~$ ls ./.ssh
  24. id_rsa  id_rsa.pub
  25. user@user-133891124:~$  xclip -sel clip < ~/.ssh/id_rsa.pub
  26.  
  27. Command 'xclip' not found, but can be installed with:
  28.  
  29. sudo apt install xclip
  30.  
  31. user@user-133891124:~$ sudo apt install xclip
  32. Reading package lists... Done
  33. Building dependency tree... 50%
  34. Building dependency tree      
  35. Reading state information... Done
  36. The following NEW packages will be installed:
  37.  xclip
  38. 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
  39. Need to get 17.5 kB of archives.
  40. After this operation, 52.2 kB of additional disk space will be used.
  41. Get:1 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 xclip amd64 0.12+svn84-4build1 [17.5 kB]
  42. Fetched 17.5 kB in 7s (2,690 B/s)      
  43. Selecting previously unselected package xclip.
  44. (Reading database ... 186052 files and directories currently installed.)
  45. Preparing to unpack .../xclip_0.12+svn84-4build1_amd64.deb ...
  46. Unpacking xclip (0.12+svn84-4build1) ...
  47. Setting up xclip (0.12+svn84-4build1) ...
  48. Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
  49. user@user-133891124:~$ sudo apt install xclip
  50. Reading package lists... Done
  51. Building dependency tree      
  52. Reading state information... Done
  53. xclip is already the newest version (0.12+svn84-4build1).
  54. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  55. user@user-133891124:~$ ^C
  56. user@user-133891124:~$ ls ./.ssh
  57. id_rsa  id_rsa.pub
  58. user@user-133891124:~$  xclip -sel clip < ~/.ssh/id_rsa.pub
  59. user@user-133891124:~$ ssh -T git@gitlab.com
  60. The authenticity of host 'gitlab.com (35.231.145.151)' can't be established.
  61. ECDSA key fingerprint is SHA256:HbW3g8zUjNSksFbqTiUWPWg2Bq1x8xdGUrliXFzSnUw.
  62. Are you sure you want to continue connecting (yes/no)? y
  63. Please type 'yes' or 'no': yes
  64. Warning: Permanently added 'gitlab.com,35.231.145.151' (ECDSA) to the list of known hosts.
  65. Connection closed by 35.231.145.151 port 22
  66. user@user-133891124:~$ ssh -vvvT git@gitlab.com
  67. OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n  7 Dec 2017
  68. debug1: Reading configuration data /etc/ssh/ssh_config
  69. debug1: /etc/ssh/ssh_config line 19: Applying options for *
  70. debug2: resolving "gitlab.com" port 22
  71. debug2: ssh_connect_direct: needpriv 0
  72. debug1: Connecting to gitlab.com [35.231.145.151] port 22.
  73. debug1: Connection established.
  74. debug1: identity file /home/user/.ssh/id_rsa type 0
  75. debug1: key_load_public: No such file or directory
  76. debug1: identity file /home/user/.ssh/id_rsa-cert type -1
  77. debug1: key_load_public: No such file or directory
  78. debug1: identity file /home/user/.ssh/id_dsa type -1
  79. debug1: key_load_public: No such file or directory
  80. debug1: identity file /home/user/.ssh/id_dsa-cert type -1
  81. debug1: key_load_public: No such file or directory
  82. debug1: identity file /home/user/.ssh/id_ecdsa type -1
  83. debug1: key_load_public: No such file or directory
  84. debug1: identity file /home/user/.ssh/id_ecdsa-cert type -1
  85. debug1: key_load_public: No such file or directory
  86. debug1: identity file /home/user/.ssh/id_ed25519 type -1
  87. debug1: key_load_public: No such file or directory
  88. debug1: identity file /home/user/.ssh/id_ed25519-cert type -1
  89. debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.3
  90. debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.8
  91. debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.8 pat OpenSSH* compat 0x04000000
  92. debug2: fd 3 setting O_NONBLOCK
  93. debug1: Authenticating to gitlab.com:22 as 'git'
  94. debug3: hostkeys_foreach: reading file "/home/user/.ssh/known_hosts"
  95. debug3: record_hostkey: found key type ECDSA in file /home/user/.ssh/known_hosts:1
  96. debug3: load_hostkeys: loaded 1 keys from gitlab.com
  97. debug3: order_hostkeyalgs: prefer hostkeyalgs: ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521
  98. debug3: send packet: type 20
  99. debug1: SSH2_MSG_KEXINIT sent
  100. debug3: receive packet: type 20
  101. debug1: SSH2_MSG_KEXINIT received
  102. debug2: local client KEXINIT proposal
  103. debug2: KEX algorithms: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha256,diffie-hellman-group14-sha1,ext-info-c
  104. debug2: host key algorithms: ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa
  105. debug2: ciphers ctos: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
  106. debug2: ciphers stoc: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
  107. debug2: MACs ctos: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
  108. debug2: MACs stoc: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
  109. debug2: compression ctos: none,zlib@openssh.com,zlib
  110. debug2: compression stoc: none,zlib@openssh.com,zlib
  111. debug2: languages ctos:
  112. debug2: languages stoc:
  113. debug2: first_kex_follows 0
  114. debug2: reserved 0
  115. debug2: peer server KEXINIT proposal
  116. debug2: KEX algorithms: curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
  117. debug2: host key algorithms: ssh-rsa,rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
  118. debug2: ciphers ctos: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
  119. debug2: ciphers stoc: chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
  120. debug2: MACs ctos: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
  121. debug2: MACs stoc: umac-64-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512,hmac-sha1
  122. debug2: compression ctos: none,zlib@openssh.com
  123. debug2: compression stoc: none,zlib@openssh.com
  124. debug2: languages ctos:
  125. debug2: languages stoc:
  126. debug2: first_kex_follows 0
  127. debug2: reserved 0
  128. debug1: kex: algorithm: curve25519-sha256@libssh.org
  129. debug1: kex: host key algorithm: ecdsa-sha2-nistp256
  130. debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  131. debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
  132. debug3: send packet: type 30
  133. debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
  134. debug3: receive packet: type 31
  135. debug1: Server host key: ecdsa-sha2-nistp256 SHA256:HbW3g8zUjNSksFbqTiUWPWg2Bq1x8xdGUrliXFzSnUw
  136. debug3: hostkeys_foreach: reading file "/home/user/.ssh/known_hosts"
  137. debug3: record_hostkey: found key type ECDSA in file /home/user/.ssh/known_hosts:1
  138. debug3: load_hostkeys: loaded 1 keys from gitlab.com
  139. debug3: hostkeys_foreach: reading file "/home/user/.ssh/known_hosts"
  140. debug3: record_hostkey: found key type ECDSA in file /home/user/.ssh/known_hosts:2
  141. debug3: load_hostkeys: loaded 1 keys from 35.231.145.151
  142. debug1: Host 'gitlab.com' is known and matches the ECDSA host key.
  143. debug1: Found key in /home/user/.ssh/known_hosts:1
  144. debug3: send packet: type 21
  145. debug2: set_newkeys: mode 1
  146. debug1: rekey after 134217728 blocks
  147. debug1: SSH2_MSG_NEWKEYS sent
  148. debug1: expecting SSH2_MSG_NEWKEYS
  149. debug3: receive packet: type 21
  150. debug1: SSH2_MSG_NEWKEYS received
  151. debug2: set_newkeys: mode 0
  152. debug1: rekey after 134217728 blocks
  153. debug2: key: /home/user/.ssh/id_rsa (0x55e1f1a37530), agent
  154. debug2: key: /home/user/.ssh/id_dsa ((nil))
  155. debug2: key: /home/user/.ssh/id_ecdsa ((nil))
  156. debug2: key: /home/user/.ssh/id_ed25519 ((nil))
  157. debug3: send packet: type 5
  158. debug3: receive packet: type 7
  159. debug1: SSH2_MSG_EXT_INFO received
  160. debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
  161. debug3: receive packet: type 6
  162. debug2: service_accept: ssh-userauth
  163. debug1: SSH2_MSG_SERVICE_ACCEPT received
  164. debug3: send packet: type 50
  165. debug3: receive packet: type 51
  166. debug1: Authentications that can continue: publickey
  167. debug3: start over, passed a different list publickey
  168. debug3: preferred gssapi-keyex,gssapi-with-mic,publickey,keyboard-interactive,password
  169. debug3: authmethod_lookup publickey
  170. debug3: remaining preferred: keyboard-interactive,password
  171. debug3: authmethod_is_enabled publickey
  172. debug1: Next authentication method: publickey
  173. debug1: Offering public key: RSA SHA256:RthyAePtNKbvuOPc+7MLRGBGL2VB9RSDWoJefzcCbj8 /home/user/.ssh/id_rsa
  174. debug3: send_pubkey_test
  175. debug3: send packet: type 50
  176. debug2: we sent a publickey packet, wait for reply
  177. debug3: receive packet: type 60
  178. debug1: Server accepts key: pkalg rsa-sha2-512 blen 535
  179. debug2: input_userauth_pk_ok: fp SHA256:RthyAePtNKbvuOPc+7MLRGBGL2VB9RSDWoJefzcCbj8
  180. debug3: sign_and_send_pubkey: RSA SHA256:RthyAePtNKbvuOPc+7MLRGBGL2VB9RSDWoJefzcCbj8
  181. debug3: send packet: type 50
  182. debug3: receive packet: type 52
  183. debug1: Authentication succeeded (publickey).
  184. Authenticated to gitlab.com ([35.231.145.151]:22).
  185. debug1: channel 0: new [client-session]
  186. debug3: ssh_session2_open: channel_new: 0
  187. debug2: channel 0: send open
  188. debug3: send packet: type 90
  189. debug1: Requesting no-more-sessions@openssh.com
  190. debug3: send packet: type 80
  191. debug1: Entering interactive session.
  192. debug1: pledge: network
  193. debug3: receive packet: type 80
  194. debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0
  195. debug3: receive packet: type 4
  196. debug1: Remote: Forced command.
  197. debug3: receive packet: type 4
  198. debug1: Remote: Port forwarding disabled.
  199. debug3: receive packet: type 4
  200. debug1: Remote: X11 forwarding disabled.
  201. debug3: receive packet: type 4
  202. debug1: Remote: Agent forwarding disabled.
  203. debug3: receive packet: type 4
  204. debug1: Remote: PTY allocation disabled.
  205. debug3: receive packet: type 4
  206. debug1: Remote: Forced command.
  207. debug3: receive packet: type 4
  208. debug1: Remote: Port forwarding disabled.
  209. debug3: receive packet: type 4
  210. debug1: Remote: X11 forwarding disabled.
  211. debug3: receive packet: type 4
  212. debug1: Remote: Agent forwarding disabled.
  213. debug3: receive packet: type 4
  214. debug1: Remote: PTY allocation disabled.
  215. debug3: receive packet: type 91
  216. debug2: channel_input_open_confirmation: channel 0: callback start
  217. debug2: fd 3 setting TCP_NODELAY
  218. debug3: ssh_packet_set_tos: set IP_TOS 0x08
  219. debug2: client_session2_setup: id 0
  220. debug1: Sending environment.
  221. debug3: Ignored env LS_COLORS
  222. debug3: Ignored env LESSCLOSE
  223. debug3: Ignored env XDG_MENU_PREFIX
  224. debug1: Sending env LANG = en_US.UTF-8
  225. debug2: channel 0: request env confirm 0
  226. debug3: send packet: type 98
  227. debug3: Ignored env GDM_LANG
  228. debug3: Ignored env DISPLAY
  229. debug3: Ignored env GTK_OVERLAY_SCROLLING
  230. debug3: Ignored env COLORTERM
  231. debug3: Ignored env XDG_VTNR
  232. debug3: Ignored env SSH_AUTH_SOCK
  233. debug3: Ignored env GLADE_CATALOG_PATH
  234. debug3: Ignored env XDG_SESSION_ID
  235. debug3: Ignored env XDG_GREETER_DATA_DIR
  236. debug3: Ignored env USER
  237. debug3: Ignored env GLADE_MODULE_PATH
  238. debug3: Ignored env DESKTOP_SESSION
  239. debug3: Ignored env QT_QPA_PLATFORMTHEME
  240. debug3: Ignored env PWD
  241. debug3: Ignored env HOME
  242. debug3: Ignored env SSH_AGENT_PID
  243. debug3: Ignored env QT_ACCESSIBILITY
  244. debug3: Ignored env XDG_SESSION_TYPE
  245. debug3: Ignored env XDG_DATA_DIRS
  246. debug3: Ignored env XDG_SESSION_DESKTOP
  247. debug3: Ignored env GLADE_PIXMAP_PATH
  248. debug3: Ignored env CLUTTER_BACKEND
  249. debug3: Ignored env TERM
  250. debug3: Ignored env SHELL
  251. debug3: Ignored env VTE_VERSION
  252. debug3: Ignored env XDG_SEAT_PATH
  253. debug3: Ignored env XDG_CURRENT_DESKTOP
  254. debug3: Ignored env GPG_AGENT_INFO
  255. debug3: Ignored env XDG_SEAT
  256. debug3: Ignored env SHLVL
  257. debug3: Ignored env LANGUAGE
  258. debug3: Ignored env WINDOWID
  259. debug3: Ignored env GDMSESSION
  260. debug3: Ignored env LOGNAME
  261. debug3: Ignored env DBUS_SESSION_BUS_ADDRESS
  262. debug3: Ignored env XDG_RUNTIME_DIR
  263. debug3: Ignored env XAUTHORITY
  264. debug3: Ignored env XDG_SESSION_PATH
  265. debug3: Ignored env XDG_CONFIG_DIRS
  266. debug3: Ignored env PATH
  267. debug3: Ignored env SESSION_MANAGER
  268. debug3: Ignored env LESSOPEN
  269. debug3: Ignored env _
  270. debug2: channel 0: request shell confirm 1
  271. debug3: send packet: type 98
  272. debug2: channel_input_open_confirmation: channel 0: callback done
  273. debug2: channel 0: open confirm rwindow 0 rmax 32768
  274. debug2: channel 0: rcvd adjust 2097152
  275. debug3: receive packet: type 99
  276. debug2: channel_input_status_confirm: type 99 id 0
  277. debug2: shell request accepted on channel 0
  278. Welcome to GitLab, @3g0lex!
  279. debug3: receive packet: type 98
  280. debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
  281. debug3: receive packet: type 98
  282. debug1: client_input_channel_req: channel 0 rtype eow@openssh.com reply 0
  283. debug2: channel 0: rcvd eow
  284. debug2: channel 0: close_read
  285. debug2: channel 0: input open -> closed
  286. debug3: receive packet: type 96
  287. debug2: channel 0: rcvd eof
  288. debug2: channel 0: output open -> drain
  289. debug2: channel 0: obuf empty
  290. debug2: channel 0: close_write
  291. debug2: channel 0: output drain -> closed
  292. debug3: receive packet: type 97
  293. debug2: channel 0: rcvd close
  294. debug3: channel 0: will not send data after close
  295. debug2: channel 0: almost dead
  296. debug2: channel 0: gc: notify user
  297. debug2: channel 0: gc: user detached
  298. debug2: channel 0: send close
  299. debug3: send packet: type 97
  300. debug2: channel 0: is dead
  301. debug2: channel 0: garbage collecting
  302. debug1: channel 0: free: client-session, nchannels 1
  303. debug3: channel 0: status: The following connections are open:
  304.   #0 client-session (t4 r0 i3/0 o3/0 fd -1/-1 cc -1)
  305.  
  306. debug3: send packet: type 1
  307. Transferred: sent 3464, received 3560 bytes, in 0.4 seconds
  308. Bytes per second: sent 8043.6, received 8266.5
  309. debug1: Exit status 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement