LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 12-09-2002, 08:16 AM   #1
dkodegwc
LQ Newbie
 
Registered: Dec 2002
Posts: 8

Rep: Reputation: 0
samba NetBIOS names problem


I have setup a samba server on the IP 192.168.1.101

When I go to \\192.168.1.101 on my win2k machine it pulls up the shares, when i go to \\FILESERVER it says network path not found...in my smb.conf FILESERVER is the netbios name of the samba server. How do i get the netbios names to work.

Another problem I am having is i did a fresh install of rh 7.2, this came with samba 2.2.1. After rh was setup i downloaded and compiled samba 2.2.7, now when i do smbclient -L 192.168.1.101 it says the samba server version is 2.2.1. What must I do to get the machine to use the NEW installation of samba instead of the old one.

thank you.

Last edited by dkodegwc; 12-09-2002 at 08:18 AM.
 
Old 12-09-2002, 05:56 PM   #2
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
you should do rpm -e samba to remove samba befor updating it
 
Old 12-09-2002, 06:00 PM   #3
dkodegwc
LQ Newbie
 
Registered: Dec 2002
Posts: 8

Original Poster
Rep: Reputation: 0
i fixed the netbios problem by setting up static ips on my network and then putting the machine names and IP's in /etc/hosts

the problem I am having now is I am attempting to setup samba as the PDC for my network....i setup everything in the smb.conf file and attempt to put darcstar for the domain to connect to in win2k. when i do this it tells me it cannot find the domain. why is this?

my linux box hostname is : crackmonkey.darcstar

where else on the linux box do i setup the domain?
 
Old 12-09-2002, 07:54 PM   #4
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
it would be in smb.conf

workgroup = DARCSTAR
netbios name = CRACKMONKEY
 
Old 12-09-2002, 07:56 PM   #5
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
Do this command


smbclient -L CRACKMONKEY

and see who the master is
 
Old 12-09-2002, 11:30 PM   #6
dkodegwc
LQ Newbie
 
Registered: Dec 2002
Posts: 8

Original Poster
Rep: Reputation: 0
ok,

i got all this stuff working now....in order for win2k to find the domain I had to put in:
workgroup = darcstar

in smb.conf
I was able to join the domain and I supplied to username root and the root password.

But now when i rebooted windows, i selected darcstar as the domian, put in my username and password, but it says domain ... is not available.

it says this when i try the user i added or when i try to use root as the username..

any ideas?

I feel like I might be setting up the user accounts wrong maybe?
I added user sean like so:

useradd -g webusers sean$
smbpasswd -m -a sean$
smbpasswd -e sean$

and it said ok to all, now when i attempt to go to \\192.168.1.101 via command line, it asks me for username and password, user sean does not work but username root does and shows me the shares...

maybe I have more than one problem? i'm not sure...below is my smb.conf file:

[global]
admin users = root
encrypt passwords = yes
domain logons = yes
domain master = yes
logon drive = U:
logon home = \\FILESERVER\%u
os level = 99
preferred master = yes
security = user
netbios name = FILESERVER
workgroup = darcstar
log level = 2
log file = /var/log/samba.log
wins support = yes
add user script = /usr/sbin/useradd -d /dev/null -g machines -c 'Machine Account' -s /bin/false -M %u

[homes]
create mode = 0600
directory mode = 0700
path = %H
read only = no
valid users = %S

[sites]
create mode = 0600
directory mode = 0700
path = /home/sites
browseable = yes
writeable = yes
guest ok = no
read only = no

[netlogon]
comment = Network Logon Service
read only = yes
browseable = no
write list = @admins
path = /home/netlogon
 
Old 12-10-2002, 12:07 AM   #7
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
you need to do

smbadduser user:user


when a user logs in on mine it put the users script in the netlogon folder, and puts the users files in the profiles folder. they need to have permission to write to the profiles folders


drwxrwx--- 5 root users 4096 Dec 9 05:59 profiles


groups david
david : david users

Last edited by DavidPhillips; 12-10-2002 at 12:15 AM.
 
Old 12-10-2002, 12:11 AM   #8
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
[netlogon]
path = /usr/lib/samba/netlogon/
root preexec = /usr/bin/ntlogon -u %U -g %G -o %a -d /usr/lib/samba/netlogon/ && chmod 644 /usr/lib/samba/netlogon/%U.bat;
root postexec = rm -f /usr/lib/samba/netlogon/%U.bat
read only = yes
write list = root

[profiles]
path = /usr/lib/samba/profiles/
read only = no
create mask = 0600
directory mask = 0700

[global]
domain master = Yes
domain logons = Yes
logon path = \\%N\profiles\nt\%u
logon home = \\%N\profiles\98\%u
logon script = %U.bat

Last edited by DavidPhillips; 12-10-2002 at 12:15 AM.
 
Old 12-10-2002, 12:18 AM   #9
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
ls -l /usr/lib/samba/profiles/nt
total 4
drwx------ 13 david david 4096 Dec 9 06:00 david

ls -l /usr/lib/samba/profiles
total 12
drwxrwx--- 3 root users 4096 Dec 7 14:44 98
drwxrwx--- 3 root users 4096 Dec 9 05:49 nt

ls -l /usr/lib/samba/profiles/nt/david
total 2228
drwx------ 7 david david 4096 Dec 9 05:50 Application Data
-rw------- 1 david david 680 Dec 8 23:51 config.bin
drwx------ 2 david david 4096 Dec 9 06:00 Cookies
drwx------ 2 david david 4096 Dec 9 05:49 Desktop
drwx------ 3 david david 4096 Dec 9 05:49 Favorites
-rw------- 1 david david 132 Dec 9 05:49 key.sah
drwx------ 4 david david 4096 Dec 9 05:49 My Documents
drwx------ 2 david david 4096 Dec 9 05:49 NetHood
-rw------- 1 david david 1835008 Dec 9 06:00 NTUSER.DAT
-rw------- 1 david david 1024 Dec 9 06:00 NTUSER.DAT.LOG
-rw------- 1 david david 270 Dec 9 06:00 ntuser.ini
-rw------- 1 david david 0 Dec 9 05:48 outfile.sah
drwx------ 2 david david 4096 Dec 9 05:49 PrintHood
drwx------ 2 david david 4096 Dec 9 05:49 Recent
-rw------- 1 david david 162 Dec 9 05:48 result_header.sah
drwx------ 2 david david 4096 Dec 9 06:00 SendTo
drwx------ 3 david david 4096 Dec 9 05:49 Start Menu
-rw------- 1 david david 4054 Dec 9 05:49 state.sah
drwx------ 2 david david 4096 Dec 9 05:49 Templates
-rw------- 1 david david 381 Dec 9 05:48 temp.sah
-rw------- 1 david david 381 Dec 9 05:48 user_info.sah
-rw------- 1 david david 32 Dec 8 23:51 version.sah
-rw------- 1 david david 356283 Dec 9 05:48 work_unit.sah

Last edited by DavidPhillips; 12-10-2002 at 12:19 AM.
 
Old 12-10-2002, 12:29 AM   #10
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
Ok, here is the whole thing

Code:
[global]
        workgroup = HOME
        netbios name = SERVER
        server string = Samba Server
        interfaces = 192.168.0.1/32 192.168.1.1/32
        encrypt passwords = Yes
        obey pam restrictions = Yes
        pam password change = Yes
        passwd program = /usr/bin/passwd %u
        passwd chat = *New*password* %n\n *Retype*new*password* %n\n *passwd:*al
l*authentication*tokens*updated*successfully*
        username map = /etc/samba/smbusers
        password level = 8
        username level = 3
        unix password sync = Yes
        log file = /var/log/samba/%m.log
        max log size = 0
        socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
        domain logons = Yes
        logon path = \\%N\profiles\nt\%u
        logon home = \\%N\profiles\98\%u
        logon script = %U.bat
        os level = 85
        preferred master = Yes
        domain master = Yes
        dns proxy = No
        wins support = Yes
        remote announce = 192.168.0.255 192.168.1.255
        hosts allow = 192.168.0. 192.168.1. 127.
        printing = lprng
        add user script = /usr/sbin/useradd -d /dev/null -g 100 -s /bin/false -M
 %u 
[printers]
        comment = All Printers
        path = /var/spool/samba
        printable = Yes
        browseable = No

[HP890C]
        path = /var/spool/samba
        read only = No
        guest ok = Yes
        printable = Yes
        printer name = lp0
        oplocks = No

[netlogon]
        path = /usr/lib/samba/netlogon/
        root preexec = /usr/bin/ntlogon -u %U -g %G -o %a -d /usr/lib/samba/netl
ogon/ && chmod 644 /usr/lib/samba/netlogon/%U.bat;
        root postexec = rm -f /usr/lib/samba/netlogon/%U.bat
        read only = yes
        write list = root

[profiles]
        path = /usr/lib/samba/profiles/
        read only = no
        create mask = 0600
        directory mask = 0700

Last edited by DavidPhillips; 12-10-2002 at 12:42 AM.
 
Old 12-10-2002, 12:32 AM   #11
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
here is the ntlogon script

cat /etc/ntlogon.conf
Code:
[Global]

MAINDRIVE = G:
USERDRIVE = U:
SERVERNAME = SERVER
@ECHO "Welcome to our network!!!"
NET TIME \\%SERVERNAME /SET /YES
NET USE %USERDRIVE \\%SERVERNAME\profiles\nt\%U /YES

Last edited by DavidPhillips; 12-10-2002 at 12:34 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ping netbios names from linux (samba) HadroLepton Linux - Networking 25 03-23-2016 04:31 PM
2 nic's = 2 netbios names wanted! pingu Linux - Networking 2 11-11-2005 01:49 AM
samba netbios problem zsoltrenyi Linux - Software 1 02-18-2005 01:55 AM
NetBIOS names not resolving Xhalman Linux - Networking 0 02-16-2004 02:38 PM
Weird Netbios Names RWild Linux - Networking 4 01-04-2003 10:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 09:40 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration