1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2008-08-21-netbios-wins.md

24 lines
588 B
Markdown
Raw Normal View History

2015-03-29 20:32:35 +01:00
---
title: NetBIOS/WINS support
layout: default
created: 2008-08-21 10:36:55 +0200
updated: 2008-08-21 10:45:41 +0200
toc: false
tags:
- know-how
- software
- linux
- networking
- netbios
- wins
---
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
From now on you can also use NetBIOS names to address PCs in your LAN.