LINUX.ORG.RU

Centos 6.3 samba и WIFI роутер


0

1

Доброго времени суток
помогите с настройкой
при переходе по smb://192.168.1.1/
получаю ->
Не удалось присоединить местоположение
Ошибка подключения ресурса Windows

#testparm -s 
Load smb config files from /etc/samba/smb.conf
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
Processing section "[homes]"
Processing section "[printers]"
Processing section "[allusers]"
Loaded services file OK.
Server role: ROLE_STANDALONE
[global]
	workgroup = MAV
	server string = Samba Server Version %v
	guest account = mav
	log file = /var/log/samba/log.%m
	max log size = 50
	idmap config * : backend = tdb
	guest ok = Yes
	hosts allow = 192.168.1.1/24
	cups options = raw

[homes]
	comment = Home Directories
	valid users = %S
	read only = No
	create mask = 0700
	directory mask = 0700
	browseable = No

[printers]
	comment = All Printers
	path = /var/spool/samba
	printable = Yes
	print ok = Yes
	browseable = No

[allusers]
	comment = All Users
	path = /home/shared/allusers
	force group = mav
	read only = No
	create mask = 0660
	directory mask = 0771
при переходе по smb://192.168.1.1/
получаю ->
Не удалось присоединить местоположение
Ошибка подключения ресурса Windows 

testparm -s 
Load smb config files from /etc/samba/smb.conf
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
Processing section "[homes]"
Processing section "[printers]"
Processing section "[allusers]"
Loaded services file OK.
Server role: ROLE_STANDALONE
[global]
	workgroup = MAV
	server string = Samba Server Version %v
	guest account = mav
	log file = /var/log/samba/log.%m
	max log size = 50
	idmap config * : backend = tdb
	guest ok = Yes
	hosts allow = 192.168.1.1/24
	cups options = raw

[homes]
	comment = Home Directories
	valid users = %S
	read only = No
	create mask = 0700
	directory mask = 0700
	browseable = No

[printers]
	comment = All Printers
	path = /var/spool/samba
	printable = Yes
	print ok = Yes
	browseable = No

[allusers]
	comment = All Users
	path = /home/shared/allusers
	force group = mav
	read only = No
	create mask = 0660
	directory mask = 0771

и еще

# smbclient -L //192.168.1.1/
Enter mav's password: 
Domain=[MAV] OS=[Unix] Server=[Samba 3.0.37]

	Sharename       Type      Comment
	---------       ----      -------
	Новый_том Disk      TOSHIBA MK1059GSM's Новый_том
	IPC$            IPC       IPC Service (RT-N65U)
Domain=[MAV] OS=[Unix] Server=[Samba 3.0.37]

	Server               Comment
	---------            -------
	RT-N65U              RT-N65U

	Workgroup            Master
	---------            -------
	MAV                  RT-N65U

1)192.168.1.1 эт и есть wifi роутер rt n-65u к нему подключен hdd доступ к нему по samba протаколу
2)самба на 192.168.1.1 запущена тк hdd виден а вот доступа к нему нет
3) пинг на 192.168.1.1 идет


Ответ на: комментарий от kostik87

Извините я не очень в этом понимаю можно по подробнее

and_07
() автор топика
Ответ на: комментарий от kerneliq
[2013/08/08 19:32:05,  0] smbd/server.c:1026(main)
  smbd version 3.6.9-151.el6 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2011
[2013/08/08 20:13:54,  0] smbd/server.c:1026(main)
  smbd version 3.6.9-151.el6 started.
  Copyright Andrew Tridgell and the Samba Team 1992-2011
and_07
() автор топика

А где параметр security?? Вот тебе пример:

[global]
        workgroup = work
        netbios name = linux
        server string = Samba Server
        interfaces = 192.168.1.1/24, 192.168.0.2/24
        log file = /var/log/samba/log.%m
        log level = 3
        Syslog = 0
        max log size = 50
        load printers = No
        preferred master = No
        local master = No
        domain master = No
        dns proxy = No
        security = share

[pub]
        comment = Public folder
        path = /usr/samba/pub
                read only = no
        guest ok = yes

kerneliq ★★★★★
()
Ответ на: комментарий от kerneliq

Как я понял, он пытается подключть шару с маршрутизатора с wifi, а приводит конфиг и логи его компа с Centos 6.3. Поэтому в логах ничего и не будет.

mky ★★★★★
()
Ответ на: комментарий от and_07

man smb.conf

По умолчанию security=user и вам это, вроде как, подходит. «Вроде» — это потому что вы не стали объяснять какая у вас сеть (есть ли там домен, AD).

Я вам уже писал про ″hosts allow″, лучше запишите как в примерах в man'e:

hosts allow = 192.168.1.

Если smbclient работает, попробуйте монтирование с помощью консольной команды (выполнять от root'а):

mkdir /mnt/samba
mount -t cifs -o username=mav //192.168.1.1/Новый_том  /mnt/samba
ls -l /mnt/samba

mky ★★★★★
()
Ответ на: комментарий от mky

уточняю
сеть локальная роутер в квартире у роутера есть usb к нему подключен HDD
цель
хочу в CentOS доступ к файлам без паролей
доступ всем кто подключен к моему wifi

в логах sambы роутера то же ни чего не увидел логи смотрел через web интерфейс

насчет

hosts allow = 192.168.1.
mkdir /mnt/samba
mount -t cifs -o username=mav //192.168.1.1/Новый_том  /mnt/samba
ls -l /mnt/samba

спс попробую

and_07
() автор топика
Ответ на: комментарий от and_07
# testparm -s 
Load smb config files from /etc/samba/smb.conf
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
Processing section "[homes]"
Processing section "[printers]"
Processing section "[shared]"
Global parameter guest account found in service section!
WARNING: The security=share option is deprecated
Loaded services file OK.
Server role: ROLE_STANDALONE
[global]
	workgroup = MAV
	server string = Samba Server Version %v
	security = SHARE
	guest account = mav
	passwd program = smbpasswd
	log file = /var/log/samba/log.%m
	max log size = 50
	preferred master = Yes
	idmap config * : backend = tdb
	guest ok = Yes
	hosts allow = 192.168.1.
	cups options = raw

[homes]
	comment = Home Directories
	valid users = %S
	read only = No
	create mask = 0700
	directory mask = 0700
	browseable = No

[printers]
	comment = All Printers
	path = /var/spool/samba
	printable = Yes
	print ok = Yes
	browseable = No

[shared]
	comment = temp directory
	path = /home/shared
	read only = No
and_07
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.