Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 May 2003 07:42:44 -0700
From:      BSD baby <bsdlap@hitmedia.com>
To:        redrik@ihug.com.au
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: FreeBSD and Windows XP
Message-ID:  <20030531144244.GA57851@mail.hitmedia.com>
In-Reply-To: <3ED93F67.21251.D78B45@localhost>
References:  <3ED93F67.21251.D78B45@localhost>

next in thread | previous in thread | raw e-mail | index | archive | help
> How do I get my new Win XP box to talk to me FreeBSD Server?
> When I try to map a drive I get :
>   "The account is not authorized to log in from this station."
> I think it's the "Plain Text Password" issue.  I've dealt with it before 
> on Win 98 but can't figure out how to configure Win XP to allow a 
> Plain Text Password.

It sounds like you're talking about Samba?

If so, here's my samba config file that works with WinXP *and* Win98:
(Note: I set up a username called "shared" as the only shared directory.)


/usr/local/etc/smb.conf
-----------------
[global]
        valid users = shared
        force user = shared
        guest account = shared
        default case = lower
        case sensitive = no
        remote announce = 192.168.0.5/YourWindowsWorkgroupName
        auto services = global
        default = global
        dns proxy = no 
        encrypt passwords = no
        null passwords = yes
        security = share
        socket options = TCP_NODELAY SO_SNDBUF=8192 SO_RCVBUF=8192
        max log size = 50
        server string = dev
        netbios name = dev
        netbios aliases = dev
        workgroup = YourWindowsWorkgroupName
        log file = /var/log/samba.log


#============================ Share Definitions ==============================

[shared]
        path = /home/shared/
        writable = yes
        force user = shared
        force group = shared
        guest account = shared
        public = yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030531144244.GA57851>