Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docs.it4i.cz
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SCS
docs.it4i.cz
Merge requests
!318
The source project of this merge request has been removed.
Update nfs4-file-acl.md
Merged
Update nfs4-file-acl.md
(removed):dvo0012-extended-acls-patch-92223
into
extended-acls
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Ondrej Dvorak
requested to merge
(removed):dvo0012-extended-acls-patch-92223
into
extended-acls
4 years ago
Overview
0
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
extended-acls
extended-acls (base)
and
latest version
latest version
333d4b13
1 commit,
4 years ago
1 file
+
57
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docs.it4i/storage/nfs4-file-acl.md
+
57
−
2
Options
# NFSv4 File ACL
NFSv4 ACL
==================
at the first - knowledge of ACL is necessary
## Example
ACL - access control list
ACE - access control entry
An NFSv4 ACL consists of one or more NFSv4 ACEs, each delimited by commas or whitespace.
An NFSv4 ACE is written as a colon-delimited, 4-field string in the following format:
<type>:<flags>:<principal>:<permissions>
[root@login2.salomon proj1]# nfs4_getfacl open-20-11
# file: open-20-11
A::OWNER@:rwaDxtTcCy
A::GROUP@:rxtcy
A:g:open-20-11@it4i.cz:rwaDxtcy
A::EVERYONE@:tcy
A:fdi:OWNER@:rwaDxtTcCy
A:fdi:GROUP@:rxtcy
A:fdig:open-20-11@it4i.cz:rwaDxtcy
A:fdi:EVERYONE@:tcy
*
<type>
- one of:
'A' allow
'D' deny
'U' audit
'L' alarm
* <flags> - zero or more (depending on <type>) of:
'f' file-inherit
'd' directory-inherit
'p' no-propagate-inherit
'i' inherit-only
'S' successful-access
'F' failed-access
'g' group (denotes that <principal> is a group)
* <principal> - named user or group, or one of: "OWNER@", "GROUP@", "EVERYONE@"
* <permissions> - one or more of:
'r' read-data / list-directory
'w' write-data / create-file
'a' append-data / create-subdirectory
'x' execute
'd' delete
'D' delete-child (directories only)
't' read-attrs
'T' write-attrs
'n' read-named-attrs
'N' write-named-attrs
'c' read-ACL
'C' write-ACL
'o' write-owner
'y' synchronize
Loading