2015-03-29 20:32:35 +01:00
|
|
|
---
|
|
|
|
created: 2008-08-21 10:36:55 +0200
|
2022-01-23 17:14:59 +00:00
|
|
|
layout: redirect
|
|
|
|
layout_old: default
|
|
|
|
redirect_to: https://blog.mbirth.de/archives/2008/08/21/netbioswins-support.html
|
2015-03-29 20:32:35 +01:00
|
|
|
tags:
|
2022-01-23 17:14:59 +00:00
|
|
|
- know-how
|
|
|
|
- software
|
|
|
|
- linux
|
|
|
|
- networking
|
|
|
|
- netbios
|
|
|
|
- wins
|
|
|
|
title: NetBIOS/WINS support
|
|
|
|
toc: false
|
|
|
|
updated: 2008-08-21 10:45:41 +0200
|
2015-03-29 20:32:35 +01:00
|
|
|
---
|
2022-01-23 17:14:59 +00:00
|
|
|
|
2015-03-29 21:05:46 +01:00
|
|
|
To enable lookup of WINS-names in Ubuntu, edit the file `/etc/nsswitch.conf` and find the line:
|
2015-03-29 20:32:35 +01:00
|
|
|
|
|
|
|
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
|
|
|
|
|
2015-03-29 21:05:46 +01:00
|
|
|
Append `wins` to the end of the line so that it looks like this:
|
2015-03-29 20:32:35 +01:00
|
|
|
|
|
|
|
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 wins
|
|
|
|
|
2022-01-23 17:14:59 +00:00
|
|
|
From now on you can also use NetBIOS names to address PCs in your LAN.
|