{"id":19583,"date":"2017-11-30T15:40:43","date_gmt":"2017-11-30T15:40:43","guid":{"rendered":"https:\/\/blog.resellerclub.com\/?p=19583"},"modified":"2025-10-24T12:09:13","modified_gmt":"2025-10-24T12:09:13","slug":"how-to-use-openssh-on-linux","status":"publish","type":"post","link":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/","title":{"rendered":"How to use OpenSSH on Linux"},"content":{"rendered":"<p><strong>What is OpenSSH?<\/strong><br \/>\nOpenSSH is a suite based on SSH (Secure Shell) protocol providing a secure network for services like remote login or remote file transfer. <a href=\"https:\/\/www.openssh.com\/\" target=\"_blank\" rel=\"nofollow noopener\">OpenSSH <\/a>is also known as OpenBSD Secure Shell and was initially developed as a part of OpenBSD operating system.<\/p>\n<p><strong><br \/>\nWhat are the features of OpenSSH?<\/strong><\/p>\n<ol>\n<li>OpenSSH is freely available for everyone, their code encourages reusing and auditing of the code.<\/li>\n<li>OpenSSH has a secure tunnel to forward remote TCP ports through strong encryption (3DES, Blowfish, AES, Arcfour).<\/li>\n<li>An ad hoc SOCKS (Secure Sockets) proxy server can be created using OpenSSH.<\/li>\n<li>OpenSSH provides secure communication.<\/li>\n<\/ol>\n<p><strong>Difference between SSH and OpenSSH<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td style=\"text-align: center;\"><b>SSH <\/b><\/td>\n<td style=\"text-align: center;\"><b>OpenSSH <\/b><\/td>\n<\/tr>\n<tr>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SSH is a closed source cryptographic network protocol.<\/span><\/li>\n<\/ul>\n<\/td>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">OpenSSH is a free open source protocol based on SSH.<\/span><\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SSH was first released in the year 1995 as SSH-1 protocol, trying to replace TELNET, rlogin, ftp and rsh protocols.<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<\/td>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">OpenSSH was released in the year 1999, for developers wanting a free software version, the original 1.2.12 release of SSH was released under open source license. <\/span><\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Some SSH commands are:<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">Ssh-keygen, ssh-copy-id, ssh-add, ssh-agent, scp, sftp and sshd<\/span><\/li>\n<\/ul>\n<\/td>\n<td>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Some commands are:<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><span style=\"font-weight: 400;\">ssh, ssh-keygen, ssh-agent, ssh-keyscan, &nbsp;scp, sftp and sshd<\/span><\/li>\n<\/ul>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Requirements <\/strong><\/p>\n<ol>\n<li>Root access to your server<\/li>\n<li>Terminal (Linux)<\/li>\n<\/ol>\n<p><strong>How to enable OpenSSH on Servers:<\/strong><\/p>\n<p>In order to get SSH on the server, we need to run the OpenSSH package. For example, Apache is a package and the daemon is httpd. Similarly, OpenSSH is installed on the server and you use this via SSH. At ResellerClub, OpenSSH is already installed and ready to use on all our Linux Hosting servers and Managed Servers and clients have a complete root access using it. And also <a href=\"https:\/\/india.resellerclub.com\/reseller-hosting\" target=\"_blank\" rel=\"noopener\">Reseller Hosting<\/a> as well as <a href=\"https:\/\/india.resellerclub.com\/shared-hosting\" target=\"_blank\" rel=\"noopener\">Shared Hosting<\/a>.<\/p>\n<p>Although OpenSSH comes pre-installed on various versions of Linux for both the client side as well as server side and is incorporated into many commercial products. However, if you still wish to check if it\u2019s installed then we can run the following commands.<\/p>\n<p><strong>Using OpenSSH on Linux: <\/strong><\/p>\n<p>To install OpenSSH on Linux, we use Ubuntu as an Operating System on standalone PC.<br \/>\n<strong>For Ubuntu\/Debian: <\/strong><\/p>\n<p><strong>Step 1: To install OpenSSH on client side and server side <\/strong><\/p>\n<p>Type the following command in the terminal and wait till the packages are downloaded and installed.<\/p>\n<blockquote>\n<p><strong> sudo apt-get install -y openssh-server openssh-client<\/strong><\/p>\n<\/blockquote>\n<p><strong>Step 2: Check if the service is running <\/strong><\/p>\n<p>Once OpenSSH has been installed you will need to check if the service is running properly or not, run the following command.<\/p>\n<blockquote>\n<p><strong>service sshd status <\/strong><\/p>\n<\/blockquote>\n<p><strong>Step 3: Configuration <\/strong><\/p>\n<p>Before editing the configuration file, it is important that you make a copy of the original file in case of any mistake you can reuse this and have the proper settings in place.<\/p>\n<blockquote>\n<p><strong>sudo cp \/etc\/ssh\/sshd_config \/etc\/ssh\/sshd_config.original-copy <\/strong><\/p>\n<\/blockquote>\n<p>I added the original-copy suffix, so every time I see this file I know it is an original copy of the sshd_config file.<\/p>\n<p><strong>Step 4: Connecting to OpenSSH <\/strong><\/p>\n<ol>\n<li>By default the service runs on TCP port 22, you can change the port as such: Port 13<\/li>\n<li>To have sshd allow public key-based login, modify the following line:<br \/>\nPubkeyAuthentication yesIf the line is already present, then make sure it has not been commented.<\/li>\n<li>Restart your OpenSSH server so that the changes in the config file can take place.<br \/>\n<blockquote>\n<p><strong>sudo \/etc\/init.d\/ssh restart<\/strong><\/p>\n<\/blockquote>\n<\/li>\n<li>If you want to have your OpenSSH server display a nice login banner, then you can do so by modifying the contents of the issue.net file by<br \/>\n<blockquote>\n<p><strong>Banner \/etc\/issue.net <\/strong><\/p>\n<\/blockquote>\n<\/li>\n<\/ol>\n<p><strong>Conclusion:<\/strong><br \/>\nBy following the above steps you have successfully&nbsp;learned how to use OpenSSH on Linux. You can read this post too, to know more about using<a href=\"\/blog\/a-few-tips-on-how-to-use-ssh-like-a-pro\/\" target=\"_blank\" rel=\"noopener\"> SSH like a Pro.<\/a><\/p>\n<p><br \/>\n<iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/R6qMbIkXv6s\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen><\/iframe><br \/>\n<\/p>\n<div class=\"fb-background-color\">\n\t\t\t  <div \n\t\t\t  \tclass = \"fb-comments\" \n\t\t\t  \tdata-href = \"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/\"\n\t\t\t  \tdata-numposts = \"10\"\n\t\t\t  \tdata-lazy = \"true\"\n\t\t\t\tdata-colorscheme = \"light\"\n\t\t\t\tdata-order-by = \"social\"\n\t\t\t\tdata-mobile=true>\n\t\t\t  <\/div><\/div>\n\t\t  <style>\n\t\t    .fb-background-color {\n\t\t\t\tbackground:  !important;\n\t\t\t}\n\t\t\t.fb_iframe_widget_fluid_desktop iframe {\n\t\t\t    width: 100% !important;\n\t\t\t}\n\t\t  <\/style>\n\t\t  ","protected":false},"excerpt":{"rendered":"<p>What is OpenSSH? OpenSSH is a suite based on SSH (Secure Shell) protocol providing a secure network for services like remote login or remote file transfer. OpenSSH is also known as OpenBSD Secure Shell and was initially developed as a part of OpenBSD operating system. What are the features of OpenSSH? OpenSSH is freely available<\/p>\n","protected":false},"author":75,"featured_media":29841,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_has_post_settings":[],"_rc_manual_related_posts":[],"footnotes":""},"categories":[1527,6681,813,1533,995],"tags":[281,5135,5131,4877,5127,765],"hashtags":[],"class_list":["post-19583","post","type-post","status-publish","format-standard","has-post-thumbnail","category-featured-post","category-popular","category-website-security-2","category-tech","category-hosting","tag-linux","tag-openssh","tag-package","tag-ssh","tag-sshd","tag-tech"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to use OpenSSH on Linux<\/title>\n<meta name=\"description\" content=\"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.\" \/>\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.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use OpenSSH on Linux\" \/>\n<meta property=\"og:description\" content=\"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"ResellerClub Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100005889763273\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-30T15:40:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-24T12:09:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"H. Fatima\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"H. Fatima\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/\"},\"author\":{\"name\":\"H. Fatima\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/#\\\/schema\\\/person\\\/04f625d706ed889a739c8fdfe159375c\"},\"headline\":\"How to use OpenSSH on Linux\",\"datePublished\":\"2017-11-30T15:40:43+00:00\",\"dateModified\":\"2025-10-24T12:09:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/\"},\"wordCount\":621,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-openssh-on-linux-1.jpg\",\"keywords\":[\"linux\",\"openssh\",\"package\",\"SSH\",\"sshd\",\"tech\"],\"articleSection\":[\"Featured Post\",\"Popular\",\"Security Beat\",\"Tech Blogs\",\"Web Hosting Blogs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/\",\"url\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/\",\"name\":\"How to use OpenSSH on Linux\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-openssh-on-linux-1.jpg\",\"datePublished\":\"2017-11-30T15:40:43+00:00\",\"dateModified\":\"2025-10-24T12:09:13+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/#\\\/schema\\\/person\\\/04f625d706ed889a739c8fdfe159375c\"},\"description\":\"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-openssh-on-linux-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-use-openssh-on-linux-1.jpg\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/how-to-use-openssh-on-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to use OpenSSH on Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/\",\"name\":\"ResellerClub Blog\",\"description\":\"Web Hosting &amp; Domains\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/#\\\/schema\\\/person\\\/04f625d706ed889a739c8fdfe159375c\",\"name\":\"H. Fatima\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/IMG-20190220-WA0043-150x150.jpg\",\"url\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/IMG-20190220-WA0043-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/IMG-20190220-WA0043-150x150.jpg\",\"caption\":\"H. Fatima\"},\"description\":\"H. Fatima used to be an Engineer by profession and Writer by passion until she started pursuing full-time writing. She is presently a Content Marketeer at Newfold Digital (APAC). She mostly writes what she deeply perceives and analyses, it is her way of unwinding. Her interests include writing, reading (an avid reader), watching foreign-language movies and public speaking.\",\"url\":\"https:\\\/\\\/www.resellerclub.com\\\/blog\\\/author\\\/h-fatima\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use OpenSSH on Linux","description":"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.","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.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to use OpenSSH on Linux","og_description":"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.","og_url":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/","og_site_name":"ResellerClub Blog","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100005889763273","article_published_time":"2017-11-30T15:40:43+00:00","article_modified_time":"2025-10-24T12:09:13+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg","type":"image\/jpeg"}],"author":"H. Fatima","twitter_card":"summary_large_image","twitter_misc":{"Written by":"H. Fatima","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#article","isPartOf":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/"},"author":{"name":"H. Fatima","@id":"https:\/\/www.resellerclub.com\/blog\/#\/schema\/person\/04f625d706ed889a739c8fdfe159375c"},"headline":"How to use OpenSSH on Linux","datePublished":"2017-11-30T15:40:43+00:00","dateModified":"2025-10-24T12:09:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/"},"wordCount":621,"commentCount":0,"image":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg","keywords":["linux","openssh","package","SSH","sshd","tech"],"articleSection":["Featured Post","Popular","Security Beat","Tech Blogs","Web Hosting Blogs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/","url":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/","name":"How to use OpenSSH on Linux","isPartOf":{"@id":"https:\/\/www.resellerclub.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg","datePublished":"2017-11-30T15:40:43+00:00","dateModified":"2025-10-24T12:09:13+00:00","author":{"@id":"https:\/\/www.resellerclub.com\/blog\/#\/schema\/person\/04f625d706ed889a739c8fdfe159375c"},"description":"Beginners guide on how to use OpenSSH on Linux. OpenSSH is the package to install sshd service. Click here to know the steps for installation.","breadcrumb":{"@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#primaryimage","url":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg","contentUrl":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-use-openssh-on-linux-1.jpg","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/www.resellerclub.com\/blog\/how-to-use-openssh-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.resellerclub.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to use OpenSSH on Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.resellerclub.com\/blog\/#website","url":"https:\/\/www.resellerclub.com\/blog\/","name":"ResellerClub Blog","description":"Web Hosting &amp; Domains","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.resellerclub.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.resellerclub.com\/blog\/#\/schema\/person\/04f625d706ed889a739c8fdfe159375c","name":"H. Fatima","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2020\/03\/IMG-20190220-WA0043-150x150.jpg","url":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2020\/03\/IMG-20190220-WA0043-150x150.jpg","contentUrl":"https:\/\/www.resellerclub.com\/blog\/wp-content\/uploads\/2020\/03\/IMG-20190220-WA0043-150x150.jpg","caption":"H. Fatima"},"description":"H. Fatima used to be an Engineer by profession and Writer by passion until she started pursuing full-time writing. She is presently a Content Marketeer at Newfold Digital (APAC). She mostly writes what she deeply perceives and analyses, it is her way of unwinding. Her interests include writing, reading (an avid reader), watching foreign-language movies and public speaking.","url":"https:\/\/www.resellerclub.com\/blog\/author\/h-fatima\/"}]}},"_links":{"self":[{"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/posts\/19583","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/users\/75"}],"replies":[{"embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/comments?post=19583"}],"version-history":[{"count":12,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/posts\/19583\/revisions"}],"predecessor-version":[{"id":35345,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/posts\/19583\/revisions\/35345"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/media\/29841"}],"wp:attachment":[{"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/media?parent=19583"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/categories?post=19583"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/tags?post=19583"},{"taxonomy":"hashtags","embeddable":true,"href":"https:\/\/www.resellerclub.com\/blog\/wp-json\/wp\/v2\/hashtags?post=19583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}