
OpenSSH has two directives for allowing and denying ssh user access.
DenyUsers user1 user2 user3
Use to block user login. You can use wild cards as well as user1@somedomain.com (user1 is not allowed to login from somedomain.com host) pattern.
DenyGroups group1 group2
A list of group names, if user is part of primary of supplementary group login access is denied. You can use wildcards.
Please note that you cannot use a numeric group or username ID. If these directives are not used, default is to allow everyone.
AllowUsers user1 user2
This directive is opposite of DenyUsers directive.
AllowGroups group1 group2
This directive is opposite of DenyGroups directive.
You should always block access to root user/group:
Open /etc/ssh/sshd_config file:
# vi /etc/ssh/sshd_config
Append following names (directives):
DenyUsers root finadmin
DenyGroups root finadmin
Make sure at least one user is allowed to use 'su -' command.
Save the file and restart the sshd.
This is a secure setup and you are restricting the users allowed to access the system via SSH with four above directives.
Please note that if you want to deny or allow access to large number of users consider SSH PAM configuration (ideal for ISPs and Web hosting service providers). PAM allows you to store usernames using text files (you do not have to mess up with ssh configuration file).
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email this to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: Nov/2/2006


{ 19 comments… read them below or add one }
i disagree with blocking root entirely.
i like to use ssh public+private keys for root access, giving each root user their own key and password, and thus avoiding the hassle of a shared password. shared passwords are a great security risk, and hard to change, as you need to get all root users together when the password is to be changed.
unfortunately, i have not yet figured out how to restrict root to only be able to use ssh from localhost (other than using a seperate process)
eMBee,
Root is not allowed to login ssh. However, user embee can login and run su – to become a superuser. This way root is blocked over network login but normal sys admin can login over ssh account can become a super user on demand.
restrict root to only be able to use ssh from localhost
Try out following entry:
AllowUsers root@localhost
If the pattern takes the form USER@HOST then USER and HOST are separately checked, restricting logins to particular users from particular hosts.
I hope this helps.
How about if let said you want to do rsync? Shall you use username: root? beside root, how can I rsync so many folder with different permission.
using su forces the use of a shared password, which is what i want to avoid.
AllowUsers says in the documentation:
“If specified, login is allowed only for user names that match one of the patterns.”
that means ALL OTHER users will be blocked, which is not desired either. i need something that allows me to say: allow any users except root from anywhere, and root only from localhost.
there may be a way to combine AllowUsers and AllowGroups, but the docs say nothing about how those two would interact.
Planet Malaysia: for rsync you would want to allow root specificly for the host that you are synchronizing with.
Hmm…
Have you evaluated or considered sudo option? I use sudo extensively here. Although it is not 100% perfect but better than sharing root password. It also log down all failed (or command access) messages. Sudo is your best option, IMPO.
Let me know if you are aware of any other tools or methods….
Planet Malaysia, follow emBee\’s suggestion or add user to group grant necessary file level permissions
You need to configure PAM login access control tables. These tables will give you desired effect i.e. allow any users except root from anywhere, and root only from localhost (just like iptables).
There is also a iptables module which attempts to match various characteristics of the packet creator (both INPUT and OUTPUT chain) but it is badly broken and it may not work on SMP system at all.
I will post more info about login access control tables soon. See URL: http://www.cyberciti.biz/tips/openssh-root-user-account-restriction-revisited.html
i did a few quick tests on the interaction of AllowUsers and AllowGroups and it seems that they can’t really be used together. when i set:
AllowUsers: root@localhost
AllowGroups: users
the result was that noone could login, even adding root to the group users didn’t help.
LinuxTitli: using the users password for root access is not really good either. if some users account is compromized (because someone managed to get at the users password), then root is automaticly compromized as well.
i look forward to try the suggestions in nixcrafts new article soon.
Dear all,
how can i restrict a user to view others folder except his own folder after login?
thanks
steve
/etc/ssh/sshd_config
PermitRootLogon no
Above denies root to login remotely but is able to login locally on the console.
Use sudo to give access to sys admins.
OS: uBuntu 7.10
I tried adding AllowUsers and restarting the sshd server but it still allows other users to ssh.
It does not restrict users too… I even tried DenyUsers nothing works…. Need help.
Thank you.
Regards,
Ram
Thank you very much!
Hi
Like eMBee, I am trying to deny root login from everywhere EXCEPT a specific host which is used to run automated remote tasks as root through ssh using keys.
I have tried combinations AllowUser, DenyUsers to no avail.
sshd_config takes preference over ssh_config so host definitions get overridden by the sshd_config entry “PermitRootLogin no”
Using PAM restrictions is not really an option as this is an AIX box.
Any idea as too how to achieve this would be greatly appreciated!
- Michael
eMBee / milegrin,
Your best option may well just be a seperate sshd process that listens on a different port, that only allows root access. I would combine that with iptables (or other firewall) to only accept incoming connections to your second sshd port from your known/allowed hosts. Then, just update your automated scrips to connect to your non-standard port. Not too bad, considering that once you get it set up, it should run forever. Any localhost root users should be smart enough to accomodate the non-standart port assignment.
Cheers,
LinuxLuser
For those of you who want to enable root access to multiple people then setup SUDO and give people sudo access via sudoers file. This way you can limit what each sudo user does.
sudo is already in place for standard OS & application admins. Direct root SSH is required for AIX’s CSM or “Cluster Server Manager” which essentially allows me to run a command fromt eh CSM server on all servers or a specific server and I use it extensively for various reporting scripts, security and other functions but it requires root ssh.
I have yet to find a decent working solution that does not rely on multiple instances or external dependencies (eg PAM) but I have it can be done however how is another animal completely.
Thanx again for the advice
Hi All
How can I limit the user one time ssh login in freebsd 7.2, I have added below entry in @username – maxlogins 1
This method works with ubuntu linux. Not in Freebsd,
Any idea for resolving