OpenSSH deny or restrict access to users and groups

by LinuxTitli · 19 comments

Open SSH Logo

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:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 19 comments… read them below or add one }

1 eMBee 08.01.06 at 11:09 pm

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)

2 LinuxTitli 08.01.06 at 11:50 pm

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.

3 Planet Malaysia 08.02.06 at 6:48 am

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.

4 eMBee 08.02.06 at 1:36 pm

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.

5 eMBee 08.02.06 at 1:38 pm

Planet Malaysia: for rsync you would want to allow root specificly for the host that you are synchronizing with.

6 LinuxTitli 08.02.06 at 2:56 pm

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….

7 LinuxTitli 08.02.06 at 2:58 pm

Planet Malaysia, follow emBee\’s suggestion or add user to group grant necessary file level permissions

8 nixcraft 08.02.06 at 3:04 pm

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

9 eMBee 08.02.06 at 11:48 pm

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.

10 eMBee 08.03.06 at 12:03 am

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.

11 steve 07.20.07 at 6:42 am

Dear all,

how can i restrict a user to view others folder except his own folder after login?

thanks

steve

12 sobas 09.17.07 at 7:23 am

/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.

13 ramsam 07.16.08 at 4:45 pm

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

14 jose antonio 11.16.08 at 12:05 am

Thank you very much!

15 milegrin 08.14.09 at 8:34 am

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

16 LinuxLuser 08.27.09 at 4:24 am

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

17 Daniel Reinhardt 12.01.09 at 12:42 pm

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.

18 milegrin 12.01.09 at 9:16 pm

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

19 sahab 12.30.09 at 5:22 pm

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

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post:

Next post: