similar to: Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients

Displaying 20 results from an estimated 200 matches similar to: "Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients"

2019 Mar 01
0
Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients
Could you see if anything useful in the logs indicating why the ACL was not returned? Instructions are at: https://wiki.samba.org/index.php/LinuxCIFS_troubleshooting#Enabling_Debugging (it is easier for newer kernels due to dynamic tracing e.g. "trace-cmd record -e cifs" but even with these older kernels it should be enough information in the dmesg logs - if not a wireshark trace
2019 Feb 27
2
Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients
On Tue, Feb 26, 2019 at 09:03:41AM -0800, Jeremy Allison via samba wrote: > > Check out the latest cifsfs code. I think Steve > and Aurelian and Ronnie added an ioctl for this. > > I'm here at Vault in Boston with Steve, I'll ask > him :-). Steve says there are two utilities in Linux, getcifsacl and setcifsacl that use a custom ioctl inside the Linux cifsfs kernel
2004 Nov 10
2
Problem with lowercase Computernames in winbind samba 3.0.8
Hi, we have several samba servers running as AD members (w2003 domain). Since the Upgrade to samba 3.0.8 the following message appears, when accessing a share on the memberserver from clienthost rmts2. [2004/11/10 12:09:02, 1] smbd/sesssetup.c:reply_spnego_kerberos(250) Username NTROBOTIC\rmts2$ is invalid on this system [2004/11/10 12:09:02, 1] smbd/sesssetup.c:reply_spnego_kerberos(250)
2019 Jan 15
2
getcifsacl does not work with CIFS mount versions 2 or 3
Hi When I mount CIFS share (mount -t cids) with vers=1.0 I can perform getcifsacl sucessfully. But when I mount with vers=2.0, or 2.1, or 3.0, ACL reading fails. getxattr error: 95 REVISION:0x0 CONTROL:0x0 Why getcifsacl depends on SMB protocol version? Can I read ACL via newer SMB protocol? A asked on Serverfault but without reply:
2012 Mar 06
0
NFS Selinux issues
I'm having a strange problem with selinux and the mounting of a nfs directory. I'm specifying the security context as part of the mount command, yet the security context still shows nfs. The mount shows what the security context should be: [root at clienthost ~]# mount serverhost:/usr/local on /usr/local type nfs4
2009 Jan 21
1
Usage of on-connect and on-disconnect
Hi guys , I ' m reading the icecast documentation , in particular here: http://www.icecast.org/docs/icecast-2.3.1/icecast2_config_file.html#mount For the on-connect and on-disconnect functions , I read: on-connect State a program that is run when the source is started. It is passed a parameter which is the name of the mountpoint that is starting. The processing of the stream does not
2019 Jan 23
1
getcifsacl does not work with CIFS mount versions 2 or 3
On Wed, 23 Jan 2019 09:47:11 +0100 Miloslav Hůla via samba <samba at lists.samba.org> wrote: > Dne 2019-01-15 v 13:22 Miloslav Hůla via samba napsal(a): > > When I mount CIFS share (mount -t cids) with vers=1.0 I can perform > > getcifsacl sucessfully. But when I mount with vers=2.0, or 2.1, or > > 3.0, ACL reading fails. > > > > getxattr error: 95 >
2010 Nov 08
7
winbind sometimes does not resolve sid to a name
Sometimes a group sid does not get resolved to its name. Is this a settings problem? Looks like winbind deamon went dormant for a while and then woke up? I am using interface wbcLookupSid provided by the library libwbclient.so for resolving sids to names. These are the winbind related parameters in /etc/samba/smb.conf [global] # separate domain and username with '\', like
2018 Jun 25
1
works with 4.7.6, fails with 4.8.2: echo > $(mktemp /mnt/XXXXXX)
Hi, I have a regression test suite that creates this simple share: [tmp] comment = Temp Directory guest ok = Yes path = /tmp read only = No This is mounted via SMB1: mount //localhost/tmp -o guest,vers=1.0 /mnt The client (ubuntu 18.10 dev) is using cifs-utils 2:6.8-2 from debian (it's a sync). Client and server are the same machine (localhost). When the server is
2010 Mar 23
2
Connect to MySQL monitor on another host in the LAN ?
Hi, I'm running a medical application on a local network, using MySQL as a database. The application can also connect to remote hosts, so the idea is to install it on one machine acting as a "server", and then install it on the other machines on the LAN, but configure these to use the database on the "server". I guess before doing that, I'll better try and get
2006 Jun 02
4
smbmount and win2003 sp1
Hi All: I encountered a problem with smbmount and win2003 sp1. Before I upgrade sp1, everything works fine. But after sp1, smbmount = can't work. The command and error message are as follows: smbmount //localhost/share1 /tmp/mountest -o = username=3Ddomainu1,password=3Dpassword ERRDOS - ERRnoaccess (Access Denied.) SMB connection failed I also checked the release note about the issue, and
2010 Jan 22
0
No subject
* Lists itself as a PDC * Lists itself as a LMB * No ADMIN$ IPC share listed (Is this normal?) I am unsure as how to check the Admin domain accounts on the server. 2 user accounts (for now) asc1 asc2 on computers ascoffice1.lefty (172.16.32.8) and ascoffice2.lefty (172.16.32.9) server is earth.lefty (172.16.32.2) DHCP, BIND set up correctly (AFAICT) i can ping host names from earth and ascoffice1
2000 Nov 24
2
Getting the authctxt
My port forwarding changes require an authorization (authentication) context in channel_connect_to(). I'd like to change the dispatch_* functions so that they accept an Authctxt * instead of a void * (this parameter is already used this way). In addition, I'd have to pass the authctxt all the way down to channel_connect_to(). As a side effect, it's possible to get rid of the global
2019 Feb 28
2
Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients
ACL management can be done for SMB2/SMB3 ACLs with two common tools depending on your preference. smbcacls (somewhat similar to using cacls.exe or icacls.exe in Windows but specifying the UNC name rather than a local path name). smbcacls sets up and tears down a network connection each time it is run and uses Samba user space code. or setcifsacl/getcifsacl (which calls cifs.ko to access the
2019 Feb 27
0
Using Access Control Lists with SMB2/SMB3 Mounts on Linux Clients
Dear Jeremy, thanks for your instant reply. :-) Along with Linux native getfacl/fetfacl, I also tested getcifsacl/setcifsacl (for sure thoroughly ;-)). Unfortunately, these CIFS client tools seem to have been designed as part of the "old" CIFS Unix Extensions, working only for SMB/CIFS mounts, and are not supposed to work with SMB2/SMB3 mounts, as I guess. During my tests, the
2016 Feb 15
3
Usiing SID's in Linux? Is it possible?
I would like to be able to use SID's in linux so as to have ACL's identical to windows. Example usage why: Say I have an ntfs partitioned disk that I share with a co-worker that uses windows. Currently I am connected to the domain using rfc2307 and that allows me to authenticate using AD and on the nfs through the Isilon the windows users see files correctly permissioned but when I share
2006 Mar 31
1
Linux -> Windows Server2003 Leaves Open Files...
I was hoping the Samba experts on this list can help me with an irritating issue... I have an issue with Windows file servers (Server2003) thinking that files are open with they are not. The problem occurs when one or more linux servers using smbfs mounts under FedoraCore4 opens the same file(s) at the same time. This test script can exhibit the issue: # CAREFUL to kill this after a few
2013 Dec 11
2
samba-tool gpo aclcheck error
G'day Guys, We are running Centos 6.4, samba4.0.10, compiled from tgz. Has anyone come up with this one before? samba-tool gpo aclcheck ERROR(<type 'exceptions.KeyError'>): uncaught exception - 'No such element' File "/usr/local/samba/lib64/python2.6/site-packages/samba/netcmd/__init__.py", line 175, in _run return self.run(*args, **kwargs) File
2020 Sep 25
2
cifsacl not working
On 9/25/20 5:14 AM, Aur?lien Aptel wrote: > Ken Bass via samba <samba at lists.samba.org> writes: >> Can you please expand on this, I am confused as to what you are >> suggesting.? If 'getent pass' works properly and shows no >> overlap/confusion, this seems to be related to cifsacl. > It's still hard to say at this point. > > cifs.idmap logs
2005 Oct 19
2
IceS & Ogg/Theora
On Tue, 2005-10-18 at 22:44 -0500, oddsock wrote: > ezstream will read from stdin if you use "stdin" as the <filename> in your > conf file. What kind of data does it expect on stdin? just a file name? how will it trigger/request another filename when the current one is over? Thank you for your contributions :-) -- Administration & Formation ? l'administration de