summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>1998-10-29 10:44:54 +0000
committerJohn Terpstra <jht@samba.org>1998-10-29 10:44:54 +0000
commit32bc55c09562cbc3560a42ddc3dbe3fad3f1b010 (patch)
treed205b2909eda097a6d07d2b8678ee04197a4fb67 /docs
parent356e049a42ab5c72c7bc82ac17c3565d996ddc2d (diff)
downloadsamba-32bc55c09562cbc3560a42ddc3dbe3fad3f1b010.tar.gz
samba-32bc55c09562cbc3560a42ddc3dbe3fad3f1b010.tar.xz
samba-32bc55c09562cbc3560a42ddc3dbe3fad3f1b010.zip
Added description of reason for failure of test 3 due to blockage of the
loopback address.
Diffstat (limited to 'docs')
-rw-r--r--docs/textdocs/DIAGNOSIS.txt21
1 files changed, 20 insertions, 1 deletions
diff --git a/docs/textdocs/DIAGNOSIS.txt b/docs/textdocs/DIAGNOSIS.txt
index 31845386123..35e0660a1c7 100644
--- a/docs/textdocs/DIAGNOSIS.txt
+++ b/docs/textdocs/DIAGNOSIS.txt
@@ -109,13 +109,32 @@ it is running, and check that the netbios-ssn port is in a LISTEN
state using "netstat -a".
If you get a "session request failed" then the server refused the
-connection. If it says "your server software is being unfriendly" then
+connection. If it says "Your server software is being unfriendly" then
its probably because you have invalid command line parameters to smbd,
or a similar fatal problem with the initial startup of smbd. Also
check your config file (smb.conf) for syntax errors with "testparm"
and that the various directories where samba keeps its log and lock
files exist.
+There are a number of reasons for which smbd may refuse or decline
+a session request. The most common of these involve one or more of
+the following smb.conf file entries:
+ hosts deny = ALL
+ hosts allow = xxx.xxx.xxx.xxx/yy
+ bind interfaces only = Yes
+
+In the above, no allowance has been made for any session requests that
+will automatically translate to the loopback adaptor address 127.0.0.1.
+To solve this problem change these lines to:
+ hosts deny = ALL
+ hosts allow = xxx.xxx.xxx.xxx/yy 127.
+Do NOT use the "bind interfaces only" parameter where you may wish to
+use the samba password change facility, or where smbclient may need to
+access local service for name resolution or for local resource
+connections. (Note: the "bind interfaces only" parameter deficiency
+where it will not allow connections to the loopback address will be
+fixed soon).
+
Another common cause of these two errors is having something already running
on port 139, such as Samba (ie: smbd is running from inetd already) or
something like Digital's Pathworks. Check your inetd.conf file before trying