]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man5/nsmb.conf.5
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man5 / nsmb.conf.5
1 .\" Copyright (c) 2003
2 .\" Originally written by Sergey A. Osokin
3 .\" Rewritten by Tom Rhodes
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd October 19, 2010
29 .Dt NSMB.CONF 5
30 .Os
31 .Sh NAME
32 .Nm nsmb.conf
33 .Nd configuration file for
34 .Tn SMB
35 requests
36 .Sh DESCRIPTION
37 The
38 .Nm
39 file contains information about the computers, users, and shares
40 or mount points for the
41 .Tn SMB
42 network protocol.
43 .Pp
44 The configuration hierarchy is made up of several sections,
45 each section containing a few or several lines of parameters
46 and their assigned values.
47 Each of these sections must begin with a section name enclosed within
48 square brackets, similar to:
49 .Pp
50 .D1 Bq Ar section_name
51 .Pp
52 The end of each section is marked by either the start of a new section,
53 or by the abrupt ending of the file, commonly referred to as the
54 .Tn EOF .
55 Each section may contain zero or more parameters such as:
56 .Pp
57 .D1 Bq Ar section_name
58 .D1 Ar key Ns = Ns Ar value
59 .Pp
60 where
61 .Ar key
62 represents a parameter name, and
63 .Ar value
64 would be the parameter's assigned value.
65 .Pp
66 The
67 .Tn SMB
68 library uses the following information for section names:
69 .Pp
70 .Bl -tag -width indent -compact
71 .It Ic A)
72 .Bq Li default
73 .It Ic B)
74 .Bq Ar SERVER
75 .It Ic C)
76 .Bq Ar SERVER : Ns Ar USER
77 .It Ic D)
78 .Op Ar SERVER : Ns Ar USER : Ns Ar SHARE
79 .El
80 .Pp
81 Possible keywords may include:
82 .Bl -column ".Va retry_count" ".Sy Section"
83 .It Sy "Keyword Section Comment"
84 .It Sy "        A B C D"
85 .It Va addr        Ta "- + - -" Ta "IP or IPX address of SMB server"
86 .It Va charsets    Ta "- + + +" Ta "local:remote charset pair"
87 .It Va nbns        Ta "+ + - -" Ta "address of NetBIOS name server (WINS)"
88 .It Va nbscope     Ta "+ + - -" Ta "NetBIOS scope"
89 .It Va nbtimeout   Ta "+ + - -" Ta "timeout for NetBIOS name servers"
90 .It Va password    Ta "- - + +" Ta "plain text or simple encrypted password used to access the given share"
91 .It Va retry_count Ta "+ + - -" Ta "number of retries before connection is marked as broken"
92 .It Va timeout     Ta "+ + - -" Ta "SMB request timeout"
93 .It Va workgroup   Ta "+ + + +" Ta "workgroup name"
94 .El
95 .Sh FILES
96 .Bl -tag -width ".Pa /etc/nsmb.conf"
97 .It Pa /etc/nsmb.conf
98 The default remote mount-point configuration file.
99 .It Pa ~/nsmb.conf
100 The user specific remote mount-point configuration file.
101 .El
102 .Sh EXAMPLES
103 What follows is a sample configuration file which may,
104 or may not match your environment:
105 .Bd -literal -offset indent
106 # Configuration file for example.com
107 [default]
108 workgroup=SALES
109 # The 'FSERVER' is an NT server.
110 [FSERVER]
111 charsets=koi8-r:cp866
112 addr=fserv.example.com
113 # User specific data for FSERVER
114 [FSERVER:MYUSER]
115 password=$$16144562c293a0314e6e1
116 .Ed
117 .Pp
118 All lines which begin with the
119 .Ql #
120 character are comments and will not be parsed.
121 The
122 .Dq Li default
123 section describes the default workgroup or domain, in this case
124 .Dq Li SALES .
125 The next section depicted here as
126 .Dq Li FSERVER ,
127 defines a server section and then assigns it a charset which is only
128 required when Cyrillic characters are not used.
129 The hostname value,
130 .Dq Li fserv.example.com ,
131 is also assigned in this section.
132 .Dq Li FSERVER:USER ,
133 defines the user settings and is useful for saving the password used
134 during a specific connection.
135 The password may be plaintext or obfuscated using simple encryption.
136 The simple encrypted password starts with the `$$1' symbols.
137 Warning: the encryption function is very weak and intended only to hide
138 clear text passwords.
139 If the use of simple encryption is desired, the following command may be
140 used on a password:
141 .Bd -literal -offset indent
142 smbutil crypt
143 .Ed
144 .Sh COMPATIBILITY
145 At the time of this writing, the
146 .Tn IPX
147 protocol remains unsupported.
148 Future
149 .Fx
150 releases are expected to support this.
151 .Sh SEE ALSO
152 .Xr smbutil 1 ,
153 .Xr mount_smbfs 8
154 .Sh AUTHORS
155 This manual page was written by
156 .An -nosplit
157 .An Sergey Osokin Aq osa@FreeBSD.org
158 and
159 .An Tom Rhodes Aq trhodes@FreeBSD.org .