主頁(yè) > 知識(shí)庫(kù) > 詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置

詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置

熱門(mén)標(biāo)簽:江西全自動(dòng)外呼系統(tǒng)報(bào)價(jià) 梧州防封電銷(xiāo)卡 地圖標(biāo)注人員分布 益陽(yáng)400電話申請(qǐng)辦理流程 春運(yùn)地圖標(biāo)注app 昆明電銷(xiāo)機(jī)器人價(jià)格 怎么用百度地圖標(biāo)注坐標(biāo) 上海機(jī)器人外呼系統(tǒng)哪家好 400的電話一般從哪里辦理

詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置

1.sudo介紹

sudo是linux下常用的允許普通用戶(hù)使用超級(jí)用戶(hù)權(quán)限的工具,允許系統(tǒng)管理員讓普通用戶(hù)執(zhí)行一些或者全部的root命令,如halt,reboot,su等等。這樣不僅減少了root用戶(hù)的登陸 和管理時(shí)間,同樣也提高了安全性。Sudo不是對(duì)shell的一個(gè)代替,它是面向每個(gè)命令的。

它的特性主要有這樣幾點(diǎn):

  § sudo能夠限制用戶(hù)只在某臺(tái)主機(jī)上運(yùn)行某些命令。

  § sudo提供了豐富的日志,詳細(xì)地記錄了每個(gè)用戶(hù)干了什么。它能夠?qū)⑷罩緜鞯街行闹鳈C(jī)或者日志服務(wù)器。

  § sudo使用時(shí)間戳文件來(lái)執(zhí)行類(lèi)似的“檢票”系統(tǒng)。當(dāng)用戶(hù)調(diào)用sudo并且輸入它的密碼時(shí),用戶(hù)獲得了一張存活期為5分鐘的票(這個(gè)值可以在編譯的時(shí)候改變)。

  § sudo的配置文件是sudoers文件,它允許系統(tǒng)管理員集中的管理用戶(hù)的使用權(quán)限和使用的主機(jī)。它所存放的位置默認(rèn)是在/etc/sudoers,屬性必須為0411。

2.配置文件/etc/sudoers

它的主要配置文件是sudoers,linux下通常在/etc目錄下,如果是solaris,缺省不裝sudo的,編譯安裝后通常在安裝目錄的 etc目錄下,不過(guò)不管sudoers文件在哪兒,sudo都提供了一個(gè)編輯該文件的命令:visudo來(lái)對(duì)該文件進(jìn)行修改。強(qiáng)烈推薦使用該命令修改 sudoers,因?yàn)樗鼤?huì)幫你校驗(yàn)文件配置是否正確,如果不正確,在保存退出時(shí)就會(huì)提示你哪段配置出錯(cuò)的。

言歸正傳,下面介紹如何配置sudoers

首先寫(xiě)sudoers的缺省配置:

############################################################# 
# sudoers file. 
# 
# This file MUST be edited with the 'visudo' command as root. 
# 
# See the sudoers man page for the details on how to write a sudoers file. 
# 

# Host alias specification 

# User alias specification 

# Cmnd alias specification 

# Defaults specification 

# User privilege specification 
root  ALL=(ALL) ALL 

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

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

# Samples 
# %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom 
# %users localhost=/sbin/shutdown -h now 
################################################################## 

1. 最簡(jiǎn)單的配置,讓普通用戶(hù)support具有root的所有權(quán)限

執(zhí)行visudo之后,可以看見(jiàn)缺省只有一條配置:

root    ALL=(ALL) ALL

那么你就在下邊再加一條配置:

support ALL=(ALL) ALL

這樣,普通用戶(hù)support就能夠執(zhí)行root權(quán)限的所有命令

以support用戶(hù)登錄之后,執(zhí)行:

sudo su -

然后輸入support用戶(hù)自己的密碼,就可以切換成root用戶(hù)了

2. 讓普通用戶(hù)support只能在某幾臺(tái)服務(wù)器上,執(zhí)行root能執(zhí)行的某些命令

首先需要配置一些Alias,這樣在下面配置權(quán)限時(shí),會(huì)方便一些,不用寫(xiě)大段大段的配置。Alias主要分成4種

Host_Alias 
Cmnd_Alias 
User_Alias 
Runas_Alias 

1) 配置Host_Alias:就是主機(jī)的列表

Host_Alias      HOST_FLAG = hostname1, hostname2, hostname3

2) 配置Cmnd_Alias:就是允許執(zhí)行的命令的列表

Cmnd_Alias      COMMAND_FLAG = command1, command2, command3

3) 配置User_Alias:就是具有sudo權(quán)限的用戶(hù)的列表

User_Alias USER_FLAG = user1, user2, user3

4) 配置Runas_Alias:就是用戶(hù)以什么身份執(zhí)行(例如root,或者oracle)的列表

Runas_Alias RUNAS_FLAG = operator1, operator2, operator3

5) 配置權(quán)限

配置權(quán)限的格式如下:

USER_FLAG HOST_FLAG=(RUNAS_FLAG) COMMAND_FLAG

如果不需要密碼驗(yàn)證的話,則按照這樣的格式來(lái)配置

USER_FLAG HOST_FLAG=(RUNAS_FLAG) NOPASSWD: COMMAND_FLAG

配置示例:

############################################################################
# sudoers file. 
# 
# This file MUST be edited with the 'visudo' command as root. 
# 
# See the sudoers man page for the details on how to write a sudoers file. 
# 

# Host alias specification 
Host_Alias   EPG = 192.168.1.1, 192.168.1.2 

# User alias specification 

# Cmnd alias specification 
Cmnd_Alias   SQUID = /opt/vtbin/squid_refresh, /sbin/service, /bin/rm 

# Defaults specification 

# User privilege specification 
root  ALL=(ALL) ALL 
support EPG=(ALL) NOPASSWD: SQUID 

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

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

# Samples 
# %users ALL=/sbin/mount /cdrom,/sbin/umount /cdrom 
# %users localhost=/sbin/shutdown -h now 
##################################################

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

您可能感興趣的文章:
  • Linux曝出Sudo提權(quán)漏洞 任意用戶(hù)亦可運(yùn)行root命令
  • Linux 中不輸入密碼運(yùn)行 sudo 命令的方法
  • Linux使用Sudo委派權(quán)限
  • Linux中sudo、su和su -命令的區(qū)別小結(jié)
  • Linux系統(tǒng)中sudo命令的十個(gè)技巧總結(jié)
  • Linux下普通用戶(hù)用sudo su給自己加root權(quán)限的方法
  • linux系統(tǒng)sudo命令詳解
  • 如何在Linux環(huán)境為用戶(hù)添加sudo權(quán)限

標(biāo)簽:懷化 新疆 贛州 亳州 九江 河南 北京 惠州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置》,本文關(guān)鍵詞  詳解,Linux,下的,sudo,及其,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于詳解Linux下的sudo及其配置文件/etc/sudoers的詳細(xì)配置的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章