From 6439126c141d2dddbcdacfb58882faa36383d113 Mon Sep 17 00:00:00 2001 From: Pete Travis Date: Thu, 15 May 2014 14:05:22 -0600 Subject: markup repair --- en-US/Creating_GPG_Keys.xml | 15 +++++++-------- en-US/GPG.xml | 9 ++++----- en-US/Security/ssh-proxy.xml | 12 ++++++------ en-US/git/secure-git-pull.xml | 19 +++++-------------- 4 files changed, 22 insertions(+), 33 deletions(-) diff --git a/en-US/Creating_GPG_Keys.xml b/en-US/Creating_GPG_Keys.xml index bef0507..1a8eb9b 100644 --- a/en-US/Creating_GPG_Keys.xml +++ b/en-US/Creating_GPG_Keys.xml @@ -1,4 +1,3 @@ - = key expires in n days - w = key expires in n weeks - m = key expires in n months - y = key expires in n years + <n> = key expires in n days + <n>w = key expires in n weeks + <n>m = key expires in n months + <n>y = key expires in n years Key is valid for? (0) 1y Key expires at Wed 15 Apr 2015 09:40:08 PM EDT Is this correct? (y/N) y You need a user ID to identify your key; the software constructs the user ID from the Real Name, Comment and Email Address in this form: - "Heinrich Heine (Der Dichter) " + "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>" Real name: Beefy Email address: beefy@fedoraproject.org Comment: FAKE You selected this USER-ID: - "Beefy (FAKE) " + "Beefy (FAKE) <beefy@fedoraproject.org>" Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? o You need a Passphrase to protect your secret key. @@ -83,7 +82,7 @@ gpg: depth: 2 valid: 8 signed: 16 trust: 8-, 0q, 0n, 0m, 0f, 0u gpg: next trustdb check due at 2014-09-09 pub 3072R/20EE698C 2014-04-16 [expires: 2015-04-16] Key fingerprint = E6FE 3BF4 F307 00BD 6517 050F C159 309E 20EE 698C -uid Beefy (FAKE) +uid Beefy (FAKE) <beefy@fedoraproject.org> sub 3072R/C68ACE5D 2014-04-16 [expires: 2015-04-16] diff --git a/en-US/GPG.xml b/en-US/GPG.xml index 7670e32..603472b 100644 --- a/en-US/GPG.xml +++ b/en-US/GPG.xml @@ -1,6 +1,4 @@ - - - %BOOK_ENTITIES; @@ -18,8 +16,9 @@ GNU Privacy Guard or GnuPG or just plain GPG is an open source iteration of Pretty Good Privacy (PGP) and provides authentication and encryption for email and files based on asymmetric cryptography. Using GPG allows an individual or organization to help protect their coorespondances as they cross the Internet or other medium. - - + diff --git a/en-US/Security/ssh-proxy.xml b/en-US/Security/ssh-proxy.xml index 550cb82..2a06d16 100644 --- a/en-US/Security/ssh-proxy.xml +++ b/en-US/Security/ssh-proxy.xml @@ -1,4 +1,3 @@ - - The address space for your internal network. On many home routers, this will be 192.168.1.* or 192.168.0.1> + The address space for your internal network. On many home routers, this will be 192.168.1.* or 192.168.0.1 - + + + Address Space Reuse Adddresses like 192.168.1.0/24 are reserved for use in private networks. Because the proxy rule is applied based on the address space of the target, you should configure your router to use a less common set of addresses. @@ -49,8 +50,7 @@ If your router can give addresses in the 192.168.42.0/24 network, for example, your proxy rule won't get in the way when connecting to machines on a different network that uses 192.168.1.0/24 addresses. - - +
Directions @@ -62,7 +62,7 @@ Open the firewall on all machines to ssh traffic. This is the default on most systems. Use the graphical firewall application firewall-config, or issue the commands below as root. firewall-cmd --permanent --add-service=ssh - firewall-cmd --reload + firewall-cmd --reload diff --git a/en-US/git/secure-git-pull.xml b/en-US/git/secure-git-pull.xml index c2d21f3..6d6cf0b 100644 --- a/en-US/git/secure-git-pull.xml +++ b/en-US/git/secure-git-pull.xml @@ -1,4 +1,3 @@ - A dedicated user account. - + - A dedicated SSH authentication key
+ A dedicated SSH authentication key @@ -43,6 +42,7 @@ Configuring the host Create and configure a new user account to use for the transfer. For security reasons, this account will only be allowed to interact with git. + First, identify the path to your git repository. Store it in a shell variable, for convenience. @@ -100,7 +100,7 @@ You can add the ssh public key to your git repository to share it, or tell git to ignore they key with the instructions below. pushd $repo_directory - echo ".ssh/" >> .gitignore + echo ".ssh/" >> .gitignore git add .gitignore git commit -m "Ignore $repo_directory/.ssh" popd @@ -113,16 +113,7 @@ Configure the remote host to use your repository - - - - - - - - - - +
-- cgit