Linux sudo用法与配置

Linux环境:CentOS 6.7linux

结构说明

能够经过编辑文件/etc/sudoers来配置,一般使用visudo命令来进行修改,由于若是你修改的格式不符合它会进行提示。接下来就经过一个格式来了解它app

<user> <host> = [<operator user> [<par>]] <command list>
chenmh localhost = (root)    NOPASSWD: /bin/mkdir test

<user>:指的是具体的用户或者用户别名,若是使用%user指的是用户组。dom

<host>:指的是具体的host(能够是机器名也能够是ip)或者是host别名,ALL表明全部的host。ssh

<operator user>:可选,指定能够用调用哪一个用户的来执行,ALL表明调用root用户来执行。这里要说明一下root用户的权限表明什么意思,好比一个目录的全部者是root,那么必须具有root用户的权限才能执行相关操做,好比上面的chenmh用户若是它配置的是其它用户好比它本身,那么它在root全部者的目录下面是没权限执行操做的。一样若是这里配置的是哪一个用户那么好比mkdir建立的文件夹就的全部者就是哪一个用户。默认不指定表明使用ALLide

<par>:可选,指定参数,一般使用NOPASSWD(表明该用户在执行sudo的时候不须要再输入本身的密码)。ui

<command list>:指定的具体命令或者是命令别名或者是ALL,ALL表明全部权限。this

说明: [<operator user> [<par>]]这两个选项是能够选的能够不指定,若是不指定默认是调用root用户执行,可是使用sudo必须输入用户本身的密码rest

配置文件

接下来详细来看看它的配置文件,它的配置文件以及很详细的告诉了咱们该怎样使用,在前面一部分是示例怎样将一组权限建立组别名,注意别名须要大写,code

## Sudoers allows particular users to run various commands as
## the root user, without needing the root password.
##
## Examples are provided at the bottom of the file for collections
## of related commands, which can then be delegated out to particular
## users or groups.
## 
## This file must be edited with the 'visudo' command.
##能够将多个host配置成一个host别名
## Host Aliases 
## Groups of machines. You may prefer to use hostnames (perhaps using 
## wildcards for entire domains) or IP addresses instead.
Host_Alias     FILESERVERS = 192.168.137.40,192.168.137.30
# Host_Alias     MAILSERVERS = smtp, smtp2
##将多个user配置成一个user别名
## User Aliases
## These aren't often necessary, as you can use regular groups
## (ie, from files, LDAP, NIS, etc) in this file - just use %groupname 
## rather than USERALIAS
User_Alias ADMINS = chenmh

###接下来是命令别名,就是将一组命令放在一块儿,这样能够简便配置
## Command Aliases
## These are groups of related commands...

## Networking
# Cmnd_Alias NETWORKING = /sbin/route, /sbin/ifconfig, /bin/ping, /sbin/dhclient, /usr/bin/net, /sbin/iptables, /usr/bin/rfcomm, /usr/bin/wvdial, /sbin/iwconfig, /sbin/mii-tool

## Installation and management of software
# Cmnd_Alias SOFTWARE = /bin/rpm, /usr/bin/up2date, /usr/bin/yum

## Services
# Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig

## Updating the locate database
# Cmnd_Alias LOCATE = /usr/bin/updatedb

## Storage
# Cmnd_Alias STORAGE = /sbin/fdisk, /sbin/sfdisk, /sbin/parted, /sbin/partprobe, /bin/mount, /bin/umount

## Delegating permissions
# Cmnd_Alias DELEGATING = /usr/sbin/visudo, /bin/chown, /bin/chmod, /bin/chgrp 

## Processes
# Cmnd_Alias PROCESSES = /bin/nice, /bin/kill, /usr/bin/kill, /usr/bin/killall

## Drivers
# Cmnd_Alias DRIVERS = /sbin/modprobe
###这个是我本身配置的命令别名,将mkdir和rm命令配置在一块儿分配给某个用户
##userdefin
Cmnd_Alias OTHERS = /bin/mkdir, /bin/rm

# Defaults specification

#
# Disable "ssh hostname sudo <cmd>", because it will show the password in clear. 
#         You have to run "ssh -t hostname sudo <cmd>".
#
Defaults    requiretty

#
# Refuse to run if unable to disable echo on the tty. This setting should also be
# changed in order to be able to use sudo without a tty. See requiretty above.
#
Defaults   !visiblepw

#
# Preserving HOME has security implications since many programs
# use it when searching for configuration files. Note that HOME
# is already set when the the env_reset option is enabled, so
# this option is only effective for configurations where either
# env_reset is disabled or HOME is present in the env_keep list.
#
Defaults    always_set_home

Defaults    env_reset
Defaults    env_keep =  "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS"
Defaults    env_keep += "MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE"
Defaults    env_keep += "LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES"
Defaults    env_keep += "LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE"
Defaults    env_keep += "LC_TIME LC_ALL LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY"

#
# Adding HOME to env_keep may enable a user to run unrestricted
# commands via sudo.
#
# Defaults   env_keep += "HOME"

Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin

## Next comes the main part: which users can run what software on 
## which machines (the sudoers file can be shared between multiple
## systems).
## Syntax:
##
##      user    MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere 
root    ALL=(ALL)       ALL

## Allows members of the 'sys' group to run networking, software, 
## service management apps and more.
# %sys ALL = NETWORKING, SOFTWARE, SERVICES, STORAGE, DELEGATING, PROCESSES, LOCATE, DRIVERS
###sys这个组中的用户能够执行相关的命令组的权限,多个命令组用逗号分隔
## Allows people in group wheel to run all commands
# %wheel        ALL=(ALL)       ALL

## Same thing without a password
# %wheel        ALL=(ALL)       NOPASSWD: ALL

## Allows members of the users group to mount and unmount the 
## cdrom as root
# %users  ALL=/sbin/mount /mnt/cdrom, /sbin/umount /mnt/cdrom
###users组的用户能够执行挂载和卸载/mnt/cdrom目录的权限
## Allows members of the users group to shutdown this system
# %users  localhost=/sbin/shutdown -h now
###users组的用户能够执行关机命令
## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)
#includedir /etc/sudoers.d 

案例

1.用户别名组中的用户能够在FILESERVERS这组host里面调用root用户执行OTHERS命令组的权限,多个命令组用逗号分隔ip

ADMINS  FILESERVERS=(ALL)    NOPASSWD:OTHERS

2.用户chenmh这个用户能够在本机以调用root用户来执行全部的命令

chenmh localhost=(root) NOPASSWORD:ALL

3.用户chenmh能够调用root用户建立目录test,也只能建立test目录

chenmh ALL=(ALL)    NOPASSWD: /bin/mkdir test

4.dev组的用户能够执行关机shutdown命令

%dev ALL=(ALL)    NOPASSWD:/sbin/shutdown

5.chenmh的用户sudo免密登陆使用(经常使用)

chenmh      ALL=(ALL)       NOPASSWD:ALL


快捷操做 

 1.查看当前用户具有的sudo权限

sudo -l
User chenmh may run the following commands on this host:
    (root) NOPASSWD: /bin/mkdir, /bin/rm

总结

配置sudo记得使用visudo命令,若是配置错误了保存的时候它会有提示。

相关文章
相关标签/搜索