summaryrefslogtreecommitdiffstats
path: root/pot/Security/ssh-keygen.pot
diff options
context:
space:
mode:
Diffstat (limited to 'pot/Security/ssh-keygen.pot')
-rw-r--r--pot/Security/ssh-keygen.pot183
1 files changed, 183 insertions, 0 deletions
diff --git a/pot/Security/ssh-keygen.pot b/pot/Security/ssh-keygen.pot
new file mode 100644
index 0000000..b909fee
--- /dev/null
+++ b/pot/Security/ssh-keygen.pot
@@ -0,0 +1,183 @@
+#
+# AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 0\n"
+"POT-Creation-Date: 2014-05-18 12:18-0600\n"
+"PO-Revision-Date: 2014-05-18 12:18-0600\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: None\n"
+"MIME-Version: 1.0\n"
+"Content-Type: application/x-publican; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Tag: title
+#, no-c-format
+msgid "Creating SSH Keys"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Secure Shell, or SSH, is a powerful and popular tool for connecting to Fedora systems over local or global networks. SSH is more secure when used with <literal>keys</literal>. Like a physical key and lock, an ssh public and private key are paired to work only with each other. Using keys can make connecting easier, and systems that use keys can be made more secure by turning off ssh password access."
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Required Ingredients"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<package>openssh-clients</package> - Package, comes by default on most systems."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<package>openssh</package> - Package, comes by default on most systems."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis>Working Network Connection</emphasis> - Network services need a network!"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis>Target host</emphasis> - Another computer that you have network and password access to. You will need either an IP address or a domain name for this machine."
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Local testing"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To test ssh access against the local machine instead of another on the network, use <systemitem class=\"domainname\">localhost</systemitem> as the target hostname."
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Directions"
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Setting up SSH Keys"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Create the key."
+msgstr ""
+
+#. Tag: screen
+#, no-c-format
+msgid "\n"
+" <command>ssh-keygen -b 4096 -N \"<replaceable>secret</replaceable>\" -f <filename class=\"directory\">~/.ssh/<replaceable>target_id_isa</replaceable></filename></command>\n"
+" "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If you don't declare any options, <application>ssh-keygen</application> will ask for the required minimum interactively. Read about the example's options below, or find more options in <command>man ssh-keygen</command>."
+msgstr ""
+
+#. Tag: member
+#, no-c-format
+msgid "<parameter>-b 4096</parameter> : Generates a 4096-bit key, stronger than the default."
+msgstr ""
+
+#. Tag: member
+#, no-c-format
+msgid "<parameter>-n <replaceable>secret</replaceable></parameter> : A passphrase for the key. Optional, but strongly recommended."
+msgstr ""
+
+#. Tag: member
+#, no-c-format
+msgid "<parameter>-f <filename class=\"directory\">~/.ssh/<replaceable>target_id_rsa</replaceable></filename></parameter> : The file to create. Call the file anything, but store it in <filename class=\"directory\">~/.ssh/</filename>"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Copy the public key to your target."
+msgstr ""
+
+#. Tag: screen
+#, no-c-format
+msgid "\n"
+" <command>\n"
+" ssh-copy-id -i ~/.ssh/<replaceable>target_id_rsa</replaceable>.pub <replaceable>target_ip</replaceable>\n"
+" </command>\n"
+" "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The <application>ssh-copy-id</application> utility opens an ssh connection to the target using password authentication and adds the contents of the public key to <filename>~/.ssh/authorized_keys</filename>`. The file can also be shared by other means and appended to <filename>authorized_keys</filename> manually, a method used for systems where password authentication cannot be turned on."
+msgstr ""
+
+#. Tag: screen
+#, no-c-format
+msgid "\n"
+" <command>cat target_id_rsa.pub &gt;&gt; ~/.ssh/authorized_keys</command>\n"
+" "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Test the key:"
+msgstr ""
+
+#. Tag: screen
+#, no-c-format
+msgid "\n"
+" <command>\n"
+" ssh -i ~/.ssh/target_id_rsa -o PasswordAuthentication=no <replaceable>target_ip</replaceable>\n"
+" </command>\n"
+" "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Add an entry in your client ssh configuration for the key. <application>ssh</application> will try all keys in <filename>~/.ssh/</filename> when connecting to any host unless configured otherwise, so configuring it to only use keys that are explicitly paired to a host will reduce rejected authentication attempts and speed connections."
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Editing <filename>~/.ssh/config</filename>"
+msgstr ""
+
+#. Tag: screen
+#, no-c-format
+msgid "\n"
+" Host *\n"
+" IdentitiesOnly yes\n"
+"\n"
+" Host <replaceable>target_ip</replaceable>\n"
+" PasswordAuthentication No\n"
+" IdentityFile ~/.ssh/<replaceable>target_id_rsa</replaceable>\n"
+" "
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "References"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<citetitle>ssh-keygen(1)</citetitle> - manual for ssh-keygen"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<citetitle>ssh-copy-id(1)</citetitle> - manual for ssh-copy-id"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<citetitle>ssh-config(5)</citetitle> - manual for ssh client configuration files"
+msgstr ""
+