<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Marco B.</title>
    <description>The latest articles on DEV Community by Marco B. (@beinbm).</description>
    <link>https://dev.to/beinbm</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F702774%2F2c28d991-e294-4249-9320-6e584c843395.jpg</url>
      <title>DEV Community: Marco B.</title>
      <link>https://dev.to/beinbm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/beinbm"/>
    <language>en</language>
    <item>
      <title>How to create a new SSH key</title>
      <dc:creator>Marco B.</dc:creator>
      <pubDate>Fri, 10 Sep 2021 09:19:51 +0000</pubDate>
      <link>https://dev.to/gotphoto/how-to-create-a-new-ssh-key-d9a</link>
      <guid>https://dev.to/gotphoto/how-to-create-a-new-ssh-key-d9a</guid>
      <description>&lt;p&gt;As a software developer it is common to connect to various services via SSH. Be it a remote SQL database or Git or a web server, we mostly use SSH to connect to the server.&lt;/p&gt;

&lt;p&gt;Password authentication is not up to date anymore and short SSH RSA keys do not provide the expected security.&lt;/p&gt;

&lt;p&gt;Good that there is ed25519 :)&lt;/p&gt;

&lt;p&gt;You can generate a key with the following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ssh-keygen -t ed25519 -C "mail@example.com"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You'll be asked where to save the key. The default location is &lt;code&gt;~/.ssh/id_ed25519.pub&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then you can copy your public key to the server. To show it use following command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cat ~/.ssh/id_ed25519.pub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ssh</category>
      <category>key</category>
      <category>ed25519</category>
    </item>
  </channel>
</rss>
