| Summary: | Add separate section in sshd_config man page on Access Control | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Stephen Satchell <spamfilter> |
| Component: | Documentation | Assignee: | Assigned to nobody <unassigned-bugs> |
| Status: | NEW --- | ||
| Severity: | enhancement | CC: | spamfilter |
| Priority: | P5 | ||
| Version: | 8.3p1 | ||
| Hardware: | Other | ||
| OS: | Linux | ||
|
Description
Stephen Satchell
2020-07-19 01:26:29 AEST
I've added a bit to my new server using Open SSH. This is specific to a server, not a general access system To summarize: # Boilerplate PermitRootLogin no PermitEmptyPasswords no IgnoreRhosts yes DenyUsers root # Add DenyUsers for all "role" accounts DenyUsers nobody # Set up mostly-closed security model DenyUsers @* # Allow specific user from internal network AllowUsers user@10.1.1.* # Allow specific user from outside IP address AllowUsers user@1.2.3.4 AllowUsers user@5.6.7.8 AllowUsers user@9.10.11.12 Again, permission to use is given to anyone. |