Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/connect/ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The way SSH handles the keys and the configuration files is illustrated in the f
To generate an RSA SSH keys **of 4096-bit length**, just use the `ssh-keygen` command [as follows](https://explainshell.com/explain?cmd=ssh-keygen+-t+rsa+-o+-a+100):

```bash
ssh-keygen -t rsa -b 4096
ssh-keygen -t rsa -b 4096 -a 121
```

After the execution of this command, the generated keys are stored in the following files:
Expand All @@ -39,7 +39,7 @@ After the execution of this command, the generated keys are stored in the follow
You may want to generate also **ED25519** Key Pairs (which is the most recommended public-key algorithm available today) -- see [explaination](https://explainshell.com/explain?cmd=ssh-keygen+-t+ed25519+-o+-a+100)

```
ssh-keygen -t ed25519
ssh-keygen -t ed25519 -a 121
```

Your key pairs will be located under `~/.ssh/` and follow the following format -- the `.pub` extension indicated the **public** key part and is the **ONLY one SAFE to distribute**:
Expand Down
17 changes: 6 additions & 11 deletions docs/policies/passwords.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,20 @@ Passwords must be changed as soon as possible after exposure or suspected compro

### Password Manager

You are **strongly** encouraged also to rely on password manager applications to store your different passwords.
You may want to use your browser embedded solution but it's not the safest option.
You are **strongly** encouraged also to rely on password manager applications to store your different passwords. You may want to use your browser embedded solution but it's not the safest option.

There are many existing password manager, but we can recommend:
There are many password manager, but we can recommend the following.

* [KeepassXC](https://keepassxc.org/download/), see the related [ISO Knowledge Base entry](https://service.uni.lu/sp?id=kb_article_view&sys_kb_id=d9de344e939cb6101adb72718bba10e7&table=kb_knowledge&searchTerm=keepassxc)
* [`pass`: the Standard Unix Password Manager](https://www.passwordstore.org/)
- [KeepassXC](https://keepassxc.org/download/), see the related [ISO Knowledge Base entry](https://service.uni.lu/sp?id=kb_article_view&sys_kb_id=d9de344e939cb6101adb72718bba10e7&table=kb_knowledge&searchTerm=keepassxc).
- [`pass`](https://www.passwordstore.org/): the Standard Unix Password Manager.

### Login Failures

Your login privileges will be disabled if you have several login failures while entering your password on a ULHPC resource.
You do not need a new password in this situation.
The login failures will be automatically cleared after a couple of minutes.
No additional actions are necessary.
Your login privileges will be disabled if you have several login failures while entering your password on a ULHPC resource. You do not need a new password in this situation. The login failures will be automatically cleared after a couple of minutes. No additional actions are necessary.

### Forgotten Passwords

If you forget your password or if it has recently expired, please use the [Identity Management Portal](../connect/idm.md) and click "Forgot Password?".
You can also choose to login to the IdM portal using your University account.
If you forget your password or if it has recently expired, please use the [Identity Management Portal](../connect/idm.md) and click "Forgot Password?". You can also choose to login to the IdM portal using your University account.

## How To Change Your Password

Expand Down
2 changes: 0 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,6 @@ extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/ULHPC
- icon: fontawesome/brands/twitter
link: https://twitter.com/ULHPC

# Extra stylesheets (incl. Twitter Bootstrap)
extra_css:
Expand Down
Loading