Total de visualizações de página

segunda-feira, 25 de abril de 2016

Samba AD DC : Basic User Management


Samba AD DC : Basic User Management
2015/02/18
 
This is the basic user management for Samba4 Active Directory Domain Controller.
[1]Display domain users list.
[root@smb ~]# 
samba-tool user list 

Administrator
krbtgt
redhat
Guest
cent
[2]Add a domain user.
[root@smb ~]# 
samba-tool user add cent 

New Password:
# set password

Retype Password:
User 'cent' created successfully
# see many other options with "samba-tool user add --help"
[3]Delete a domain user.
[root@smb ~]# 
samba-tool user delete cent 

Deleted user cent
[4]Reset password for a user.
[root@smb ~]# 
samba-tool user setpassword cent 

New Password:
Changed password OK
[5]Set expiry for a user.
[root@smb ~]# 
samba-tool user setexpiry cent --days=7 

Expiry for user 'cent' set to 7 days.
[6]Disable/Enable user account.
[root@smb ~]# 
samba-tool user disable cent
[root@smb ~]# 
samba-tool user enable cent 

Enabled user 'cent'
[7]Display domain groups list.
[root@smb ~]# 
samba-tool group list 

Allowed RODC Password Replication Group
Enterprise Read-Only Domain Controllers
Denied RODC Password Replication Group
...
...
DnsAdmins
Guests
Users
[8]Display members in a group.
[root@smb ~]# 
samba-tool group listmembers "Domain Users" 

redhat
Administrator
krbtgt
cent
[9]Add a domain group.
[root@smb ~]# 
samba-tool group add ServerWorld 

Added group ServerWorld
# see many other options with "samba-tool group add --help"
[10]Delete a domain group.
[root@smb ~]# 
samba-tool group delete ServerWorld 

Deleted group ServerWorld
[11]Add/remove a member from a domain group.
[root@smb ~]# 
samba-tool group addmembers ServerWorld cent 

Added members to group ServerWorld
[root@smb ~]# 
samba-tool group removemembers ServerWorld cent 

Removed members from group ServerWorld

Nenhum comentário:

Postar um comentário