diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-22 02:53:42 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-22 02:53:42 +0000 |
commit | 8213a05d6751f55af8dfbe282b22d9fd193eeff4 (patch) | |
tree | bba6031414ba82b7332b59a6c5228f55450a43f0 | |
parent | 556d1ca2d20c42c7ee5934631331f0a019203f06 (diff) | |
download | samba-8213a05d6751f55af8dfbe282b22d9fd193eeff4.tar.gz samba-8213a05d6751f55af8dfbe282b22d9fd193eeff4.tar.bz2 samba-8213a05d6751f55af8dfbe282b22d9fd193eeff4.zip |
Restrict anonymous=2 support merged from HEAD
(This used to be commit 8b156ed0db3e54aa3265a2579e72c50c39b5beef)
-rw-r--r-- | docs/docbook/manpages/smb.conf.5.sgml | 30 | ||||
-rw-r--r-- | source3/param/loadparm.c | 4 |
2 files changed, 9 insertions, 25 deletions
diff --git a/docs/docbook/manpages/smb.conf.5.sgml b/docs/docbook/manpages/smb.conf.5.sgml index 8452e97329..6ed870ed3e 100644 --- a/docs/docbook/manpages/smb.conf.5.sgml +++ b/docs/docbook/manpages/smb.conf.5.sgml @@ -6544,30 +6544,12 @@ <varlistentry> <term><anchor id="RESTRICTANONYMOUS">restrict anonymous (G)</term> - <listitem><para>This is a boolean parameter. If it is <constant>yes</constant>, then - anonymous access to the server will be restricted, namely in the - case where the server is expecting the client to send a username, - but it doesn't. Setting it to <constant>yes</constant> will force these anonymous - connections to be denied, and the client will be required to always - supply a username and password when connecting. Use of this parameter - is only recommended for homogeneous NT client environments.</para> - - <para>This parameter makes the use of macro expansions that rely - on the username (%U, %G, etc) consistent. NT 4.0 - likes to use anonymous connections when refreshing the share list, - and this is a way to work around that.</para> - - <para>When restrict anonymous is <constant>yes</constant>, all anonymous connections - are denied no matter what they are for. This can effect the ability - of a machine to access the Samba Primary Domain Controller to revalidate - its machine account after someone else has logged on the client - interactively. The NT client will display a message saying that - the machine's account in the domain doesn't exist or the password is - bad. The best way to deal with this is to reboot NT client machines - between interactive logons, using "Shutdown and Restart", rather - than "Close all programs and logon as a different user".</para> - - <para>Default: <command>restrict anonymous = no</command></para> + <listitem><para>This is a integer parameter, and + mirrors as much as possible the functinality the + <constant>RestrictAnonymous</constant> + registry key does on NT/Win2k. + + <para>Default: <command>restrict anonymous = 0</command></para> </listitem> </varlistentry> diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 57318d03ca..88d5dfed9d 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -3619,7 +3619,9 @@ BOOL lp_load(const char *pszFname, BOOL global_only, BOOL save_defaults, lp_add_auto_services(lp_auto_services()); if (add_ipc) { - lp_add_ipc("IPC$", True); + /* When 'restrict anonymous = 2' guest connections to ipc$ + are denied */ + lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2)); lp_add_ipc("ADMIN$", False); } |