This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
cluster:157 [2017/04/06 15:44] hmeij07 |
cluster:157 [2017/04/06 19:31] (current) hmeij07 |
||
---|---|---|---|
Line 4: | Line 4: | ||
==== Centralize SSH Key Management ==== | ==== Centralize SSH Key Management ==== | ||
- | Lest assume we have 3 colleges (CollegeA, CollegeB, CollegeC) and we write a grant proposal and each institution will do something unique science wise. Grant gets funded and specialized hardware or software gets deployed at each college (for maybe brain scan analyses, deep learning, and engineering). | + | Lets assume we have 3 colleges (CollegeA, CollegeB, CollegeC) and we write a grant proposal and each institution will do something unique science wise. Grant gets funded and specialized hardware or software gets deployed at each college (for maybe brain scan analyses, deep learning, and engineering). |
The grant mentioned that all members of participating colleges can request access at any college. How would one do that without a mess developing? Nobody, not even admins, should have access to any user level passwords. Accounts should be able to be revoked. CPU usage should be accountable. In short, some sort of " | The grant mentioned that all members of participating colleges can request access at any college. How would one do that without a mess developing? Nobody, not even admins, should have access to any user level passwords. Accounts should be able to be revoked. CPU usage should be accountable. In short, some sort of " | ||
Line 15: | Line 15: | ||
** SSH public key authentication** | ** SSH public key authentication** | ||
- | In the ''/ | + | On a selected collge, behind the firewall, set up a management server. |
* '' | * '' | ||
- | For this example, the /etc, /etc/ssh, and / | + | For this example, the /etc, /etc/ssh, and / |
< | < | ||
- | # ls -ld /etc /etc/ssh / | ||
| | ||
| | ||
Line 31: | Line 30: | ||
</ | </ | ||
- | Unique usernamaes and UID/GID need to be created. | + | We need to collect all '' |
- | < | + | Workflow |
- | nid=15001 | + | * User hmeij of CollegeA (Wesleyan) requests access to College[B|C], goes to a web site and type in ' |
- | pre=wes | + | * Script does the following steps, figures out next UID/GID, referer ip yields prefix |
- | unm=hmeij | + | * echo "weshmeij:x:15001" >> / |
- | [root@ ~]# echo "$pre$unm:x:$nid" >> / | + | |
- | [root@ ~]# useradd -u $nid -g $nid $pre$unm | + | |
- | [root@ ~]# echo "`date | md5sum | awk ' | + | * su - weshmeij -c " |
- | [root@ ~]# cp /tmp/$upfile | + | * mv /home/weshmeij/ |
- | [root@ ~]# chmod 0444 / | + | * chown root:root / |
- | </code> | + | * cat /home/ |
- | + | * CollegeA user hmeij saves private key to $HOME/ | |
- | We need '' | + | * script finishes; rm -f / |
+ | * that night college[A|B|C] root retrieves all lines in the range 15001-30000 | ||
+ | * makes home dirs if they do not exist (parse lines build useradd, or via pam.d/sshd?) | ||
+ | * download public keys, updates in / | ||
+ | * replaces | ||
+ | * user hmeij@wes: ssh weshmeij@openhpc.lafayette.edu -i / | ||
- | Hmm, this requires that at CollegeA user hmeij can switch to weshmeij credentials before connecting to CollegeB (echo "$unm $localhost=/ | + | That would work. Nobody knows the passwords for these guest accounts. |
- | Ahh, since | ||
**Kerberos & AD** | **Kerberos & AD** |