{"id":1044,"date":"2020-02-13T15:19:07","date_gmt":"2020-02-13T21:19:07","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1044"},"modified":"2020-02-13T15:19:07","modified_gmt":"2020-02-13T21:19:07","slug":"how-to-enable-ssh-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/","title":{"rendered":"How to Enable SSH on Debian 9"},"content":{"rendered":"<div id=\"linux-2023501294\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this article, we will show you how to enable root access for SSH on a Debian 9 server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1060\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/setting-up-secure-shell-ssh-server-config-for-debian9.jpg\" alt=\"\" width=\"131\" height=\"102\" \/>Before we start with setting up our SSH service, we need to know what SSH actually is. SSH stands for Secure Shell and it is a UNIX-based command interface and protocol which usually is used to gain secure access to a remote machine. Luckily, SSH is turned on by default on a Debian 9 Server install. While SSH is turned on, we also know that a fresh installation of Debian 9\u00a0comes with root access disabled, which means you will not be able to log in directly to your server via SSH as the root user. However, you will be able to run commands with the same authority as the root user when using the &#8216;sudo&#8217; prefix on your commands. If you are constantly working on your server and you need root access, it&#8217;s more comfortable to log in directly as a root user instead of using the &#8216;sudo&#8217; command all the time.<\/p>\n<p>We can also configure SSH to allow specific users or groups, as well as blacklisting certain users or groups from having access which can make <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">server management<\/a> a lot easier.\u00a0Let&#8217;s get started.<\/p>\n<p><!--more--><\/p>\n<p>Several requirements should be met before we can continue.<\/p>\n<h2>Requirements:<\/h2>\n<ul>\n<li>A server running Debian 9 or later<\/li>\n<li>Access via SSH to your VPS<\/li>\n<li>A regular user that can use \u2018su\u2019 or \u2018sudo\u2019 to gain root privileges<\/li>\n<\/ul>\n<p>Log in to your Debian VPS via SSH as a user with &#8216;sudo&#8217; privileges:<\/p>\n<pre>ssh user_name@<span style=\"color: #ff0000;\">Server_IP_Address<\/span> -p <span style=\"color: #ff0000;\">Port_Number<\/span><\/pre>\n<h2>Enable SSH Root Login<\/h2>\n<p>We need to edit the main SSH configuration file &#8216;<code>sshd_config<\/code>&#8216; so we can enable logging directly as root. In this tutorial, we will use nano as our text editor, but you can freely use any editor you want.<\/p>\n<pre>sudo nano \/etc\/ssh\/sshd_config<\/pre>\n<p>Find the following line in the file.<\/p>\n<pre>#PermitRootLogin prohibit-password<\/pre>\n<p>There are two steps to enable the root login.<\/p>\n<p>In the first step, uncomment the line by removing the # character at the beginning of the line, like the following example:<\/p>\n<pre>PermitRootLogin prohibit-password<\/pre>\n<p>In the second step, simply change the \u2018prohibit-password\u2019 to \u2018yes\u2019 like in the example shown below:<\/p>\n<pre>PermitRootLogin yes<\/pre>\n<p>When you finish editing the SSH configuration file, save it and restart the SSH service for the changes to take effect. You can do that by running the following command:<\/p>\n<pre>sudo systemctl restart ssh.service<\/pre>\n<p>Now when you try to log in as a root user, you should receive an output like this:<\/p>\n<pre>login as: root\r\nroot@Server_IP_Address password:\r\nLinux hostname 2.6.32-042stab131.1 #1 SMP Wed Jun 20 16:32:07 MSK 2018 x86_64\r\n\r\nThe programs included with the Debian GNU\/Linux system are free software;\r\nthe exact distribution terms for each program are described in the\r\nindividual files in \/usr\/share\/doc\/*\/copyright.\r\n\r\nDebian GNU\/Linux comes with ABSOLUTELY NO WARRANTY, to the extent\r\npermitted by applicable law.\r\nroot@hostname:~#<\/pre>\n<h2>Controlling SSH User Logins<\/h2>\n<p>If your system has a large number of user accounts, then you can use this section and see how you can limit the remote access to your server.<\/p>\n<p>Open the SSH configuration file<code>\/etc\/ssh\/sshd_config<\/code><\/p>\n<pre>sudo nano \/etc\/ssh\/sshd_config<\/pre>\n<p>There are several options\u00a0used which will allow or deny access to your server via SSH.<\/p>\n<h3>Allowing Users<\/h3>\n<p>The first option is to allow a specific user to have remote access to your server via SSH.<\/p>\n<p>Go to the bottom of the SSH configuration file and add <code>AllowUsers<\/code>\u00a0on a new line. You can add multiple users by specifying their usernames using a space between them. For example, we will configure users &#8216;test1&#8217; and &#8216;test2&#8217; to have access via SSH using:<\/p>\n<pre>AllowUsers test1 test2<\/pre>\n<p>Once the changes have been made, you need to restart the SSH service.<\/p>\n<pre>sudo systemctl restart ssh<\/pre>\n<p>Note that all other users who are not in the AllowUsers list will not be able to access the system via SSH.<\/p>\n<h3>Allowing Groups<\/h3>\n<p>The second option is to allow the entire group to have remote access to your server via SSH.<\/p>\n<p>Go to the bottom of the SSH configuration file and add\/edit <code>AllowGroups<\/code> on a new line. You can add the allowed groups by using a space between them. For example, group &#8216;root&#8217; and &#8216;test_group&#8217; will have access to remote SSH if we configure SSH like this:<\/p>\n<pre>AllowGroups root test_group<\/pre>\n<p>Only those who are in the groups &#8216;root&#8217; and &#8216;test_group&#8217; will now be able to connect to the server remotely via SSH.<\/p>\n<p>Restart the SSH service to take effect the changes.<\/p>\n<pre>sudo systemctl restart ssh<\/pre>\n<h3>Denying Users<\/h3>\n<p>The third option is to disable or deny SSH access to certain users. This is quite similar to allowing a user or group, with only the keyword changing between them.<\/p>\n<p>Open your SSH configuration file and add\/edit <code>DenyUsers<\/code> on a new line. You can add the denied users by using a space between their usernames. In the next example, user &#8216;test1&#8217; and &#8216;test2&#8217; will <strong>not<\/strong> have access to remote SSH:<\/p>\n<pre>DenyUsers test1 test2<\/pre>\n<p>All other users not specified in the DenyUsers list will be able to access the server via SSH.<\/p>\n<p>Restart SSH service to take effect the changes.<\/p>\n<pre>sudo systemctl restart ssh<\/pre>\n<h3>Denying Groups<\/h3>\n<p>The fourth option is to disable or deny SSH access to an entire group. Just like denying a user, denying a group can be done with just a simple keyword in the configuration file.<\/p>\n<p>Open your SSH configuration file and add\/edit <code>DenyGroups<\/code> as a new line. You can add the denied groups by using a space between. For example, group &#8216;root&#8217; and &#8216;test_group&#8217; will not have access to remote SSH.<\/p>\n<pre>DenyGroups root test_group<\/pre>\n<p>Only those who are not in the groups &#8216;root&#8217; and &#8216;test_group&#8217; will be able to connect to the server remotely via SSH.<\/p>\n<p><strong>That&#8217;s it!<\/strong> In this tutorial, we&#8217;ve learned how to enable root login on SSH on your server, and we also showed you how to configure your server&#8217;s SSH permissions for individual users or for an entire group.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1061\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/02\/expert-admins-help-with-setup-secure-shell-ssh-permissions.jpg\" alt=\"\" width=\"131\" height=\"102\" \/>If you use one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed VPS Support<\/a> services, you can simply ask our system administrators to <strong>enable root login through SSH on your Debian server, or allow\/deny users and groups access<\/strong>. They are available 24\/7 and will take care of your request immediately, along with any other requests that you may have.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong>.<\/span> If you find this blog post useful, please share it with your friends via social media networks, or if you have any questions please leave a comment below and we will reply to it. Thanks!<\/p><div id=\"linux-334347899\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know what SSH actually is. SSH stands for Secure Shell and it is a UNIX-based command interface and protocol which usually is used to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1059,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1044","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Enable SSH on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable SSH on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-13T21:19:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Enable SSH on Debian 9\",\"datePublished\":\"2020-02-13T21:19:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\"},\"wordCount\":976,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg\",\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\",\"name\":\"How to Enable SSH on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg\",\"datePublished\":\"2020-02-13T21:19:07+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable SSH on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Enable SSH on Debian 9 | LinuxHostSupport","description":"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know","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:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable SSH on Debian 9 | LinuxHostSupport","og_description":"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-02-13T21:19:07+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Enable SSH on Debian 9","datePublished":"2020-02-13T21:19:07+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/"},"wordCount":976,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg","articleSection":["Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/","name":"How to Enable SSH on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg","datePublished":"2020-02-13T21:19:07+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this article, we will show you how to enable root access for SSH on a Debian 9 server. Before we start with setting up our SSH service, we need to know","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/01\/how-to-enable-ssh-on-debian9-.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable SSH on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1044","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1044"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1044\/revisions"}],"predecessor-version":[{"id":1064,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1044\/revisions\/1064"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1059"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1044"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1044"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1044"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}