Advertisement
Guest User

etc exports

a guest
Oct 20th, 2013
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.95 KB | None | 0 0
  1. # /etc/exports
  2. #
  3. # List of directories exported to NFS clients.  See exports(5).
  4. # Use exportfs -arv to reread.
  5. #
  6. # Example for NFSv2 and NFSv3:
  7. #  /srv/home       hostname1(rw,sync) hostname2(ro,sync)
  8. #
  9. # Example for NFSv4:
  10. #  /srv/nfs4       hostname1(rw,sync,fsid=0)
  11. #  /srv/nfs4/home   hostname1(rw,sync,nohide)
  12. # Using Kerberos and integrity checking:
  13. #  /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt)
  14. #  /srv/nfs4/home   gss/krb5i(rw,sync,nohide)
  15. #
  16. / 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  17.  
  18. /proc 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  19. /sys 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  20. /dev 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  21. /run 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  22. /sys/kernel/security 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  23. /dev/shm 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  24. /dev/pts 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  25. /sys/fs/cgroup 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  26. /sys/fs/cgroup/systemd 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  27. /sys/fs/pstore 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  28. /sys/fs/cgroup/cpuset 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  29. /sys/fs/cgroup/cpu,cpuacct 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  30. /sys/fs/cgroup/memory 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  31. /sys/fs/cgroup/devices 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  32. /sys/fs/cgroup/freezer 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  33. /sys/fs/cgroup/net_cls 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  34. /sys/fs/cgroup/blkio 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  35. /proc/sys/fs/binfmt_misc 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  36. /sys/kernel/debug 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  37. /dev/hugepages 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  38. /dev/mqueue 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  39. /tmp 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  40. /var/lib/nfs/rpc_pipefs 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  41. /sys/kernel/config 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  42. /home 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  43. /boot 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  44. /proc/fs/nfsd 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  45. /media/ubuntu 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  46. /media/gentoo 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  47. /sys/fs/fuse/connections 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  48. /media/ppc 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
  49. /media/collections 192.168.1.33(sync,no_root_squash,no_subtree_check,rw,nohide)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement