Еще заметил - в иксах, в браузере, по smb:// все замечательно работает используя NetBiOS имена ..
Перенастроил сетевуху, чтобы IP выдавался DHCP сервером - IP получаю нормально, сеть вижу по smb нормально, но пинговать могу токо по IP, как и прежде..
Еще один момент - SMB клиент в SUSE подключает виндовые шары нормально со всех машин в сети:
elf:~ # mount -t smbfs -o username=user,password=pass //192.168.0.1/temp /mnt/temp/
cli_negprot: SMB signing is mandatory and we have disabled it.
4517: protocol negotiation failed
SMB connection failed
elf:~ #
[/code]
хотя в иксах, в браузере: smb://ork/temp после воода логина и пароля все открывается...
elf:~ # mount -t smbfs -o username=user,password=pass //192.168.0.1/temp /mnt/temp/
cli_negprot: SMB signing is mandatory and we have disabled it.
4517: protocol negotiation failed
SMB connection failed
elf:~ #
хотя в иксах, в браузере: smb://ork/temp после воода логина и пароля все открывается...
[/quote]
Интересно все же - как решили? Или я чего-то здесь не понял?..
------------------------------
"Bill Gates" is a trademark of Microsoft corp.
cli_negprot: SMB signing is mandatory and we have disabled it.
[/quote]
говорит о том что не включено подписывание SMB пакетов. Если шары к которым ты цепляешься находятся на 2003 серваке, то по умолчанию в GPO включен SMB signing.
В настойках самбы (smb.conf) надо добавить
client signin = yes
client use spnego = yes
или на серваке отключить подписывание пакетов, что уменьшит безопасность.
В настойках самбы (smb.conf) надо добавить
client signin = yes
client use spnego = yes
[/quote]
добавлял в:
/etc/samba/smb.conf в поле [global]
Код
elf:/etc/samba # cat smb.conf
# version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE
# Date: 2004-10-05
[global]
workgroup = AOPOKHARKOV
printing = cups
printcap name = cups
printcap cache time = 750
cups options = raw
printer admin = @ntadmin, root, administrator
username map = /etc/samba/smbusers
map to guest = Bad User
include = /etc/samba/dhcp.conf
logon path = \\%L\profiles\.msprofile
logon home = \\%L\%U\.9xprofile
logon drive = P:
security = user
encrypt passwords = yes
client signin = yes
client use spnego = yes
[homes]
comment = Home Directories
valid users = %S
browseable = No
read only = No
inherit acls = Yes
[profiles]
comment = Network Profiles Service
path = %H
read only = No
store dos attributes = Yes
create mask = 0600
directory mask = 0700
[users]
comment = All users
path = /home
read only = No
inherit acls = Yes
veto files = /aquota.user/groups/shares/
[groups]
comment = All groups
path = /home/groups
read only = No
inherit acls = Yes
[pdf]
comment = PDF creator
path = /var/tmp
printable = Yes
print command = /usr/bin/smbprngenpdf -J '%J' -c %c -s %s -u '%u' -z %z
create mask = 0600
[printers]
comment = All Printers
path = /var/tmp
printable = Yes
create mask = 0600
browseable = No
[print$]
comment = Printer Drivers
path = /var/lib/samba/drivers
write list = @ntadmin root
force group = ntadmin
create mask = 0664
directory mask = 0775
elf:/etc/samba #
[/code]
при попытке примоунтить шару на DC W2k3 говорит следующее:
Unknown parameter encountered: "client signin"
Ignoring unknown parameter "client signin"
cli_negprot: SMB signing is mandatory and we have disabled it.
26904: protocol negotiation failed
SMB connection failed
Press any key to continue...
Цитата
или на серваке отключить подписывание пакетов, что уменьшит безопасность.
[/quote]