{"id":193,"date":"2016-06-21T15:21:27","date_gmt":"2016-06-21T09:51:27","guid":{"rendered":"http:\/\/hostmayo.com\/blog\/?p=193"},"modified":"2016-06-18T17:06:55","modified_gmt":"2016-06-18T11:36:55","slug":"generate-openssh-keys-windows","status":"publish","type":"post","link":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/","title":{"rendered":"Connect to VPS using OpenSSH key on windows"},"content":{"rendered":"<p>PuTTY is a famous client program for SSH in addition to Telnet and Rlogin.<\/p>\n<p>PuTTY does not have native support for reading OpenSSH&#8217;s SSH-2 private key files. We use PuTTY to connect to the SSH.<\/p>\n<p>However, PuTTY does have an add on named PuTTYgen which can generate RSA and DSA based keys (DSA based being less popular due to less secure than RSA).<\/p>\n<p>This utility can convert OpenSSH private key files into PuTTY&#8217;s format thus you can connect to VPS using OpenSSH key on windows with the added security that SSH keys provide.<\/p>\n<p>PuTTYgen is a free open-source application can be downloaded from <a title=\"PuTTY Download Page\" href=\"http:\/\/www.chiark.greenend.org.uk\/%7Esgtatham\/putty\/download.html\" target=\"_blank\">their official website<\/a>.<\/p>\n<div data-unique=\"generating-openssh-compatible-keys-for-use-with-putty\">Just download the PuTTY and PuTTYgen so we can connect to VPS using OpenSSH key on windows platform.<\/div>\n<h2>Generate OpenSSH compatible Keys<\/h2>\n<p>To generate a set of RSA keys with PuTTYgen:<\/p>\n<ol>\n<li>Start the PuTTYgen utility, by double-clicking on its .exe file;<\/li>\n<li>For <strong>Type of key to generate<\/strong>, select <strong>SSH-2 RSA<\/strong>;<\/li>\n<li>In the <strong>Number of bits in a generated key<\/strong> field, specify either <strong>2048<\/strong> or <strong>4096<\/strong> (increasing the bits makes it harder to crack the key by brute-force methods);<\/li>\n<li>Click the <strong>Generate<\/strong> button;<\/li>\n<li>Move your mouse pointer around in the blank area of the <strong>Key<\/strong> section, below the progress bar (to generate some randomness) until the progress bar is full;<\/li>\n<li><\/li>\n<li>A private\/ public key pair has now been generated;<\/li>\n<li>In the <strong>Key comment<\/strong> field, enter <i>any<\/i> comment you&#8217;d like, to help you identify this key pair, later (e.g. your e-mail address; home; office; etc.) &#8212; the key comment is particularly useful in the event you end up creating more than one key pair;<\/li>\n<li><u>Optional<\/u>: Type a passphrase in the <strong>Key passphrase<\/strong> field &amp; re-type the same passphrase in the <strong>Confirm passphrase<\/strong> field (if you would like to use your keys for automated processes, however, you should <i>not<\/i> create a passphrase);<\/li>\n<li>Click the <strong>Save public key<\/strong> button &amp; choose whatever filename you&#8217;d like (some users create a folder in their computer named <i>my_keys<\/i>);<\/li>\n<li>Click the <strong>Save private key<\/strong> button &amp; choose whatever filename you&#8217;d like (you can save it in the same location as the public key, but it should be a location that only you can access and that you will NOT lose! If you lose your keys and have disabled username\/password logins, you will no longer be able log in!);<\/li>\n<li>Right-click in the text field labeled <strong>Public key for pasting into OpenSSH authorized_keys file<\/strong> and choose <strong>Select All<\/strong>;<\/li>\n<li>Right-click again in the same text field and choose <strong>Copy<\/strong>.<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-196\" src=\"http:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\" alt=\"Connect to VPS using OpenSSH key on windows\" width=\"496\" height=\"482\" srcset=\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png 496w, https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty-300x292.png 300w\" sizes=\"auto, (max-width: 496px) 100vw, 496px\" \/><\/li>\n<\/ol>\n<p><strong>NOTE:<\/strong> PuTTY and OpenSSH use different formats for public SSH keys. If the <strong>SSH Key<\/strong> you copied starts with &#8220;&#8212;- BEGIN SSH2 PUBLIC KEY &#8230;&#8221;, it is in the wrong format. Be sure to follow the instructions carefully. Your key should start with &#8220;ssh-rsa AAAA &#8230;.&#8221;<\/p>\n<h2>Save The Public Key On The Server<\/h2>\n<p>Now, you need to paste the copied public key in the file <strong>~\/.ssh\/authorized_keys<\/strong> on your server.<\/p>\n<ol>\n<ol>\n<li>Log in to your destination server; <i>see<\/i> <a href=\"https:\/\/www.digitalocean.com\/community\/articles\/how-to-log-into-your-droplet-with-putty-for-windows-users\" target=\"_blank\">How to Log Into Your Droplet with PuTTY (for windows users)<\/a><\/li>\n<li>If your SSH folder does not yet exist, create it manually:<\/li>\n<\/ol>\n<\/ol>\n<pre>mkdir ~\/.ssh\r\nchmod 0700 ~\/.ssh\r\ntouch ~\/.ssh\/authorized_keys\r\nchmod 0644 ~\/.ssh\/authorized_keys<\/pre>\n<ol>\n<ol>\n<li>Paste the SSH public key into your <strong>~\/.ssh\/authorized_keys<\/strong> file<\/li>\n<\/ol>\n<\/ol>\n<pre>vi ~\/.ssh\/authorized_keys<\/pre>\n<ol>\n<li>Tap the <code>i<\/code> key on your keyboard &amp; right-click your mouse to paste.<\/li>\n<li>To save, tap the following keys on your keyboard (in this order): <code>Esc<\/code>, <code>:<\/code>, <code>w<\/code>, <code>q<\/code>, <code>Enter<\/code>.<\/li>\n<\/ol>\n<h2>PuTTY Profile With Server&#8217;s Settings<\/h2>\n<p>In PuTTY, you can create (and save) profiles for connections to your various SSH servers so the settings can be saved permanently.<\/p>\n<ol>\n<li>Start PuTTY by double-clicking its executable file;<\/li>\n<li>PuTTY&#8217;s initial window is the <i>Session<\/i> Category (navigate PuTTY&#8217;s various categories, along the left-hand side of the window);<\/li>\n<li>In the <strong>Host Name<\/strong> field, enter the IP address of your VPS or its fully qualified domain name (FQDN).<\/li>\n<li>Enter the port number in the <strong>Port<\/strong> field (for added security, consider changing your server&#8217;s SSH port to a non-standard port.<\/li>\n<li>Select <strong>SSH<\/strong> under <strong>Protocol<\/strong>;<\/li>\n<li>Along the left-hand side of the window, select the <i>Data<\/i> sub-category, under <i>Connection<\/i>;<\/li>\n<li>Specify the username that you plan on using, when logging in to the SSH server, and whose profile you&#8217;re saving, in the <strong>Auto-login username<\/strong> field;<\/li>\n<li>Expand the <i>SSH<\/i> sub-category, under <i>Connection<\/i>;<\/li>\n<li>Highlight the <i>Auth<\/i> sub-category and click the <strong>Browse<\/strong> button, on the right-hand side of the PuTTY window;<\/li>\n<li>Browse your file system and select your previously-created private key;<\/li>\n<li>Return to the <i>Session<\/i> Category and enter a name for this profile in the <strong>Saved Sessions<\/strong> field, e.g. user@123.456.78.9 or user@host.yourdomain.tld;<\/li>\n<li>Click the <strong>Save<\/strong> button for the <strong>Load, Save or Delete a stored session<\/strong> area.<\/li>\n<\/ol>\n<p>Now you can go ahead and\u00a0Connect to vps using OpenSSH key on windows\u00a0 and you will <strong>not<\/strong> be prompted for a password. However, if you had set a passphrase on your public key, you <i>will<\/i> be asked to enter the passphrase at that time.<\/p>\n<p>Next lets confirm the following lines are set to yes (these are normally enabled by default and may be commented out) using<\/p>\n<pre>vi \/etc\/ssh\/sshd_config<\/pre>\n<pre>RSAAuthentication yes\r\nPubkeyAuthentication yes<\/pre>\n<pre>PasswordAuthentication no<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>PuTTY is a famous client program for SSH in addition to Telnet and Rlogin. PuTTY does not have native support for reading OpenSSH&#8217;s SSH-2 private [&hellip;] <span class=\"read-more-link\"><a class=\"read-more\" href=\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":196,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-193","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Connect to VPS using OpenSSH key on windows<\/title>\n<meta name=\"description\" content=\"Connect to VPS using OpenSSH key on windows though PuTTY.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Connect to VPS using OpenSSH key on windows\" \/>\n<meta property=\"og:description\" content=\"Connect to VPS using OpenSSH key on windows though PuTTY.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"Host Mayo\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Hostmayoservers\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-21T09:51:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-06-18T11:36:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\" \/>\n\t<meta property=\"og:image:width\" content=\"496\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Billa\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hostmayo\" \/>\n<meta name=\"twitter:site\" content=\"@hostmayo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Billa\" \/>\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:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\"},\"author\":{\"name\":\"Billa\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/a511fa95af50c3cb2614311b73c2ea9d\"},\"headline\":\"Connect to VPS using OpenSSH key on windows\",\"datePublished\":\"2016-06-21T09:51:27+00:00\",\"dateModified\":\"2016-06-18T11:36:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\"},\"wordCount\":840,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\",\"articleSection\":[\"vps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\",\"url\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\",\"name\":\"Connect to VPS using OpenSSH key on windows\",\"isPartOf\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\",\"datePublished\":\"2016-06-21T09:51:27+00:00\",\"dateModified\":\"2016-06-18T11:36:55+00:00\",\"description\":\"Connect to VPS using OpenSSH key on windows though PuTTY.\",\"breadcrumb\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage\",\"url\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\",\"contentUrl\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png\",\"width\":496,\"height\":482,\"caption\":\"Connect to VPS using OpenSSH key on windows\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hostmayo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Connect to VPS using OpenSSH key on windows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#website\",\"url\":\"https:\/\/hostmayo.com\/blog\/\",\"name\":\"Host Mayo\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hostmayo.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#organization\",\"name\":\"Host Mayo\",\"url\":\"https:\/\/hostmayo.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2015\/12\/ico.png\",\"contentUrl\":\"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2015\/12\/ico.png\",\"width\":64,\"height\":64,\"caption\":\"Host Mayo\"},\"image\":{\"@id\":\"https:\/\/hostmayo.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Hostmayoservers\",\"https:\/\/x.com\/hostmayo\",\"https:\/\/www.linkedin.com\/company\/host-mayo\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/a511fa95af50c3cb2614311b73c2ea9d\",\"name\":\"Billa\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/55380a32a6c37aba9b35b3d51dbd6cd6460322a433ecdaaacb28aece47163e51?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/55380a32a6c37aba9b35b3d51dbd6cd6460322a433ecdaaacb28aece47163e51?s=96&d=mm&r=g\",\"caption\":\"Billa\"},\"description\":\"Geek, Banker &amp; Entrepreneur.\",\"sameAs\":[\"https:\/\/hostmayo.com\/\"],\"url\":\"https:\/\/hostmayo.com\/blog\/author\/waqass\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Connect to VPS using OpenSSH key on windows","description":"Connect to VPS using OpenSSH key on windows though PuTTY.","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:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/","og_locale":"en_US","og_type":"article","og_title":"Connect to VPS using OpenSSH key on windows","og_description":"Connect to VPS using OpenSSH key on windows though PuTTY.","og_url":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/","og_site_name":"Host Mayo","article_publisher":"https:\/\/www.facebook.com\/Hostmayoservers","article_published_time":"2016-06-21T09:51:27+00:00","article_modified_time":"2016-06-18T11:36:55+00:00","og_image":[{"width":496,"height":482,"url":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","type":"image\/png"}],"author":"Billa","twitter_card":"summary_large_image","twitter_creator":"@hostmayo","twitter_site":"@hostmayo","twitter_misc":{"Written by":"Billa","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#article","isPartOf":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/"},"author":{"name":"Billa","@id":"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/a511fa95af50c3cb2614311b73c2ea9d"},"headline":"Connect to VPS using OpenSSH key on windows","datePublished":"2016-06-21T09:51:27+00:00","dateModified":"2016-06-18T11:36:55+00:00","mainEntityOfPage":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/"},"wordCount":840,"commentCount":0,"publisher":{"@id":"https:\/\/hostmayo.com\/blog\/#organization"},"image":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","articleSection":["vps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/","url":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/","name":"Connect to VPS using OpenSSH key on windows","isPartOf":{"@id":"https:\/\/hostmayo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage"},"image":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","datePublished":"2016-06-21T09:51:27+00:00","dateModified":"2016-06-18T11:36:55+00:00","description":"Connect to VPS using OpenSSH key on windows though PuTTY.","breadcrumb":{"@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#primaryimage","url":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","contentUrl":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","width":496,"height":482,"caption":"Connect to VPS using OpenSSH key on windows"},{"@type":"BreadcrumbList","@id":"https:\/\/hostmayo.com\/blog\/generate-openssh-keys-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hostmayo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Connect to VPS using OpenSSH key on windows"}]},{"@type":"WebSite","@id":"https:\/\/hostmayo.com\/blog\/#website","url":"https:\/\/hostmayo.com\/blog\/","name":"Host Mayo","description":"","publisher":{"@id":"https:\/\/hostmayo.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hostmayo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hostmayo.com\/blog\/#organization","name":"Host Mayo","url":"https:\/\/hostmayo.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostmayo.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2015\/12\/ico.png","contentUrl":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2015\/12\/ico.png","width":64,"height":64,"caption":"Host Mayo"},"image":{"@id":"https:\/\/hostmayo.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Hostmayoservers","https:\/\/x.com\/hostmayo","https:\/\/www.linkedin.com\/company\/host-mayo"]},{"@type":"Person","@id":"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/a511fa95af50c3cb2614311b73c2ea9d","name":"Billa","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostmayo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/55380a32a6c37aba9b35b3d51dbd6cd6460322a433ecdaaacb28aece47163e51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/55380a32a6c37aba9b35b3d51dbd6cd6460322a433ecdaaacb28aece47163e51?s=96&d=mm&r=g","caption":"Billa"},"description":"Geek, Banker &amp; Entrepreneur.","sameAs":["https:\/\/hostmayo.com\/"],"url":"https:\/\/hostmayo.com\/blog\/author\/waqass\/"}]}},"jetpack_featured_media_url":"https:\/\/hostmayo.com\/blog\/wp-content\/uploads\/2016\/06\/Putty.png","_links":{"self":[{"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/posts\/193","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/comments?post=193"}],"version-history":[{"count":0,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/posts\/193\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/media\/196"}],"wp:attachment":[{"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/media?parent=193"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/categories?post=193"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostmayo.com\/blog\/wp-json\/wp\/v2\/tags?post=193"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}