Displaying 20 results from an estimated 800 matches similar to: "samba4 smb.conf directive "dns recursive queries" unkown"
2013 Nov 29
1
Server is not registered with our KDC
Hi there,
I joined a samba 4.1.2 to a Windows 2003 SBS and have some replication
error.
After debugging I found this:
Server ldap/ADSRVS9 at DOMAIN.LOCAL is not registered with our KDC:
Miscellaneous failure (see text): Server (ldap/ADSRVS9 at DOMAIN.LOCAL) unknown
when I try to check with
samba-tool drs kcc -U administrator adsrvs9 -d10
"samba-tool drs showrepl" show that
2013 Sep 04
2
dns update failt (kerberos)
Hi there,
I am struggling with samba4 and the internal dns and kerberos.
It seems that DNS is the problem.
When I aske for kerberos dns entrys on my workstation, I get this
(11.22.33.202 is the samba4 server):
root at lit2:~# dig _kerberos._udp.DOMAIN.LOCAL @11.22.33.202
; <<>> DiG 9.7.3 <<>> _kerberos._udp.DOMAIN.LOCAL @11.22.33.202
;; global options: +cmd
;; Got
2013 Sep 04
1
"Empty" DNS entry, no A record, can't delete or update
Hi,
I am running Samba 4.1.0 with Bind 9.8.4 and I am struggling with an "empty" DNS entry.
I used Microsofts DNS MMC to add an A record to one of my zones, later deleted this entry because I wanted to move the record to another zone. After I moved it backed the A record (and the PTR) was invisible in the MMC.
nslookup still works for the IP and hostname from the PDC and other hosts
2014 Jan 15
1
WERR_TIMEOUT Timeout with internal DNS
Hi there,
we are using Version 4.1.3-SerNet-Debian-7.wheezy deployed as AD with
internal DNS.
Perodically we found this message in samba.log (with debug dns:7):
[2014/01/15 12:01:46.818770, 5]
../source4/dns_server/dns_utils.c:63(werr_to_dns_err)
No mapping exists for WERR_TIMEOUT
In the same time no local DNS entries are not resolvable:
Host: ZAHNADMIN
Alias: ZAHNADMIN
Address:
2013 Dec 03
1
LDAPcmp show errors (serverState, subRefs)
Hi there!
Here it is a setup with an Windows 2003 SBS and two Samba 4.1.2.
Everything is working fine, but I found differences in LDAP and need to
know if this is relevant for replication
samba-tool ldapcmp ldap://sbssrv2003 ldap://samba4.1.2
[...]
Comparing:
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://gaia]
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://samba1]
Attributes
2013 Sep 25
2
samba 4.0.9 Build Error
Hi there,
I tried to build samba 4.0.9 on a Debian Wheezy 7.1 x86 fresh install
and got this error:
[2717/3935] Compiling source3/smbd/scavenger.c
../source3/smbd/scavenger.c: In function ?scavenger_timer?:
../source3/smbd/scavenger.c:482:3: error: format ?%lu? expects argument
of type ?long unsigned int?, but argument 3 has type ?uint64_t?
[-Werror=format]
../source3/smbd/scavenger.c:490:3:
2014 Jan 17
0
Deleting ADDC Cadaver from AD
Hi there,
need some helb please: I build a setup with two samba4 AD servers.
Unfortunately there is a cadaver and doubled servername in the
site-config and I am not able to delete it:
root at sambak26:~# ldbsearch -H /var/lib/samba/private/sam.ldb
'(objectGUID=cf7d8ac1-b0ae-4e72-9129-ed480ee38006)' --cross-ncs -d0
# record 1
dn: CN=NTDS
2013 Oct 10
0
Undeletable DNS Records
Hi,
I build a setup on a Debian Wheezy with samba 4.0.9 and a compiled bind
9.8.4 with this configure options:
./configure --prefix=/usr \
--mandir=\$${prefix}/share/man \
--infodir=\$${prefix}/share/info \
--sysconfdir=/etc/bind \
--localstatedir=/var \
--enable-threads \
--enable-largefile \
--with-libtool \
--enable-shared \
--enable-static \
2009 Jul 17
1
Arules questions. I need some help please
Question 2a)
I am also working with arules package and I have the following problem
let suppose the matrix b like:
b<-matrix(c(1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1),nrow=6)
rownames(b)=c("T1", "T2", "T3", "T4", "T5", "T6")
colnames(b)=c("It1", "It2", "It3", "It4")
bt<-as(b,
2016 Jan 19
2
Why getFunction() of CallGraphNode return NULL function?
Hi all,
I want to find all the called functions in each function, thus I iterate
the calledFunctions of each CallGraphNode in CallGraph as follow:
for (CallGraph::iterator it = CG->begin(); it != CG->end(); ++it) {
CallGraphNode* node = it->second;
for (CallGraphNode::iterator it2 = node->begin(); it2 != node->end();
++it2) {
Function* calledFunc =
2016 Jan 20
2
Why getFunction() of CallGraphNode return NULL function?
Dear Ashutosh,
Thank you, I can handle some indirect callSites by getFunction() of
InvokInst and CallInst.
However, when I am handling C++ programs, I found the calls of member
functions are converted
to some strange indirect calls. For example:
table->truncate(sysTransaction); // from mysql
are translated to the next complex llvm IR:
_ZN8Database20getSystemTransactionEv.exit: ;
2016 Jan 20
2
Why getFunction() of CallGraphNode return NULL function?
So, I won't know the called function statically, Right?
--------------------------------------------
Qiuping Yi
Institute Of Software
Chinese Academy of Sciences
On Wed, Jan 20, 2016 at 2:24 PM, Nema, Ashutosh <Ashutosh.Nema at amd.com>
wrote:
> Typically for C++ virtual function you will see an indirect callSite
> (unless not de-virtualized).
>
>
>
> Regards,
>
2009 Jul 15
4
Extract pairs (rowname, columname) from a matrix where value is 0
Dear sir,
I have a matrix like
a<-matrix(c(0,2,0,4,0,6,5,8,0),nrow=3)
colnames(a)<-c("F1","F2","F3")
rownames(a)<-c("A1","A2","A3")
a
F1 F2 F3
A1 0 4 5
A2 2 0 8
A3 0 6 0
I want to extract all pairs (rownames, columnames) from which the value in
the matrix is 0
The result should be something like this
A1, F1
A2,
2006 Jan 06
2
replace unkown action with 404
is there a way to replace unkown action error with a pretty 404 page ?
I set the ErrorDocument 404 in .htaccess, however when someong goes to
http://www.mysite.com/bogus i would like it to show a 404 error instead of
just "Uknown action".
Is this possible with a rescue or something?
adam
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 May 07
4
dsmark, unkown
Hi,
I want to use the dsmark, but it always says: "unkown qdisc", although I
have enabled it (y in Network options), and I have my kernel recompiled.
I am using SuSE 8.1, 2.4.20 Kernel, tc available at the HTB site (with
already precompiled HTB queue).
Can anybody find the problem?
thx
_________________________________________________________________
MSN 8 helps eliminate e-mail
2007 Feb 25
0
Fedora Core 6 dom0 with a win 2003 server domU; unkown PCI device
Hello,
I''ve got xen installed on a box running Fedora Core 6. In addition
I''m running a Windows 2003 server as a domU. Everything work fine
and I am quite satisfied with the setup. However, in win 2003''s
device manager there is a unknown PCI device that I not able to
find a suitable driver for. Windows update can''t find one either.
Is there a way to find what
2007 Dec 13
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
Hello, Matt.
> Does anybody know what pass is clobbering my obfuscations?
I think this is DAG combiner machinery in the codegenerator itself. Try
to provide -fast option to llc.
--
With best regards, Anton Korobeynikov.
Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2005 Mar 29
0
.call Files and Unkown Keywords
Hey, another question. I am having problems with my call files.
Whenever I drop one into the outgoing folder, I get an "unknown
keyword" error for each line in the file. This is what I have my file
as right now.
Channel: IAX2/scheda:*****@switch-2.nufone.net
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: outgoing
Extension: 18636045489
Priority: 2
On the channel, that may need to
2011 Jan 21
0
Channel in an unkown state
Hello all.
I have a dahdi card with 2 FXO and 1 FXS. I'm able to make calls without any problem. However, when I have an incoming call, I see the following message on the asterisk console:
-- Starting simple switch on 'DAHDI/1-1'
-- Executing [s at DID_trunk_1:1] ExecIf("DAHDI/1-1", "1?SetCallerPres(unavailable)") in new stack
-- Auto fallthrough,
2008 Jul 10
0
Rmpi unkown input format error
I have just installed Rmpi on a Suse 9.1 linux cluster with
openmpi-1.0.1. I am trying the example included below from the tutorial
website. However, I keep getting the following error:
> # Load the R MPI package if it is not already loaded.
> if (!is.loaded("mpi_initialize")) {
+ library("Rmpi")
+ }
>
> # Spawn as many slaves as possible
>