{"id":318,"date":"2018-01-03T02:16:10","date_gmt":"2018-01-03T08:16:10","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=318"},"modified":"2018-01-25T06:26:53","modified_gmt":"2018-01-25T12:26:53","slug":"speed-up-ssh-connections-in-linux","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/","title":{"rendered":"Speed Up SSH Connections in Linux"},"content":{"rendered":"<div id=\"linux-3387699055\" 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>We&#8217;ll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially if you need to open multiple SSH connections to your server. One such scenario would be if you use Git for your development work, as Git uses multiple SSH connections to transfer files and if your server is not configured correctly it will add unnecessary overhead by re-establishing a connection for every file transferred. In today&#8217;s tutorial we are going to learn how to speed up SSH connections in Linux. Let&#8217;s get started!<br \/>\n<!--more--><\/p>\n<h2>1. Disable DNS lookup on the server<\/h2>\n<p>The OpenSSH server has DNS lookups enabled by default, this means that the OpenSSH server will first look up the host name of the connecting host and then will check if the resolved host name&#8217;s IP address is the same as the connecting IP address.To disable DNS lookups, add the &#8216;UseDNS&#8217; directive at the end of the &#8216;\/etc\/ssh\/sshd_config&#8217; file and set the value to &#8216;no&#8217;:<\/p>\n<pre># nano \/etc\/ssh\/sshd_config\r\n\r\n# If you just want the PAM account and session checks to run without\r\n# PAM authentication, then enable this but set PasswordAuthentication\r\n# and ChallengeResponseAuthentication to 'no'.\r\nUsePAM yes\r\n\r\n# Disable DNS lookups\r\nUseDNS no\r\n<\/pre>\n<h2>2. Re-use existing SSH connection<\/h2>\n<p>If you open multiple SSH connections to your server frequently, it would be best to configure your SSH client to use the existing connection when creating a new SSH session.This can speed up the sessions opened after the initial connection as it avoids the overhead of establishing a new connection.<\/p>\n<p>Open the &#8216;~\/.ssh\/config&#8217; file with nano and add the following lines in it:<\/p>\n<pre># nano ~\/.ssh\/config\r\n\r\nHost *\r\nControlMaster auto\r\nControlPath  ~\/.ssh\/sockets\/%r@%h-%p\r\nControlPersist 600\r\n<\/pre>\n<p>The &#8216;Host *&#8217; directive above tells the SSH client to re-use the initial connection for all remote servers.<\/p>\n<h2>3. Setting up a password-less SSH login<\/h2>\n<p>Setting up a password-less SSH login is pretty easy and saves you time because you don&#8217;t have to enter a password when you open a new SSH connection.This can be done in three easy steps.<\/p>\n<p>1.Generate the public\/private key pair using this command:<\/p>\n<pre># ssh-keygen\r\nGenerating public\/private rsa key pair.\r\nEnter file in which to save the key (\/root\/.ssh\/id_rsa): Press Enter.\r\nEnter passphrase (empty for no passphrase): Press Enter.\r\nEnter same passphrase again: Press Enter.\r\nYour identification has been saved in \/root\/.ssh\/id_rsa.\r\nYour public key has been saved in \/root\/.ssh\/id_rsa.pub.\r\nThe key fingerprint is:\r\nSHA256:\/LEFoGKAt\/qC9NeEfIfWm988IUqJaAuYBDvuDuu\/jk8 root@test\r\nThe key's randomart image is:\r\n+---[RSA 2048]----+\r\n| ..     .        |\r\n|o ..   . .       |\r\n|.o .o .   .      |\r\n|o... . .   .     |\r\n|ooo . o S o .    |\r\n|.= . = * * = .   |\r\n|=..Eo * o * . .  |\r\n|+o+. o . +  o.   |\r\n|+=+=o     .. o.  |\r\n+----[SHA256]-----+\r\n<\/pre>\n<p>2.Copy the public key to the remote server using this command:<\/p>\n<pre># ssh-copy-id -i ~\/.ssh\/id_rsa.pub remote-server\r\nroot@remote-server's password:\r\nNow try logging into the machine, with \"ssh 'remote-server'\", and check in:\r\n\r\n.ssh\/authorized_keys\r\n\r\nto make sure we haven't added extra keys that you weren't expecting.\r\n<\/pre>\n<p>3.Log in to the remote server to check if the password-less login is working:<\/p>\n<pre># ssh remote-server\r\n\r\nLast login: Thu Dec 28 20:10:38 2017 from 10.20.30.4\r\n\r\n\r\nroot@remote-server$\r\n<\/pre>\n<p>If everything goes well you should see the output displayed above.<\/p>\n<h2>4. Changing the encryption used by the OpenSSH server<\/h2>\n<p>Changing the default cipher order for the SSHv2 protocol on the OpenSSH server can further speed up SSH connections as some ciphers can encrypt data faster than others.<br \/>\nFor Ubuntu 16.04 the default order according to &#8216;man ssh_config&#8217; is:<\/p>\n<pre>The default is:\r\n\r\n\tchacha20-poly1305@openssh.com,\r\n\taes128-ctr,aes192-ctr,aes256-ctr,\r\n\taes128-gcm@openssh.com,aes256-gcm@openssh.com,\r\n\taes128-cbc,aes192-cbc,aes256-cbc,3des-cbc\r\n<\/pre>\n<p>If you do have a server which supports the new AES-NI instructions it would be better to change this order and add it to the end of the &#8216;\/etc\/ssh\/sshd_config&#8217; file like this:<\/p>\n<pre># nano \/etc\/ssh\/sshd_config\r\n\r\n# If you just want the PAM account and session checks to run without\r\n# PAM authentication, then enable this but set PasswordAuthentication\r\n# and ChallengeResponseAuthentication to 'no'.\r\nUsePAM yes\r\n\r\n# Disable DNS lookups\r\nUseDNS no\r\n\r\n# Change the order of the ciphers used\r\nCiphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com,aes128-cbc,aes192-cbc,aes256-cbc,chacha20-poly1305@openssh.com,3des-cbc\r\n<\/pre>\n<p>According to several benchmarks available online, aes128-ctr is twice as fast as chacha20-poly1305 on processors that support the AES-NI instructions so if you have a high-bandwidth connection to your server the file transfer speed should increase significantly after making the change.<\/p>\n<p>That&#8217;s it, now your SSH connections should be a lot faster.<\/p>\n<p>Of course, you don\u2019t have to Speed Up SSH Connections in Linux, all by yourself, if you use one of <a href=\"https:\/\/linuxhostsupport.com\">our outsourced linux support services<\/a>, in which case you can simply ask our expert Linux admins to speed up the SSH connections on your Linux server for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong>.<\/span> If you liked this post on how to speed up SSH connections in Linux, please share it with your friends on the social networks using the buttons on the right or simply leave a reply below. Thanks.<\/p><div id=\"linux-1832150175\" 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>We&#8217;ll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially if you need to open multiple SSH connections to your server. One such scenario would be if you use Git for your development work, as Git uses [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":320,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[72,79,71,65],"class_list":["post-318","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-miscellaneous","tag-connection","tag-linux-host-support","tag-speed-up","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Speed Up SSH Connections in Linux | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We&#039;ll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially\" \/>\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\/speed-up-ssh-connections-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Speed Up SSH Connections in Linux | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We&#039;ll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\" \/>\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=\"2018-01-03T08:16:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-25T12:26:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"Speed Up SSH Connections in Linux\",\"datePublished\":\"2018-01-03T08:16:10+00:00\",\"dateModified\":\"2018-01-25T12:26:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\"},\"wordCount\":596,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg\",\"keywords\":[\"connection\",\"Linux host support\",\"speed up\",\"ssh\"],\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\",\"name\":\"Speed Up SSH Connections in Linux | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg\",\"datePublished\":\"2018-01-03T08:16:10+00:00\",\"dateModified\":\"2018-01-25T12:26:53+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We'll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg\",\"width\":1200,\"height\":600,\"caption\":\"Speed Up SSH Connections in Linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Speed Up SSH Connections in Linux\"}]},{\"@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":"Speed Up SSH Connections in Linux | LinuxHostSupport","description":"We'll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially","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\/speed-up-ssh-connections-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Speed Up SSH Connections in Linux | LinuxHostSupport","og_description":"We'll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially","og_url":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-01-03T08:16:10+00:00","article_modified_time":"2018-01-25T12:26:53+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"Speed Up SSH Connections in Linux","datePublished":"2018-01-03T08:16:10+00:00","dateModified":"2018-01-25T12:26:53+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/"},"wordCount":596,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg","keywords":["connection","Linux host support","speed up","ssh"],"articleSection":["Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/","url":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/","name":"Speed Up SSH Connections in Linux | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg","datePublished":"2018-01-03T08:16:10+00:00","dateModified":"2018-01-25T12:26:53+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We'll show you, how to speed up SSH connections in Linux. SSH is a very secure method for managing Linux servers. Sometimes it can be very slow especially","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/01\/Speed-Up-SSH-Connections-in-Linux.jpg","width":1200,"height":600,"caption":"Speed Up SSH Connections in Linux"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/speed-up-ssh-connections-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Speed Up SSH Connections in Linux"}]},{"@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\/318","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=318"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/318\/revisions"}],"predecessor-version":[{"id":400,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/318\/revisions\/400"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/320"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=318"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=318"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=318"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}