diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-06-06 11:24:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-06-06 11:24:54 +0000 |
commit | f57b053db8b17041ef02588127a67f362af871b6 (patch) | |
tree | 37133fe7d1a396740a8bab269638ed03ee4d5ec7 /docs/manpages | |
parent | f6733fe3cf73945035fff9eea4a2d24ee1bd9751 (diff) | |
download | samba-f57b053db8b17041ef02588127a67f362af871b6.tar.gz samba-f57b053db8b17041ef02588127a67f362af871b6.tar.bz2 samba-f57b053db8b17041ef02588127a67f362af871b6.zip |
added some notes on the new "interfaces" option
(This used to be commit 8eb701d0d6483d0f5c6de3640b38f98128cd321c)
Diffstat (limited to 'docs/manpages')
-rw-r--r-- | docs/manpages/smb.conf.5 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/manpages/smb.conf.5 b/docs/manpages/smb.conf.5 index 7149be6a47..d5100181de 100644 --- a/docs/manpages/smb.conf.5 +++ b/docs/manpages/smb.conf.5 @@ -1048,6 +1048,31 @@ or perhaps on a home network where you trust your wife and kids :-) .B Example hosts equiv = /etc/hosts.equiv +.SS interfaces (G) + +This option allows you to setup multiple network interfaces, so that +Samba can properly handle browsing on all interfaces. + +The option takes a list of ip/netmask pairs. The netmask may either be +a bitmask, or a bitlength. + +For example, the following line: + +interfaces = 192.168.2.10/24 192.168.3.10/24 + +would configure two network interfaces with IP addresses 192.168.2.10 +and 192.168.3.10. The netmasks of both interfaces would be set to +255.255.255.0. + +You could produce an equivalent result by using: + +interfaces = 192.168.2.10/255.255.255.0 192.168.3.10/255.255.255.0 + +if you prefer that format. + +If this option is not set then Samba will attempt to find a primary +interface, but won't attempt to configure more than one interface. + .SS invalid users (S) This is a list of users that should not be allowed to login to this service. This is really a "paranoid" check to absolutely ensure an |