{"id":11281,"date":"2018-05-25T11:26:15","date_gmt":"2018-05-25T09:26:15","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/"},"modified":"2023-07-17T16:58:45","modified_gmt":"2023-07-17T14:58:45","slug":"openssh-is-now-available-on-windows-10","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/","title":{"rendered":"OpenSSH is now available on Windows 10"},"content":{"rendered":"<p>A couple of days ago,\u00a0the <a href=\"https:\/\/support.microsoft.com\/en-us\/help\/4028685\/windows-10-get-the-update\" target=\"_blank\" rel=\"noopener noreferrer\">Windows 10 april 2018 update<\/a> was installed on my laptop. And what, you may say? Well, surprisingly this update provides some interesting \u201chidden\u201d features and one of them concerns <a href=\"https:\/\/www.openssh.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">OpenSSH<\/a> that is now available on-demand in Windows 10 (and likely available soon on Windows Server).<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-23668 size-full\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\" alt=\"blog 134 - 0 - openSSH - Win10\" width=\"400\" height=\"235\" \/><\/p>\n<p>This a obviously a good news because so far, I used either <a href=\"https:\/\/www.putty.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">putty<\/a> or directly a <a href=\"https:\/\/www.howtogeek.com\/249966\/how-to-install-and-use-the-linux-bash-shell-on-windows-10\/\" target=\"_blank\" rel=\"noopener noreferrer\">bash environment<\/a> from my Windows 10 laptop available since the Anniversary Update on 2016 august 2. I know that some of my colleagues use <a href=\"https:\/\/www.cygwin.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Cygwin<\/a> as well. An quick example of using\u00a0the new\u00a0bash environment from my Win10 Pro laptop:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">C:\\Users\\dab&gt;bash\nPerforming one-time upgrade of the Windows Subsystem for Linux file system for this distribution...\n\nmikedavem@DBI-LT-DAB:\/mnt\/c\/Users\/dab$ cat \/proc\/version\nLinux version 4.4.0-17134-Microsoft (Microsoft@Microsoft.com) (gcc version 5.4.0 (GCC) ) #48-Microsoft Fri Apr 27 18:06:00 PST 2018\n\nmikedavem@DBI-LT-DAB:\/mnt\/c\/Users\/dab$ ssh\nusage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n           [-D [bind_address:]port] [-E log_file] [-e escape_char]\n           [-F configfile] [-I pkcs11] [-i identity_file] [-L address]\n           [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n           [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n           [-w local_tun[:remote_tun]] [user@]hostname [command]<\/pre>\n<p>After applying the corresponding update, OpenSSH client is already installed and available to use.<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">[dab@DBI-LT-DAB:#]&gt; Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'\n\n\nName  : OpenSSH.Client~~~~0.0.1.0\nState : Installed\n\nName  : OpenSSH.Server~~~~0.0.1.0\nState : NotPresent<\/pre>\n<p>If you want to also install the server you just have to go through the Add-WindowsCapability cmdlet as follows:<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">[dab@DBI-LT-DAB:#]&gt; Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0\n\n\nPath          :\nOnline        : True\nRestartNeeded : False\n[dab@DBI-LT-DAB:#]&gt; Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'\n\n\nName  : OpenSSH.Client~~~~0.0.1.0\nState : Installed\n\nName  : OpenSSH.Server~~~~0.0.1.0\nState : Installed<\/pre>\n<p>From\u00a0now on, I may use directly a ssh command from both my PowerShell or my command line environment as follows:<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\\n[dab@DBI-LT-DAB:#]&gt; ssh\nusage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n           [-D [bind_address:]port] [-E log_file] [-e escape_char]\n           [-F configfile] [-I pkcs11] [-i identity_file]\n           [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]\n           [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]\n           [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]\n           destination [command]<\/pre>\n<p>We\u00a0will also be able to\u00a0access a Linux server\u00a0from either Password-based or Key-based authentication. Let\u2019s try with the first one (Password-based authentication) against my Linux docker private registry:<\/p>\n<pre class=\"brush: shell; gutter: true; first-line: 1\">[dab@DBI-LT-DAB:#]&gt; ssh dab@xxx.xxx.xxx.xxx\nThe authenticity of host 'xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx)' can't be established.\nECDSA key fingerprint is SHA256:7HwUjHowFNEJ3ILErsmBmgr8sqxossLV+fFt71YsBtA.\nAre you sure you want to continue connecting (yes\/no)? yes\nWarning: Permanently added 'xxx.xxx.xxx.xxx' (ECDSA) to the list of known hosts.\ndab@xxx.xxx.xxx.xxx's password:<\/pre>\n<p>Not a big\u00a0suprise here! It works as expected (assuming your SSH server is configured to accept authentication with password)! Let\u2019s try now the second method (Key-based authentication). In fact, I already\u00a0have an .ssh folder from a previous request to connect to our GitLab environment. For the demo, let\u2019s use the same public\/private key pairs.<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\Users\\dab\n[dab@DBI-LT-DAB:#]&gt; dir .ssh\n\n\n    Directory: C:\\Users\\dab\\.ssh\n\n\nMode                LastWriteTime         Length Name\n----                -------------         ------ ----\n-a----       09.05.2018     11:25           3243 id_rsa\n-a----       09.05.2018     11:25            757 id_rsa.pub\n-a----       25.05.2018     10:24            380 known_hosts<\/pre>\n<p>The next step will consist in\u00a0copying my public key (id_rsa.pub) to the remote Linux server folder .ssh as authorized_keys file.<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\Users\\dab\\.ssh\n[dab@DBI-LT-DAB:#]&gt; scp .\\id_rsa.pub dab@xxx.xxx.xxx.xxx:\/home\/dab\/.ssh\/authorized_keys\nid_rsa.pub<\/pre>\n<p>To avoid retyping the secret phrase\u00a0for each connection,\u00a0let\u2019s start the ssh-agent service on my Windows 10 machine.<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\Users\\dab\\.ssh\n[dab@DBI-LT-DAB:#]&gt; Start-Service -Name ssh-agent\nC:\\Users\\dab\\.ssh\n[dab@DBI-LT-DAB:#]&gt; Get-Service ssh-agent\n\nStatus   Name               DisplayName\n------   ----               -----------\nRunning  ssh-agent          OpenSSH Authentication Agent<\/pre>\n<p>Then I just have to add the private key to this agent \u2026<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\Users\\dab\\.ssh\n[dab@DBI-LT-DAB:#]&gt; ssh-add.exe id_rsa\nIdentity added: id_rsa (id_rsa)<\/pre>\n<p>\u2026 and finally to try\u00a0a connection\u00a0to my Linux Server as follows:<\/p>\n<pre class=\"brush: powershell; gutter: true; first-line: 1\">C:\\Users\\dab\\.ssh\n[dab@DBI-LT-DAB:#]&gt; ssh dab@xxx.xxx.xxx.xxx\nLast login: Fri May 25 09:43:16 2018 from gateway<\/pre>\n<p>It works like a charm! I\u2019m now connecting to my Linux server as dab user. I can get a picture of my docker containers, Note the bash prompt has changed here (server name) even it is pretty similar to my PowerShell prompt. Indeed, I customized my PowerShell profile to be similar to a bash shell in apparence and in some behaviors as well \ud83d\ude42<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">[dab@localhost ~]$ docker ps\nCONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES\na60f3412b864        registry:2          \"\/entrypoint.sh \/e...\"   9 months ago        Up 37 minutes       0.0.0.0:5000-&gt;5000\/tcp   registry<\/pre>\n<p>See you!<\/p>\n<p><span style=\"float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: Georgia,'Times New Roman','Bitstream Charter',Times,serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none;\">By David Barbarin<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A couple of days ago,\u00a0the Windows 10 april 2018 update was installed on my laptop. And what, you may say? Well, surprisingly this update provides some interesting \u201chidden\u201d features and one of them concerns OpenSSH that is now available on-demand in Windows 10 (and likely available soon on Windows Server). This a obviously a good [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":11282,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[73,1360,1361,487],"type_dbi":[],"class_list":["post-11281","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","tag-linux","tag-openssh","tag-ssh","tag-windows-10"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>OpenSSH is now available on Windows 10 - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OpenSSH is now available on Windows 10\" \/>\n<meta property=\"og:description\" content=\"A couple of days ago,\u00a0the Windows 10 april 2018 update was installed on my laptop. And what, you may say? Well, surprisingly this update provides some interesting \u201chidden\u201d features and one of them concerns OpenSSH that is now available on-demand in Windows 10 (and likely available soon on Windows Server). This a obviously a good [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-25T09:26:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-17T14:58:45+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"235\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"OpenSSH is now available on Windows 10\",\"datePublished\":\"2018-05-25T09:26:15+00:00\",\"dateModified\":\"2023-07-17T14:58:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\"},\"wordCount\":388,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\",\"keywords\":[\"Linux\",\"OpenSSH\",\"ssh\",\"Windows 10\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\",\"name\":\"OpenSSH is now available on Windows 10 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\",\"datePublished\":\"2018-05-25T09:26:15+00:00\",\"dateModified\":\"2023-07-17T14:58:45+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg\",\"width\":400,\"height\":235},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OpenSSH is now available on Windows 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"OpenSSH is now available on Windows 10 - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/","og_locale":"en_US","og_type":"article","og_title":"OpenSSH is now available on Windows 10","og_description":"A couple of days ago,\u00a0the Windows 10 april 2018 update was installed on my laptop. And what, you may say? Well, surprisingly this update provides some interesting \u201chidden\u201d features and one of them concerns OpenSSH that is now available on-demand in Windows 10 (and likely available soon on Windows Server). This a obviously a good [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/","og_site_name":"dbi Blog","article_published_time":"2018-05-25T09:26:15+00:00","article_modified_time":"2023-07-17T14:58:45+00:00","og_image":[{"width":400,"height":235,"url":"http:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg","type":"image\/jpeg"}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"OpenSSH is now available on Windows 10","datePublished":"2018-05-25T09:26:15+00:00","dateModified":"2023-07-17T14:58:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/"},"wordCount":388,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg","keywords":["Linux","OpenSSH","ssh","Windows 10"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/","url":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/","name":"OpenSSH is now available on Windows 10 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg","datePublished":"2018-05-25T09:26:15+00:00","dateModified":"2023-07-17T14:58:45+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-134-0-openSSH-Win10-e1527245702306.jpg","width":400,"height":235},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/openssh-is-now-available-on-windows-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OpenSSH is now available on Windows 10"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11281","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=11281"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11281\/revisions"}],"predecessor-version":[{"id":26784,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11281\/revisions\/26784"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/11282"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11281"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}