Table of Contents

What is Sudo? (Switch User and do)

About

sudo is an command utility that:

In other words, it executes a command as another user. (ie it's a proxy authentication utility)

Authorization

It determines who is an authorized user by consulting the sudoers configuration files

Example

sudo -E -i -H -u UserOtherThanRoot

where:

Configuration Files

sudoers syntax

The sudoers file is composed of two types of entries:

When multiple entries match for a user, they are applied in order

sudoers

Alias

aliases are basically variables that can be user in the user_specification

User_Alias
User_Alias ADMINS = jsmith, mikem
User_Alias WEBMASTERS = will, wendy, wim
RunAsAlias

Runas_Alias - determines the user and/or the group that a command may be run as.

Runas_Alias DB = oracle, sybase
Runas_Alias ADMINGRP = adm, oper

Example with a user_specification

dgb boulder = (ADMINGRP) /bin/ls, (root) /bin/kill, /usr/bin/lprm

The user dgb may run on the host boulder:

ie

sudo -u oper /bin/ls
sudo -u adm /bin/ls
sudo /bin/kill
Host Alias
Host_Alias SERVERS = master, mail, www, ns
Command alias

Cmnd_Alias: A command alias defines one or more glob expressions that need to match the command entered to allow it to run.

The alis name must be in uppercase

Example:

Cmnd_Alias KILL = /usr/bin/kill*
Cmnd_Alias SHELLS = /usr/bin/sh, /usr/bin/csh, /usr/bin/ksh,\

User specification

User specifications specify who may run what.

Syntax:

user	MACHINE=COMMANDS

user MACHINE=(AS) TAGS COMMAND

More specifically in regular expression EBNF (see the sudoers and search for the section User specification)

Example:

%wheel	ALL=(ALL) NOPASSWD: ALL

every user in the group wheel may run:

sudoers files

/etc/sudoers

The default security policy is sudoers, which is configured via the file /etc/sudoers, or via LDAP.

Open the sudoers file

sudo visudo

/etc/sudoers.d/

The last line of the /etc/sudoers files include others configuration that can be added in the directory /etc/sudoers.d/

The last line is not a comment. A comment in the sudoers file as a space after the hash tag

## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)
#includedir /etc/sudoers.d

Example in Azure they will add the file waagent

sshuser ALL=(ALL) NOPASSWD: ALL

/etc/sudo.conf

The sudo configuration is in the file /etc/sudo.conf

sudo.conf

Management

Language of the configuration file

wheel / sudo admin group

If the wheel line is uncommented, you got an admin group.

## Allows people in group wheel to run all commands
%wheel	ALL=(ALL) ALL

Any user in the group wheel can run any command on any host as any user.

Example:

cat /etc/group | grep wheel
wheel:x:27:testuser,sshuser

Allow a user to run a command

In a sudoers file add the following rules:

userName ALL=(ALL) NOPASSWD: /full/path/to/command
# or with the alias command named ALIAS_CMD
userName ALL=(ALL) NOPASSWD: ALIAS_CMD
# or
userName ALL=(ALL) NOPASSWD: /full/path/to/command ARG1 ARG2

Example allow the powercenter user to start and stop its services

powercenter  ALL=(ALL) NOPASSWD: /sbin/service infa start
powercenter  ALL=(ALL) NOPASSWD: /sbin/service infa stop

Disable password prompt

Disable password prompt for all command.

sudo visudo
<username> ALL=NOPASSWD: ALL

Test if allowed

run sudo with the -l or -v flags

Example with the su command

sudo -l su
[sudo] password for gerard:
/bin/su

If a user who is not listed in the sudoers file tries to run a command via sudo without the -l or -v flags, mail is sent to the proper authorities, as defined at configure time or the sudoers file (defaults to root).

Documentation / Reference