• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux support for WINS

In samba's smb.conf file, the line "wins support = yes" will make your machine a WINS server. There is also a line "wins server = w.x.y.z" which allows you to specify an existing WINS server for use.
 
I think there's also a resolver plugin (as in nsswitch.conf) you can use to use samba for name resolution.
 
Originally posted by: rjain
I think there's also a resolver plugin (as in nsswitch.conf) you can use to use samba for name resolution.
There is - it's called libnss_wins.so and is specified with "wins" in nsswitch.conf. This is different than libnss_winbind.so. Winbind is used to resolve user and group ID's, WINS is used to resolve hostnames. If you need this functionality, you may have to do a bit of legwork - the default Samba build does not build libnss_wins, and most distros follow suit. Also, this works fine with "real" NT/2K WINS servers as well, not just Samba WINS servers.

If you need Linux to act as a WINS server instead of a client, then you need the "wins support = yes" line in smb.conf, as suggested above.

 
Back
Top