Print this page
1586 mount_smbfs doesn't document noacl
Reviewed by: Jason King <jason.brian.king@gmail.com>
Reviewed by: C Fraire <cfraire@me.com>
Approved by: Richard Lowe <richlowe@richlowe.net>


  94                       /mnt.
  95 
  96 
  97        mount-point
  98 
  99            The path to the location where the file system is to be mounted or
 100            unmounted.  The mount command maintains a table of mounted file
 101            systems in the /etc/mnttab file. See the mnttab(4) man page.
 102 
 103 
 104 OPTIONS
 105        See the mount(1M) man page for the list of supported generic-options.
 106 
 107        -o name=value or
 108        -o name
 109 
 110            Sets the file system-specific properties. You can specify more than
 111            one name-value pair as a list of comma-separated pairs. No spaces
 112            are permitted in the list. The properties are as follows:
 113 














 114            dirperms=octaltriplet
 115 
 116                Specifies the permissions to be assigned to directories. The
 117                value must be specified as an octal triplet, such as 755. The
 118                default value for the directory mode is taken from the
 119                fileperms setting, with execute permission added where
 120                fileperms has read permission.
 121 
 122                Note that these permissions have no relation to the rights
 123                granted by the CIFS server.
 124 
 125 
 126            fileperms=octaltriplet
 127 
 128                Specifies the permissions to be assigned to files. The value
 129                must be specified as an octal triplet, such as 644. The default
 130                value is 700.
 131 
 132                Note that these permissions have no relation to the rights
 133                granted by the CIFS server.


 302        $HOME/.nsmbrc
 303 
 304            User-settable mount point configuration file to store the
 305            description for each connection.
 306 
 307 
 308 ATTRIBUTES
 309        See the attributes(5) man page for descriptions of the following
 310        attributes:
 311 
 312 
 313 
 314 
 315        +--------------------+-----------------+
 316        |  ATTRIBUTE TYPE    | ATTRIBUTE VALUE |
 317        +--------------------+-----------------+
 318        |Interface Stability | Committed       |
 319        +--------------------+-----------------+
 320 
 321 SEE ALSO
 322        smbutil(1), mount(1M), mountall(1M), svcadm(1M), acl(2), fcntl(2),
 323        link(2), mknod(2), mount(2), symlink(2), umount(2), mnttab(4),
 324        nsmbrc(4), vfstab(4), attributes(5), pcfs(7FS), smbfs(7FS)
 325 
 326 AUTHORS
 327        This manual page contains material originally authored by Boris Popov,
 328        bpATbutya.kz, bpATFreeBSD.org.
 329 
 330 NOTES
 331        The Solaris CIFS client always attempts to use gethostbyname() to
 332        resolve host names. If the host name cannot be resolved, the CIFS
 333        client uses NetBIOS name resolution (NBNS). By default, the Solaris
 334        CIFS client permits the use of NBNS to enable Solaris CIFS clients in
 335        Windows environments to work without additional configuration.
 336 
 337 
 338        Since NBNS has been exploited in the past, you might want to disable
 339        it. To disable NBNS, set the nbns-enabled service management facility
 340        property to false. By default, nbns-enabled is set to true.
 341 
 342 
 343        If the directory on which a file system is to be mounted is a symbolic
 344        link, the file system is mounted on the directory to which the symbolic
 345        link refers, rather than being mounted on top of the symbolic link
 346        itself.
 347 
 348 
 349 
 350                                 March 31, 2009                 MOUNT_SMBFS(1M)


  94                       /mnt.
  95 
  96 
  97        mount-point
  98 
  99            The path to the location where the file system is to be mounted or
 100            unmounted.  The mount command maintains a table of mounted file
 101            systems in the /etc/mnttab file. See the mnttab(4) man page.
 102 
 103 
 104 OPTIONS
 105        See the mount(1M) man page for the list of supported generic-options.
 106 
 107        -o name=value or
 108        -o name
 109 
 110            Sets the file system-specific properties. You can specify more than
 111            one name-value pair as a list of comma-separated pairs. No spaces
 112            are permitted in the list. The properties are as follows:
 113 
 114 
 115            acl|noacl
 116 
 117                Enable (or disable) presentation of Access Control Lists (ACLs)
 118                on files and directories under this smbfs(7FS) mount.  The
 119                default behavior is noacl, which presents files and directories
 120                as owned by the owner of the mount point and having permissions
 121                based on fileperms or dirperms.  With the acl mount option,
 122                files are presented with ACLs obtained from the SMB server.
 123                Setting the acl mount option is not advised unless the system
 124                is joined to an Active Directory domain and using ldap(1) so it
 125                can correctly present ACL identities from the SMB server.
 126 
 127 
 128            dirperms=octaltriplet
 129 
 130                Specifies the permissions to be assigned to directories. The
 131                value must be specified as an octal triplet, such as 755. The
 132                default value for the directory mode is taken from the
 133                fileperms setting, with execute permission added where
 134                fileperms has read permission.
 135 
 136                Note that these permissions have no relation to the rights
 137                granted by the CIFS server.
 138 
 139 
 140            fileperms=octaltriplet
 141 
 142                Specifies the permissions to be assigned to files. The value
 143                must be specified as an octal triplet, such as 644. The default
 144                value is 700.
 145 
 146                Note that these permissions have no relation to the rights
 147                granted by the CIFS server.


 316        $HOME/.nsmbrc
 317 
 318            User-settable mount point configuration file to store the
 319            description for each connection.
 320 
 321 
 322 ATTRIBUTES
 323        See the attributes(5) man page for descriptions of the following
 324        attributes:
 325 
 326 
 327 
 328 
 329        +--------------------+-----------------+
 330        |  ATTRIBUTE TYPE    | ATTRIBUTE VALUE |
 331        +--------------------+-----------------+
 332        |Interface Stability | Committed       |
 333        +--------------------+-----------------+
 334 
 335 SEE ALSO
 336        ldap(1), smbutil(1), mount(1M), mountall(1M), svcadm(1M), acl(2),
 337        fcntl(2), link(2), mknod(2), mount(2), symlink(2), umount(2),
 338        mnttab(4), nsmbrc(4), vfstab(4), attributes(5), pcfs(7FS), smbfs(7FS)
 339 
 340 AUTHORS
 341        This manual page contains material originally authored by Boris Popov,
 342        bpATbutya.kz, bpATFreeBSD.org.
 343 
 344 NOTES
 345        The Solaris CIFS client always attempts to use gethostbyname() to
 346        resolve host names. If the host name cannot be resolved, the CIFS
 347        client uses NetBIOS name resolution (NBNS). By default, the Solaris
 348        CIFS client permits the use of NBNS to enable Solaris CIFS clients in
 349        Windows environments to work without additional configuration.
 350 
 351 
 352        Since NBNS has been exploited in the past, you might want to disable
 353        it. To disable NBNS, set the nbns-enabled service management facility
 354        property to false. By default, nbns-enabled is set to true.
 355 
 356 
 357        If the directory on which a file system is to be mounted is a symbolic
 358        link, the file system is mounted on the directory to which the symbolic
 359        link refers, rather than being mounted on top of the symbolic link
 360        itself.
 361 
 362 
 363 
 364                                 January 2, 2012                MOUNT_SMBFS(1M)