-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# smbcacls | ||
|
||
> Visualiza y manipula ACLs de Windows en recursos compartidos SMB. | ||
> Parte de la suite Samba. | ||
> Más información: <https://www.samba.org/samba/docs/current/man-html/smbcacls.1.html>. | ||
- Muestra las ACL de un archivo o directorio en un recurso compartido SMB remoto: | ||
|
||
`smbcacls //{{servidor}}/{{compartido}} {{ruta/al/archivo_o_directorio}} --user {{dominio\\nombre_usuario}}%{{contraseña}}` | ||
|
||
- Establece una nueva ACL para un archivo en un recurso compartido SMB remoto (reemplaza `"ACL:..."` con una especificación ACL válida de Windows): | ||
|
||
`smbcacls //{{servidor}}/{{compartir}} {{ruta/al/archivo}} --user {{dominio\\nombre_usuario}}%{{contraseña}} "ACL:{{DACL}}"` | ||
|
||
- Elimina todas las entradas ACL existentes y establece una nueva ACL: | ||
|
||
`smbcacls //{servidor}}/{compartir}} {{ruta/al/archivo}} --user {{dominio\\nombre_usuario}}%{{contraseña}} "RESET" “ACL:{{DACL}}”` | ||
|
||
- Especifica un grupo de trabajo (o dominio) alternativo y hace que el programa solicite una contraseña de forma interactiva: | ||
|
||
`smbcacls //{{servidor}}/{{compartir}} {{ruta/al/archivo}} --user {{nombre_usuario}} --workgroup {{grupo_de_trabajo}}` |