How can I get my ubuntu server 12.04 to automatically mount the encrypted home partition after an ftp login? It will automatically mount after an ssh login and I can then access the encrypted information over ftp but I don't want to have to log into ssh every time I want to use ftp.
|
|
When you login into your system, either directly or via ssh, it is usually the pam_ecryptfs module that takes care of automatically mounting your encrypted home. This module will use your password to decrypt a better key (referred to as passphrase in the docs) and make your encrypted home directory available. Setting up pam_ecryptfs for FTP logins seems like a really bad idea, though. FTP sends passwords (and data) in clear text. This means that anyone on your network will be able to steal your password and be able to decrypt your data. I would either:
If you really really want to enable mounting encrypted directories automatically with ftp, you can add a line like: auth required pam_ecryptfs.so unwrap in /etc/pam.d/proftpd, assuming your FTP server is proftp. If you use this and it works, please tell us you are using a VPN or a socks proxy over an SSL tunnel or ssh. Lie if you have to. |
|||
|
|