search for: parse_dfs_path

Displaying 9 results from an estimated 9 matches for "parse_dfs_path".

2014 Mar 05
1
DFS
...h an account which has administrator rights from a win7 machine, isn't working, it says I don't have rights to open that shared directory. Related log: root at domainc02:/var/log# tail -f syslog samba/samba.log | grep informatika smbd_smb2_create: name[domainc02\dfs\informatika\desktop.ini] parse_dfs_path: temp = |domainc02\dfs\informatika\desktop.ini| after trimming \'s parse_dfs_path: rest of the path: informatika/desktop.ini dfs_path_lookup: Conn path = /home/dfs reqpath = informatika/desktop.ini unix_convert called on file "informatika/desktop.ini" stat_cache_lookup: lookup succeed...
2013 May 26
3
samba4 & (domain) dfs
..._xattr.c:193(connect_acl_xattr) connect_acl_xattr: setting 'inherit acls = true' 'dos filemode = true' and 'force unknown acl user = true' for service IPC$ [2013/05/26 20:52:46.581753, 10, pid=27834, effective(0, 20513), real(0, 0), class=msdfs] ../source3/smbd/msdfs.c:115(parse_dfs_path) parse_dfs_path: temp = |samba4-2\dfs| after trimming \'s [2013/05/26 20:52:46.581882, 10, pid=27834, effective(0, 20513), real(0, 0), class=msdfs] ../source3/smbd/msdfs.c:140(parse_dfs_path) parse_dfs_path: hostname: samba4-2 [2013/05/26 20:52:46.581987, 10, pid=27834, effective(0, 20513),...
2009 Jul 01
0
Troubles with dfs-linked root shares
...bd/vfs.c:vfs_init_default(95) Initialising default vfs hooks [2009/07/01 10:05:16, 3, pid=19190, effective(0, 0), real(0, 0)] smbd/vfs.c:vfs_init_custom(128) Initialising custom vfs hooks from [/[Default VFS]/] [2009/07/01 10:05:16, 10, pid=19190, effective(500, 500), real(500, 0)] smbd/msdfs.c:parse_dfs_path(88) parse_dfs_path: temp = |disc\personal| after trimming \'s [2009/07/01 10:05:16, 10, pid=19190, effective(500, 500), real(500, 0)] smbd/msdfs.c:parse_dfs_path(111) parse_dfs_path: hostname: disc [2009/07/01 10:05:16, 10, pid=19190, effective(500, 500), real(500, 0)] smbd/msdfs.c:parse_df...
2007 Apr 04
1
DFS not working from XP
...ge_to_user uid=(0,1544) gid=(0,100) [2007/03/31 14:42:12.369711, 4, pid=24846] smbd/vfs.c:vfs_ChDir(741) vfs_ChDir to /tmp [2007/03/31 14:42:12.370058, 10, pid=24846] smbd/trans2.c:call_trans2getdfsreferral(4938) call_trans2getdfsreferral [2007/03/31 14:42:12.370343, 10, pid=24846] smbd/msdfs.c:parse_dfs_path(44) temp in parse_dfs_path: .server\share. after trimming \'s [2007/03/31 14:42:12.370584, 10, pid=24846] smbd/msdfs.c:parse_dfs_path(54) parse_dfs_path: hostname: server [2007/03/31 14:42:12.370860, 10, pid=24846] smbd/msdfs.c:setup_dfs_referral(834) max_referral_level :3 [2007/03/31 14...
2019 Oct 22
2
smbclient: Renaming file on DFS root fails with NT_STATUS_OBJECT_PATH_NOT_FOUND
...kernel also uses a non-dfs path and doesn't set the header flag This means, path handling for cli_rename() needs to be changed. IMHO there are two possibilities: - Extend cli_resolve_path() to be able to also return a non-dfs path - Strip server/share from fname_dst in cli_rename(), e.g. with parse_dfs_path() from smbd
2009 Oct 26
3
changing kickoff time
Hello everybody, we moved our samba server to a new machine. This included changing the samba version from 3.024 to 3.4.2 and changing the OS from Linux to Opensolaris. Samba was compiled from scratch. Passdb Backend is tdb. After the upgrade everything works fine......except: Some users can not login, due to an expired account. Further investigation showed that the "Kickoff Time"
2019 Oct 22
0
smbclient: Renaming file on DFS root fails with NT_STATUS_OBJECT_PATH_NOT_FOUND
...th and doesn't set the header flag > > This means, path handling for cli_rename() needs to be changed. > IMHO there are two possibilities: > - Extend cli_resolve_path() to be able to also return a non-dfs path > - Strip server/share from fname_dst in cli_rename(), e.g. with > parse_dfs_path() from smbd Can you send a debug level 10 log from smbclient so I can see the exact problem ? Also, can you log a bug at bugzilla.samba.org so we can track the fix for this ? Thanks ! Jeremy.
2001 Oct 04
5
msdfs
Hello, Last week I submitted a problem with msdfs on samba. I didn't receive any reaction. I've also tried the samba-cvs version but this has also problems. We really like to use msdfs from samba, because we want to put all our homedirectories ( more than 4000 ) in one dfsroot. This is not possible with Microsoft's dfs because this has a limit of 1000 .... I didn't found this
2003 Dec 01
0
No subject
...* check if need to redirect */ fstrcpy(path, conn->connectpath); fstrcat(path, "/"); - fstrcat(path, dp.volumename); + fstrcat(path, dp.reqpath); if(is_msdfs_link(conn, path)) { DEBUG(4,("dfs_redirect: Redirecting %s\n",temp)); return True; @@ -346,8 +339,8 @@ parse_dfs_path(pathname,&dp); DEBUG(8,("dfs_findfirst_redirect: path %s is in Dfs. dp.restofthepath=.%s.\n", - pathname,dp.restofthepath)); - if(!(*(dp.restofthepath))) { + pathname,dp.reqpath)); + if(!(*(dp.reqpath))) { create_nondfs_path(pathname,&dp); return False; } Index: rp...