similar to: Some basic questions about accessing DFS/DCE shares with SAMBA 3.0

Displaying 20 results from an estimated 100 matches similar to: "Some basic questions about accessing DFS/DCE shares with SAMBA 3.0"

2002 Nov 26
0
[Bug 445] New: User DCE Credentials do not get forwarded to child session
http://bugzilla.mindrot.org/show_bug.cgi?id=445 Summary: User DCE Credentials do not get forwarded to child session Product: Portable OpenSSH Version: 3.4p1 Platform: Alpha OS/Version: OSF/1 Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: openssh-unix-dev at
2004 Oct 25
0
My 'net ads keytab' can't write to keytab in samba 3.0.6
Hello, I'm trying to authenticate all our linux machines to our ADS domain. As of now, I'm still in the process of setting up all the individual components before pushing the setup out. I've made quite a bit of progress, but I've hit a hitch when trying to add the machine's service principals (the 'host' primary specifically) to its keytab. I've searched, but I
2018 Jun 14
0
CentOS7: Setting up ldap over TLS in kickstart file
On Thu, 14 Jun 2018, Patrick Begou wrote: > Hi, > > I'm facing a problem with setting up LDAP+TLS client authentication in a > kickstart script on CentOS7 for several days. > > Setting up manualy the config with system-config-authentication works but I > need to automate this in kickstart for deploying cluster nodes. > This show that the server side is running fine.
2014 Apr 16
0
Problems with Group Ids and several samba servers
Hello List, we're having a problem mapping groups to a second server acting as a Fileserver. We use tdbsam with local users and groups on the pdc. We now want to add more servers to the setup, authenticating all users/groups via the domain. Adding the appropriate users and groups and do the mapping of uid and gid on the fileservers will be automatically done via ssh with a usradd.sh
2006 Jun 23
1
Samba 3.0.22: share be r/w for LDAP-authenticated users, r/o for anonymous
Hi there, we need to implement the following scenario: - Samba server 3.0.22 (NOT acting as a domain controller; we don't use Windows networking domains) - users use Linux and Windoze - anonymous users accessing a certain share should be granted read-only access - successfully authenticated users should be given read-write access - authentication should be performed against an LDAP that
2009 Sep 29
3
Script consumes memory
I have the following script that when executed, consumes memory and makes the system inaccessible. All process are halted. First, I don't understand what is wrong with the script Secondly, I'm surprised that Linux allows this to run unchecked to the detriment of the entire system. ---- SCRIPT ----- #!/bin/sh FTP="/usr/bin/ftp" # VMID="asystem.ourcompany.com"
2004 Oct 27
0
solved: My 'net ads keytab' can't write to keytab in samba 3.0.6
Hello. I recompiled from the samba.org 3.0.7 SRPMs and it worked like a charm. I think the problem may have been that I was using RHEL3's 3.0.6 samba RPMs which depended on their own krb5-libs, and I used kerberos rpms that don't use e2fsprogs's libcom_err. Anyone privilaged enough to be using RHEL3 to integrate their linux machines into ADS may want to rebuild anything depending on
2004 Dec 21
0
No Ringback tone on Stable 1.0.2
I am noticing that calls that come from our IAX pstn gateway provider and terminate to our Asterisk IVR do not receive ringing when an extension is dialed. For example: 1. An inbound PSTN caller calls our number 2. Asterisk answers and provides greeting 3. PSTN user dials extension of internal SIP phone 4. No ringback is heard from PSTN callers perspective 5. SIP user picks up or the
2015 Jun 08
0
UPower: 95-upower-hid.rules update
On Mon, 2015-06-08 at 13:21 +0200, Arnaud Quette wrote: > > > 2015-06-08 13:09 GMT+02:00 Bastien Nocera <hadess at hadess.net>: > > On Mon, 2015-06-08 at 10:13 +0200, Arnaud Quette wrote: > > > -ATTRS{idVendor}=="06da", ENV{UPOWER_VENDOR}="Liebert" > > > > > > +ATTRS{idVendor}=="06da",
2010 Dec 17
3
online zinto usv
Hello, today I'm fighting with a Online Zinto 1000 (lsusb.txt) produced by Phoenixtec/Eaton ;-) http://www.eaton.com/EatonCom/OurCompany/NewsandEvents/NewsList/CT_141334 I have tested different drivers without success (please see attachments usbhid-ups.txt, bcmxcp_usb.txt, blazer_usb.txt) The help got unfortunately time outs (explore.txt)
2007 May 10
1
dfs/dce and openssh
I searched google and did not find any hits on this being solved. I want to get ssh so I can the dsa/rsa style password it in an environment that uses dfs/dce authentication if that is possible (and it has not already been solved). In other words, I want to be able to log into a host as a dfs/dce user without typing my password. Before I dig into the code and trying to do this, I wanted
2013 Feb 25
6
any available asynchronous dce rpc library?
Hi Thanks in advanced. I'm writing a proxy server doing NTLMv2 authentication. I think I need a NetLogon client service . Is there any available library providing netlogon function? or at least an dce rpc library? an asynchronous library is the best. :) Thanks again. Derek.
2006 Jan 19
1
nmbd and port 135 / dce rpc WINS
These are already open. I'm pretty sure that NT4/2003 PDC's make a DCE/RPC over TCP connection to pull down the <1b> entries from the wins server. I have done packet captures on test NT4 wins server to see how PDC's pull their domain lists, and I see the port 135 three way handshake, which then gets switched over to a tcp port 1028 which is the dce/rpc requests and responses.
2010 Oct 11
3
[LLVMdev] DCE and external function
If I have: %x = call @externalFunc ... ; other codes where %x is not used ret ; assume void function and use dce optimization, will the call gets eliminated? -- View this message in context: http://old.nabble.com/DCE-and-external-function-tp29932485p29932485.html Sent from the LLVM - Dev mailing list archive at Nabble.com.
2010 Oct 11
0
[LLVMdev] DCE and external function
Hi leledumbo, > If I have: > > %x = call @externalFunc > ... ; other codes where %x is not used > ret ; assume void function > > and use dce optimization, will the call gets eliminated? only if the compiler can prove that the called function has no side effects (such as modifying some global variables or causing the program to exit). Ciao, Duncan.
2010 Oct 13
2
[LLVMdev] DCE and external function
Hi, On Mon, Oct 11, 2010 at 3:46 PM, Duncan Sands <baldrick at free.fr> wrote: > Hi leledumbo, > >> If I have: >> >> %x = call @externalFunc >> ... ; other codes where %x is not used >> ret ; assume void function >> >> and use dce optimization, will the call gets eliminated? > > only if the compiler can prove that the called function has
2010 Oct 13
0
[LLVMdev] DCE and external function
>>> If I have: >>> >>> %x = call @externalFunc >>> ... ; other codes where %x is not used >>> ret ; assume void function >>> >>> and use dce optimization, will the call gets eliminated? >> >> only if the compiler can prove that the called function has >> no side effects (such as modifying some global variables or
2011 Jun 21
2
[LLVMdev] [PATCH] Get DCE to consider livein PhysRegs to successor basic blocks.
Adds code to have DCE start off with a list of physical registers to be live on entry to at least one successor basic block (as mentioned in the FIXME comment). -- Sanjoy Das http://playingwithpointers.com -------------- next part -------------- A non-text attachment was scrubbed... Name: FIXME.patch Type: text/x-diff Size: 899 bytes Desc: not available URL:
2011 Jun 21
0
[LLVMdev] [PATCH] Get DCE to consider livein PhysRegs to successor basic blocks.
On Jun 21, 2011, at 12:51 AM, Sanjoy Das wrote: > Adds code to have DCE start off with a list of physical registers to be > live on entry to at least one successor basic block (as mentioned in the > FIXME comment). Looks good, but keep the comment (sans FIXME).
1999 Nov 25
0
DCE Patch
Hi all. I am submitting a patch that adds DCE authentication and credential attaching. Fully legit, no ugly hacks ;) I looked (some) at Paul Henson's <henson at acm.org> patch for ssh-1.2.20 while coding. The patch [attached] is against pre14, but DCE and AIX patches for pre15 will follow shortly. I threw in this patch just to prove i'm working on it. :) Happy Hacking, //T-?