Hello,
I am pretty new to linux - starting to find my way around it a bit, and liking what I see.
I am trying to get dansguardian to do content filtering for a small network - got SQUID installed and configured, dansguardian installed and configured - which works great.
Then I decided to install samba - to try and use the Active Directory authentication with groups to give some additional flexability.
I joined the samba machine to the AD great, when I try wbinfo
the following returns
wbinfo -t - succeeded
wbinfo -n Administrator - returns the SID for admin
wbinfo -r Administrator - returns 10001 - 10004
wbinfo -V - returns 3.0.2a-SUSE
wbinfo -u - returns - Error looking up domain users
wbinfo -g - returns - Error looking up domain groups
I can ping the server great, I can see the suse computer good from the windows AD machine - and even if I authenticate administrator with wbinfo - it still returns the error.
my /etc/krb5.conf looks like this
[realms]
mydomain.com = {
kdc = server.mydomain.com
admin_server = server.mydomain.com
kpasswd_server = server.mydomain.com
}
# OTHER.REALM = {
# kdc = OTHER.COMPUTER
# }
[domain_realm]
.my.domain =mydomain.com
- [realms]
- mydomain.com = {
- kdc = server.mydomain.com
- admin_server = server.mydomain.com
- kpasswd_server = server.mydomain.com
- }
- # OTHER.REALM = {
- # kdc = OTHER.COMPUTER
- # }
- [domain_realm]
- .my.domain =mydomain.com
my /etc/samba/smb.conf looks like this
[global]
netbios name = server
idmap uid = 10000-20000
workgroup = mydomain.com
os level = 20
preferred master = no
encrypt passwords = true
password server = server.mydomain.com
security = domain
winbind separator = +
dns proxy = no
realm = mydomain.com
winbind uid = 10000-20000
winbind gid = 10000-20000
winbind use default domain = yes
winbind enum users = yes
winbind enum groups = yes
[homes]
guest ok = no
browseable = no
[temp]
path = /tmp
public = yes
- [global]
- netbios name = server
- idmap uid = 10000-20000
- workgroup = mydomain.com
- os level = 20
- preferred master = no
- encrypt passwords = true
- password server = server.mydomain.com
- security = domain
- winbind separator = +
- dns proxy = no
- realm = mydomain.com
- winbind uid = 10000-20000
- winbind gid = 10000-20000
- winbind use default domain = yes
- winbind enum users = yes
- winbind enum groups = yes
- [homes]
- guest ok = no
- browseable = no
- [temp]
- path = /tmp
- public = yes
and my /etc/nsswitch looks like this
passwd: compat winbind
group: compat winbind
hosts: files dns
networks: files dns
services: files
protocols: files
rpc: files
ethers: files
netmasks: files
netgroup: files
publickey: files
- passwd: compat winbind
- group: compat winbind
- hosts: files dns
- networks: files dns
- services: files
- protocols: files
- rpc: files
- ethers: files
- netmasks: files
- netgroup: files
- publickey: files
Can anyone see where I may be going wrong here?
Thank you