How can overlapping NFS permissions be configured?How to start Cygwin's NFS server in read-write mode?Solaris NFS: user permissionsUnmount NFS serverMount to NFS export of autofs mount shows empty contentsUbuntu client can't mount Nexenta NFSFedora nfs mount disappearsNFS default to 777Can NFS server limit the amount of disk space that the NFS client can use?Mounting submounts of an NFS mount on Fedora 21 vs CentOS 7NFS mount Permission denied
How hard is it to sell a home which is currently mortgaged?
Why isn’t the tax system continuous rather than bracketed?
Bash echo $-1 prints hb1. Why?
Zombie Diet, why humans
How can I check type T is among parameter pack Ts... in C++?
Why is a blank required between "[[" and "-e xxx" in ksh?
What is the best delay to use between characters sent to the serial port
Prof. Roman emails his Class this unusual Math Quiz ahead of
Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?
How to determine what is the correct level of detail when modelling?
What is the line crossing the Pacific Ocean that is shown on maps?
Was touching your nose a greeting in second millenium Mesopotamia?
Can a US president have someone sent to prison?
Can gpxpy write .gpx file?
Is there any set of 2-6 notes that doesn't have a chord name?
How can I create ribbons like these in Microsoft word 2010?
Should I tell my insurance company I have an unsecured loan for my new car?
Are there any vegetarian astronauts?
A player is constantly pestering me about rules, what do I do as a DM?
Do 3D printers really reach 50 micron (0.050mm) accuracy?
Is there a short way to check uniqueness of values without using 'if' and multiple 'and's?
C-152 carb heat on before landing in hot weather?
How to convert object fill in to fine lines?
Forgot chonantanu after already making havdalah over wine
How can overlapping NFS permissions be configured?
How to start Cygwin's NFS server in read-write mode?Solaris NFS: user permissionsUnmount NFS serverMount to NFS export of autofs mount shows empty contentsUbuntu client can't mount Nexenta NFSFedora nfs mount disappearsNFS default to 777Can NFS server limit the amount of disk space that the NFS client can use?Mounting submounts of an NFS mount on Fedora 21 vs CentOS 7NFS mount Permission denied
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am running Solaris 10 on my NFS server. I am struggling with how to setup read-only access to a share from a subnet, but allow read-write access from a system within that subnet.
On the Server:
root@server># share -F nfs -o log,root=192.168.10.10,rw=192.168.10.10,ro=@192.168.1/24 /export/plaground
The read-write client is able to mount the share, but is not able to write, either as root or a standard user with permissions to the share...
root@client># mount server:/export/playground /mnt
root@client># mount
<snip>
server:/export/playground on /mnt type nfs (rw,addr=192.168.168.5)
root@client># ls -axl /mnt
total 90
drwxr-xr-x+ 25 root root 25 Nov 2 11:45 .
drwxr-xr-x 22 root root 4096 Nov 2 11:28 ..
drwxrwxr-x 2 root users 2 Nov 2 11:45 test
root@client># touch /mnt/file.test
touch: cannot touch `/mnt/file.test': Read-only file system
root@client># exit
user@client>$ touch /mnt/test/file.test
touch: cannot touch `/mnt/test/file.test': Read-only file system
I have attempted to adjust the order of the options, but to no success. Putting the read-only option prior to the read-write option does nothing to change the status of the mount.
Any thoughts?
permissions solaris nfs
add a comment |
I am running Solaris 10 on my NFS server. I am struggling with how to setup read-only access to a share from a subnet, but allow read-write access from a system within that subnet.
On the Server:
root@server># share -F nfs -o log,root=192.168.10.10,rw=192.168.10.10,ro=@192.168.1/24 /export/plaground
The read-write client is able to mount the share, but is not able to write, either as root or a standard user with permissions to the share...
root@client># mount server:/export/playground /mnt
root@client># mount
<snip>
server:/export/playground on /mnt type nfs (rw,addr=192.168.168.5)
root@client># ls -axl /mnt
total 90
drwxr-xr-x+ 25 root root 25 Nov 2 11:45 .
drwxr-xr-x 22 root root 4096 Nov 2 11:28 ..
drwxrwxr-x 2 root users 2 Nov 2 11:45 test
root@client># touch /mnt/file.test
touch: cannot touch `/mnt/file.test': Read-only file system
root@client># exit
user@client>$ touch /mnt/test/file.test
touch: cannot touch `/mnt/test/file.test': Read-only file system
I have attempted to adjust the order of the options, but to no success. Putting the read-only option prior to the read-write option does nothing to change the status of the mount.
Any thoughts?
permissions solaris nfs
add a comment |
I am running Solaris 10 on my NFS server. I am struggling with how to setup read-only access to a share from a subnet, but allow read-write access from a system within that subnet.
On the Server:
root@server># share -F nfs -o log,root=192.168.10.10,rw=192.168.10.10,ro=@192.168.1/24 /export/plaground
The read-write client is able to mount the share, but is not able to write, either as root or a standard user with permissions to the share...
root@client># mount server:/export/playground /mnt
root@client># mount
<snip>
server:/export/playground on /mnt type nfs (rw,addr=192.168.168.5)
root@client># ls -axl /mnt
total 90
drwxr-xr-x+ 25 root root 25 Nov 2 11:45 .
drwxr-xr-x 22 root root 4096 Nov 2 11:28 ..
drwxrwxr-x 2 root users 2 Nov 2 11:45 test
root@client># touch /mnt/file.test
touch: cannot touch `/mnt/file.test': Read-only file system
root@client># exit
user@client>$ touch /mnt/test/file.test
touch: cannot touch `/mnt/test/file.test': Read-only file system
I have attempted to adjust the order of the options, but to no success. Putting the read-only option prior to the read-write option does nothing to change the status of the mount.
Any thoughts?
permissions solaris nfs
I am running Solaris 10 on my NFS server. I am struggling with how to setup read-only access to a share from a subnet, but allow read-write access from a system within that subnet.
On the Server:
root@server># share -F nfs -o log,root=192.168.10.10,rw=192.168.10.10,ro=@192.168.1/24 /export/plaground
The read-write client is able to mount the share, but is not able to write, either as root or a standard user with permissions to the share...
root@client># mount server:/export/playground /mnt
root@client># mount
<snip>
server:/export/playground on /mnt type nfs (rw,addr=192.168.168.5)
root@client># ls -axl /mnt
total 90
drwxr-xr-x+ 25 root root 25 Nov 2 11:45 .
drwxr-xr-x 22 root root 4096 Nov 2 11:28 ..
drwxrwxr-x 2 root users 2 Nov 2 11:45 test
root@client># touch /mnt/file.test
touch: cannot touch `/mnt/file.test': Read-only file system
root@client># exit
user@client>$ touch /mnt/test/file.test
touch: cannot touch `/mnt/test/file.test': Read-only file system
I have attempted to adjust the order of the options, but to no success. Putting the read-only option prior to the read-write option does nothing to change the status of the mount.
Any thoughts?
permissions solaris nfs
permissions solaris nfs
asked Nov 2 '12 at 17:19
saldermansalderman
112 bronze badges
112 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Answer...
root@server># share -F nfs -o log,root=@192.168.10.10/32,rw=@192.168.10.10/32,ro=@192.168.1/24 /export/playground
For single IP's you must do the @IP/32, for proper cidr notation.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f444856%2fhow-can-overlapping-nfs-permissions-be-configured%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Answer...
root@server># share -F nfs -o log,root=@192.168.10.10/32,rw=@192.168.10.10/32,ro=@192.168.1/24 /export/playground
For single IP's you must do the @IP/32, for proper cidr notation.
add a comment |
Answer...
root@server># share -F nfs -o log,root=@192.168.10.10/32,rw=@192.168.10.10/32,ro=@192.168.1/24 /export/playground
For single IP's you must do the @IP/32, for proper cidr notation.
add a comment |
Answer...
root@server># share -F nfs -o log,root=@192.168.10.10/32,rw=@192.168.10.10/32,ro=@192.168.1/24 /export/playground
For single IP's you must do the @IP/32, for proper cidr notation.
Answer...
root@server># share -F nfs -o log,root=@192.168.10.10/32,rw=@192.168.10.10/32,ro=@192.168.1/24 /export/playground
For single IP's you must do the @IP/32, for proper cidr notation.
answered Nov 2 '12 at 20:24
saldermansalderman
112 bronze badges
112 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f444856%2fhow-can-overlapping-nfs-permissions-be-configured%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown