Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
10-16-2002, 02:34 PM
|
#16
|
LQ Newbie
Registered: Oct 2002
Location: Dublin Ireland
Distribution: Redhat 7.2 and 8.0
Posts: 27
Rep:
|
Ron1n no need to get your head in a mess if you look at my repley it stated that I got it from a post I thought the idea of these posts was to swap info ,you talk about useless info someone else had to supply you with the answer so who is the smartass when you know it all you can slag the rest of us off
|
|
|
10-16-2002, 02:55 PM
|
#17
|
LQ Newbie
Registered: Oct 2002
Location: Dublin Ireland
Distribution: Redhat 7.2 and 8.0
Posts: 27
Rep:
|
Imillis nice one I too got it sorted
Many thanks
Richard
|
|
|
10-18-2002, 04:01 PM
|
#18
|
Member
Registered: Sep 2002
Location: United States
Distribution: Slackware 8.1, 9.0 / Debian 3.0
Posts: 44
Original Poster
Rep:
|
gizbon:
You're right. I apologize. A little too stressed out lately. I completely missed the following line:
"I got this from a news group but still having trouble if someone else can make it happen let us know"
Sorry about that. But looking at the post today, it looks quite a bit different. Talk about a bad day. 
|
|
|
10-20-2002, 03:47 AM
|
#19
|
LQ Newbie
Registered: Oct 2002
Location: Dublin Ireland
Distribution: Redhat 7.2 and 8.0
Posts: 27
Rep:
|
no worries we all have them
|
|
|
10-21-2002, 01:40 PM
|
#20
|
Member
Registered: May 2002
Location: Edinburgh, UK
Distribution: SuSE Pro 8.0
Posts: 30
Rep:
|
regarding the xp and samba pdc issues I had exactly the same problems - it was a nightmare trying to find any solution to the problem - I got blasted for posting samba questions without folk realising this was an xp prob and not an smb.conf prob.
Hopefully samba will overcome these problems in the near future.
|
|
|
11-03-2002, 05:06 AM
|
#21
|
LQ Newbie
Registered: Oct 2002
Location: Dublin Ireland
Distribution: Redhat 7.2 and 8.0
Posts: 27
Rep:
|
xp with older versions of redhat
revisiting an old subject
can anybody tell me if there is a version or higher of samba that should be used with XP as I have a customer who just installed xp machine on a network and can't connect to PDC.
I am going on site to try and attach but don't want a wasted trip if its never going to work because of software versions
He is using redhat 6.2 and samba version 2.2.14
Don't want to upgrade as it is working perfectly for years
|
|
|
11-16-2002, 10:14 PM
|
#22
|
LQ Newbie
Registered: Nov 2002
Posts: 1
Rep:
|
Still dont work
Quote:
Originally posted by lmillis
RON1 I GOT IT!!!
Finally! Here are the mistakes i made and how i fixed them. First mistake was adding the machine account incorrectly. I needed to add it from the command line, not the gui. Here's the exact syntax i used:
/usr/sbin/useradd -d /dev/null -c "machine id" - s /bin/false machine_name$
Next passwd -l machine_name$
Make certain you have an entry for Root in the smbpasswd with the correct password. ( you probably already have done this).
Then restart the smb service.
On the XP Box: Go to control panel> Administrative Tools> Local Security Policy > Local Policies > Security Options > Then disable the six or seven items that have to do with "DOmain Member."
Then do the regedit > HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\netlogon\parameters
"RequireSignOrSeal"=dword:00000000
Then go to join the domain. I almost cried when I got the message "Welcome the Student Domain"
If I forgot anything, email me and I'll be glad to help!!!
|
i tried all that and i still get an error "specified network password is not correct" i am using the root account that i created.
ps im still stuck at the enter domain option when i right-clicked on "my computer" i havent rebooted yet
|
|
|
11-19-2002, 02:35 PM
|
#23
|
LQ Newbie
Registered: Nov 2002
Location: Alabama
Distribution: RedHat 8.0
Posts: 1
Rep:
|
Last Trick
Everything everyone on here said has helped my company and I a ton.. however 1 thing was left off that made our lives miserable for 2 days until I found this somewhere else. I will just post the new procedure manual I have made for our department that includes this final step that might be causing some of you the same problem....
When you change to another domain and it prompts you for a username and pass.. you HAVE to logon as root the first time... That crap threw us off for 2 days.
Adding a WinXP Box to a Samba Domain.
0. Add a Machines Group for the Machine Accounts.
groupadd –r machines
1. Add Machine Accounts Using Josh’s Shell Script:
#!/bin/bash
clear
echo "--==Josh's Machine Adding Script v1.0==--"
echo "Enter the machine name(netbios):"
read machinename
adduser -r -g machines -d /dev/null -s /dev/null $machinename$
echo "Now adding to smbpasswd file..."
smbpasswd -a -m $machinename
echo "Done."
2. Add User Accounts Using Josh’s Shell Script:
#!/bin/bash
clear
echo "--==Josh's User Adding Script v1.0==--"
echo "Enter the username:"
read username
adduser $username
passwd $username
echo "Now adding to smbpasswd file..."
smbpasswd -a $username
echo "Done."
3. Put Root in the smbpasswd with the correct password.
smbpasswd –a root
4. Restart the smb service.
5. On the XP Box: Go to control panel> Administrative Tools> Local Security Policy > Local Policies > Security Options > Then disable the six or seven items that have to do with "Domain Member."
6. Regedit > HKLM\SYSTEM\CurrentControlSet\Services\netlogon\parameters
"RequireSignOrSeal"=dword:00000000
7. Go to System Prop. > Comp. Name > Change Button > Join domain AS ROOT!
props to those who figured everything out! Thanks Guys
|
|
|
06-12-2003, 06:00 PM
|
#24
|
LQ Newbie
Registered: Jun 2003
Posts: 2
Rep:
|
XP samba PDC account
Hi,
I recently saw some info on a mandrake users website which suggested the following registry fix:
change this
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters]
"requiresignorseal"=dword:00000001
to
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters]
"requiresignorseal"=dword:00000000
Cheers
|
|
|
11-09-2005, 01:06 PM
|
#26
|
LQ Newbie
Registered: Nov 2005
Posts: 1
Rep:
|
still not able to join an XP computer to a Samba domain
Hi all,
I've read all the postings in this thread carefully and considered all suggestions. Samba is working fine. I can access the shares from XP and I have added a Linux client to the domain. Still I can't join my XP client. I always get "access denied", no matter which user I try (including root). I have added machine accounts and disabled the domain security options on XP. I have also disabled the firewall.
The strange thing about it is, that in /var/logs/samba/ I get no error messages. The user is authenticated successfully and so on and then at the end it says something like: "timeout_processing: End of file from client (client has disconnected)" and then a few lines later "server exit (normal exit)". But all entries in the lock file from the beginning of the transaction until these messages appear within 2 seconds. Any help would be appreciated.
Regards
René
|
|
|
All times are GMT -5. The time now is 04:02 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|