other versions
- wheezy 1:3.3.1-4
- jessie 1:3.3.6-4
- testing 1:3.3.9-5
- unstable 1:3.3.9-5
- experimental 1:3.4.3-1
| AMCRYPT-OSSL-ASYM(8) | System Administration Commands | AMCRYPT-OSSL-ASYM(8) |
NAME¶
amcrypt-ossl-asym - crypt program for Amanda asymmetric data encryption using OpenSSLSYNOPSIS¶
amcrypt-ossl-asym
[-d]
DESCRIPTION¶
GENERATING PUBLIC AND PRIVATE KEYS¶
RSA keys can be generated with the standard OpenSSL commands, e.g.:$ cd /var/lib/amanda $ openssl genrsa -aes128 -out backup-privkey.pem 1024 Generating RSA private key, 1024 bit long modulus [...] Enter pass phrase for backup-privkey.pem: ENTER YOUR PASS PHRASE Verifying - Enter pass phrase for backup-key.pem: ENTER YOUR PASS PHRASE $ openssl rsa -in backup-privkey.pem -pubout -out backup-pubkey.pem Enter pass phrase for backup-privkey.pem: ENTER YOUR PASS PHRASE Writing RSA keyTo generate a private key without a passphrase, omit the -aes128 option. See openssl_genrsa(1) for more key generation options. Note that it is always possible to generate the public key from the private key.
KEY AND PASSPHRASE MANAGEMENT¶
FILES¶
/var/lib/amanda/backup-privkey.pemFile containing the RSA private key. It should
not be readable by any user other than the Amanda user.
/var/lib/amanda/backup-pubkey.pem
File containing the RSA public key.
/var/lib/amanda/.am_passphrase
File containing the passphrase. It should not
be readable by any user other than the Amanda user.
SEE ALSO¶
amanda(8), amanda.conf(5), openssl(1), amcrypt-ossl(8) The Amanda Wiki: : http://wiki.zmanda.com/AUTHOR¶
Kevin Till <kevin.till@zmanda.com>Zmanda, Inc. (http://www.zmanda.com)
NOTES¶
- 1.
- www.openssl.org
- 2.
- www.diceware.com
| 02/21/2012 | Amanda 3.3.1 |