Authentication issue for Accessing Samba server from Windows 98

I was getting below error in samba log for accessing Samba from Windows 98 ntlm_password_check: LM password, NT MD4 password in LM field and LMv2 failed for user Solution –> In smb.conf insert following lines under global section. ntlm auth = Yes client ntlmv2 auth = Yes And restart samba.

Setting up Samba PDC for Multiple domains

We will setup 2 domains mydomain1 & mydomain2 on 1 linux machine with samba. 1. Create 2 samba config files in /etc/samba/     a. smb.conf_mydomain1     b. smb.conf_mydomain2 2. Your smb.conf_mydomain1 will look like below: [global]         workgroup = mydomain1         netbios name =server1         time server = Yes…

Sharing Printer for Windows from Linux with Samba

Sharing Printer for Windows from Linux –> smb.conf will be =============> [global]         dos charset = ASCII         display charset = UTF-8         workgroup = WORKGROUP         netbios name = PRINT         security = SHARE         max xmit = 65535         deadtime = 15         socket options = IPTOS_LOWDELAY TCP_NODELAY SO_SNDBUF=16384 SO_RCVBUF=16384         printcap name…