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;








2















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?










share|improve this question




























    2















    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?










    share|improve this question
























      2












      2








      2








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 2 '12 at 17:19









      saldermansalderman

      112 bronze badges




      112 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer

























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 2 '12 at 20:24









                saldermansalderman

                112 bronze badges




                112 bronze badges



























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos