找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 1863|回复: 4

samba4共享设置请前辈们帮助一下

[复制链接]
发表于 2021-1-24 12:23 | 显示全部楼层 |阅读模式
openwrt编译安装了samba4,配置如下,但是无法访问

  1. [global]
  2.         netbios name = |NAME|
  3.         interfaces = |INTERFACES|
  4.         server string = |DESCRIPTION|
  5.         unix charset = |CHARSET|
  6.         workgroup = |WORKGROUP|

  7.         ## This global parameter allows the Samba admin to limit what interfaces on a machine will serve SMB requests.
  8.         bind interfaces only = no

  9.         ## time for inactive connections to-be closed in minutes
  10.         deadtime = 15

  11.         ## disable core dumps
  12.         enable core files = no

  13.         ## set security (auto, user, domain, ads)
  14.         security = auto

  15.         ## This parameter controls whether a remote client is allowed or required to use SMB encryption.
  16.         ## It has different effects depending on whether the connection uses SMB1 or SMB2 and newer:
  17.     ## If the connection uses SMB1, then this option controls the use of a Samba-specific extension to the SMB protocol introduced in Samba 3.2 that makes use of the Unix extensions.
  18.         ## If the connection uses SMB2 or newer, then this option controls the use of the SMB-level encryption that is supported in SMB version 3.0 and above and available in Windows 8 and newer.
  19.         ## (default/auto,desired,required,off)
  20.         smb encrypt = auto

  21.         ## set invalid users
  22.         #invalid users = root

  23.         ## map unknow users to guest
  24.         map to guest = Bad User

  25.         ## allow client access to accounts that have null passwords.
  26.         null passwords = yes

  27.         ## The old plaintext passdb backend. Some Samba features will not work if this passdb backend is used. (NOTE: enabled for size reasons)
  28.         ## (tdbsam,smbpasswd,ldapsam)
  29.         passdb backend = smbpasswd

  30.         ## Set location of smbpasswd ('smbd -b' will show default compiled location)
  31.         #smb passwd file = /etc/samba/smbpasswd

  32.         ## LAN/WAN options (IPTOS_LOWDELAY TCP_NODELAY) WAN (IPTOS_THROUGHPUT)
  33.         socket options = IPTOS_LOWDELAY TCP_NODELAY

  34.         ## If this integer parameter is set to a non-zero value, Samba will read from files asynchronously when the request size is bigger than this value.
  35.         ## Note that it happens only for non-chained and non-chaining reads and when not using write cache.
  36.         ## The only reasonable values for this parameter are 0 (no async I/O) and 1 (always do async I/O).
  37.         ## (1/0)
  38.         #aio read size = 0
  39.         #aio write size = 0

  40.         ## If Samba has been built with asynchronous I/O support, Samba will not wait until write requests are finished before returning the result to the client for files listed in this parameter.
  41.         ## Instead, Samba will immediately return that the write request has been finished successfully, no matter if the operation will succeed or not.
  42.         ## This might speed up clients without aio support, but is really dangerous, because data could be lost and files could be damaged.
  43.         #aio write behind = /*.tmp/

  44.         ## lower CPU useage if supported and aio is disabled (aio read size = 0 ; aio write size = 0)
  45.         ## currently broken (NOTE: see https://bugzilla.samba.org/show_bug.cgi?id=14095 )
  46.         ## (no, yes)
  47.         #use sendfile = yes

  48.         ## samba will behave as previous versions of Samba would and will fail the lock request immediately if the lock range cannot be obtained.
  49.         #blocking locks = No

  50.         ## disable loading of all printcap printers by default (iprint, cups, lpstat)
  51.         load printers = No
  52.         printcap name = /dev/null

  53.         ## Enabling this parameter will disable Samba's support for the SPOOLSS set of MS-RPC's.
  54.         disable spoolss = yes

  55.         ## This parameters controls how printer status information is interpreted on your system.
  56.         ## (BSD, AIX, LPRNG, PLP, SYSV, HPUX, QNX, SOFTQ)
  57.         printing = bsd

  58.         ## Disable that nmbd is acting as a WINS server for unknow netbios names
  59.         #dns proxy = No

  60.         ## win/unix user mapping backend
  61.         #idmap config * : backend = tdb

  62.         ## Allows the server name that is advertised through MDNS to be set to the hostname rather than the Samba NETBIOS name.
  63.         ## This allows an administrator to make Samba registered MDNS records match the case of the hostname rather than being in all capitals.
  64.         ## (netbios, mdns)
  65.         mdns name = mdns

  66.         ## Clients that only support netbios won't be able to see your samba server when netbios support is disabled.
  67.         #disable netbios = Yes

  68.         ## Setting this value to no will cause nmbd never to become a local master browser.
  69.         #local master = no

  70.         ## (auto, yes) If this is set to yes, on startup, nmbd will force an election, and it will have a slight advantage in winning the election. It is recommended that this parameter is used in conjunction with domain master = yes, so that nmbd can guarantee becoming a domain master.
  71.         #preferred master = yes

  72.         ## (445 139) Specifies which ports the server should listen on for SMB traffic.
  73.         ## 139 is netbios/nmbd
  74.         smb ports = 445 139

  75.         ## This is a list of files and directories that are neither visible nor accessible.
  76.         ## Each entry in the list must be separated by a '/', which allows spaces to be included in the entry. '*' and '?' can be used to specify multiple files or directories as in DOS wildcards.
  77.         veto files = /Thumbs.db/.DS_Store/._.DS_Store/.apdisk/

  78.         ## If a directory that is to be deleted contains nothing but veto files this deletion will fail unless you also set the delete veto files parameter to yes.
  79.         delete veto files = yes

  80. ################ Filesystem and creation rules ################
  81.         ## reported filesystem type (NTFS,Samba,FAT)
  82.         #fstype = FAT

  83.         ## Allows a user who has write access to the file (by whatever means, including an ACL permission) to modify the permissions (including ACL) on it.
  84.         #dos filemode = Yes

  85.         ## file/dir creating rules
  86.         #create mask = 0666
  87.         #directory mask = 0777
  88.         #force group = root
  89.         #force user = root
  90.         #inherit owner = windows and unix
  91. ################################################################
复制代码


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
我的恩山、我的无线 The best wifi forum is right here.
发表于 2021-1-24 15:55 | 显示全部楼层
同问!希望大神解答

点评

果断重新编译samba36了  详情 回复 发表于 2021-1-24 22:36
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-1-24 22:36 | 显示全部楼层
小允 发表于 2021-1-24 15:55
同问!希望大神解答

果断重新编译samba36了
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-1-25 15:41 | 显示全部楼层
我也是因为SAMB4 换回老版本了
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2022-1-28 20:25 | 显示全部楼层

复制代码
这是我的模板
然后用cmd登陆ssh root@openwrt的iproot@openwrt的ip's password:密码是不可见的

root@OpenWrt:~# smbpasswd -a root
New SMB password:密码是不可见的
Retype new SMB password:密码是不可见的
Added user root.


最后在“系统”-“启动项”-“启动脚本”-“samba4”-重启
就可以用\\openwrt的ip直接访问
如果密码错误
可以这样,openwrt/root
       密码

我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-3-29 07:26

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表