{"id":2403,"date":"2025-10-30T12:30:00","date_gmt":"2025-10-30T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2403"},"modified":"2025-09-03T07:50:35","modified_gmt":"2025-09-03T12:50:35","slug":"how-to-enable-ssh-on-debian-13","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/","title":{"rendered":"How to enable SSH on Debian 13"},"content":{"rendered":"\n<div id=\"linux-1882067962\" 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>This blog post will show you how to enable SSH on Debian 13. SSH or Secure Shell Access is a network protocol that enables secure remote access over an insecure network. SSH sets up a remote, encrypted connection between machines and also enables SSH tunneling. In the following paragraphs, we will explain in more detail how SSH works, how it can be installed, and how it can be configured properly.<\/p>\n\n\n\n<p>Installing and enabling SSH access is a straightforward process that may take up to 10 minutes. Let&#8217;s get things done!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running Debian 13 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the system<\/h2>\n\n\n\n<p>We assume that you have a fresh installation of Debian 13 OS, and before we start to install anything on the server, we will update the system packages to their latest version available. To do that, execute the following command on your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Install OpenSSH server<\/h2>\n\n\n\n<p>OpenSSH server is a crucial component of the OpenSSH suite, which provides a secure and encrypted connection between two machines remotely. OpenSSH is a free and open-source version of the SSH protocol, and is often referred to as sshd. To install the OpenSSH server, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install openssh-server -y<\/pre>\n\n\n\n<p>Next, start and enable the SSH server for automatic start on system boot by executing the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start ssh &amp;&amp; sudo systemctl enable ssh<\/pre>\n\n\n\n<p>To check the status of the server, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status ssh<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status ssh<br>\u25cf ssh.service - OpenBSD Secure Shell server<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/ssh.service; enabled; preset: enabled)<br>     Active: active (running) since Sun 2025-08-10 04:16:30 CDT; 1min 21s ago<br> Invocation: e44d314de61f422ba35b5e0179af90a3<br>       Docs: man:sshd(8)<br>             man:sshd_config(5)<br>   Main PID: 27460 (sshd)<br>      Tasks: 1 (limit: 4640)<br>     Memory: 1.3M (peak: 2.1M)<br>        CPU: 83ms<br>     CGroup: \/system.slice\/ssh.service<br>             \u2514\u250027460 \"sshd: \/usr\/sbin\/sshd -D [listener] 0 of 10-100 startups\"<br><br>Aug 10 04:16:30 host.test.vps systemd[1]: Starting ssh.service - OpenBSD Secure Shell server...<br>Aug 10 04:16:30 host.test.vps sshd[27460]: Server listening on 0.0.0.0 port 22.<br>Aug 10 04:16:30 host.test.vps sshd[27460]: Server listening on :: port 22.<br>Aug 10 04:16:30 host.test.vps systemd[1]: Started ssh.service - OpenBSD Secure Shell server.<\/pre>\n\n\n\n<p>Besides the status of the service, we can also check if the OpenSSH server is running by checking its port number, which by default is port 22. Execute the following command to check if SSH is working on port 22:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">netstat -tunlp | grep ssh<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# netstat -tunlp | grep ssh<br>tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      27460\/sshd: \/usr\/sb<br>tcp6       0      0 :::22                   :::*                    LISTEN      27460\/sshd: \/usr\/sb<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">How to secure the OpenSSH server?<\/h2>\n\n\n\n<p>Securing the OpenSSH server is the most important action after its installation. Since everyone knows that the default port is port number 22, it can be easily attacked, and if the root password is not strong enough, the server can be easily hacked. To prevent this, let&#8217;s first change the default port 22. To do that, open the OpenSSH configuration file \/etc\/ssh\/sshd_config, where all configuration parameters are stored.<\/p>\n\n\n\n<p>Find this part <strong>#Port 22<\/strong>, uncomment i,t and change the number, for example, to 6022. Save the file, close it, and restart the SSH service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl restart ssh<\/pre>\n\n\n\n<p>Next, we need to open port 6022 in the firewall using iptables. To do that, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">iptables -A INPUT -s yourserverIP\/24 -m state --state NEW -p tcp --dport 6022 -j ACCEPT<\/pre>\n\n\n\n<p>Once this is done, we need to permit root login and enable password authentication. To do that, open the file <strong>\/etc\/ssh\/sshd_config<\/strong> again and adjust these lines of code to look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">PermitRootLogin yes<br><br>PasswordAuthentication yes<\/pre>\n\n\n\n<p>Now let&#8217;s check again the SSH port number with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">netstat -tunlp | grep ssh<\/pre>\n\n\n\n<p>As you can see, the port number is changed, and the output looks similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# netstat -tunlp | grep ssh<br>tcp        0      0 0.0.0.0:<strong>6022<\/strong>            0.0.0.0:*               LISTEN      27703\/sshd: \/usr\/sb<br>tcp6       0      0 :::<strong>6022<\/strong>                 :::*                    LISTEN      27703\/sshd: \/usr\/sb<\/pre>\n\n\n\n<p>To connect to the server via SSH from the command line, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@yourserverIP -p 6022<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>That\u2019s it. You learned how to enable SSH on Debian 13, including the installation and configuration previously.<\/p>\n\n\n\n<p>If you have difficulties with this, our Linux admins will help you. Sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">per-incident server support plans<\/a> and submit a support ticket.<\/p>\n\n\n\n<p>PS. If you liked this post about enabling SSH on Debian 13, please share it with your friends on social networks or leave a comment below. Thank you.<\/p><div id=\"linux-1598895141\" 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>This blog post will show you how to enable SSH on Debian 13. SSH or Secure Shell Access is a network protocol that enables secure remote access over an insecure network. SSH sets up a remote, encrypted connection between machines and also enables SSH tunneling. In the following paragraphs, we will explain in more detail [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2414,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[318,329,56,141,65],"class_list":["post-2403","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-enable-ssh","tag-how-to","tag-security","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to enable SSH on Debian 13 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.\" \/>\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-13\/\" \/>\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 13 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/\" \/>\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=\"2025-10-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\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=\"4 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-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to enable SSH on Debian 13\",\"datePublished\":\"2025-10-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/\"},\"wordCount\":561,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-debian-13.webp\",\"keywords\":[\"debian 13\",\"enable ssh\",\"how to\",\"security\",\"ssh\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/\",\"name\":\"How to enable SSH on Debian 13 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-debian-13.webp\",\"datePublished\":\"2025-10-30T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-debian-13.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-enable-ssh-on-debian-13.webp\",\"width\":742,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-enable-ssh-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to enable SSH on Debian 13\"}]},{\"@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 13 | LinuxHostSupport","description":"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.","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-13\/","og_locale":"en_US","og_type":"article","og_title":"How to enable SSH on Debian 13 | LinuxHostSupport","og_description":"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-10-30T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to enable SSH on Debian 13","datePublished":"2025-10-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/"},"wordCount":561,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp","keywords":["debian 13","enable ssh","how to","security","ssh"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/","name":"How to enable SSH on Debian 13 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp","datePublished":"2025-10-30T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to enable SSH on Debian 13 using our latest easy to follow guide, or ask our Linux admins to set it all up for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-enable-ssh-on-debian-13.webp","width":742,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-enable-ssh-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to enable SSH on Debian 13"}]},{"@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\/2403","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=2403"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2403\/revisions"}],"predecessor-version":[{"id":2411,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2403\/revisions\/2411"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2414"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2403"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2403"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}