search for: vci

Displaying 20 results from an estimated 34 matches for "vci".

Did you mean: pci
2008 Sep 26
0
Confidence interval for binomial variance
...variance #created: 09.26.08 by r.a. labudde #changes: require('binGroup') binomVarCI<- function (n, x, conf=0.95) { p<- x/n #proportion if (p<0.25 | p>0.75 | x==0 | x==n) { #use proportion-based CI pCI<- binWilson(n, x, conf.level=conf) #CI for proportion vCI<- sort(c(pCI[1]*(1-pCI[1])/(n-1), pCI[2]*(1-pCI[2])/(n-1))) } else { #use chi-square-based CI phiL<- qchisq(0.025, n-1)/(n-1) phiU<- qchisq(0.975, n-1)/(n-1) #vest<- p*(1-p)/(n-1)) #variance estimate vCI<- c(vest/phiU, vest/phiL) #chi-square-based } ret...
2007 Apr 18
1
[Bridge] Problem with Routed mode using br2684ctl tool
...nasx interfaces and eth0. >From user space, setting up a bridge connection is quite simple. First, the linking an ATM VC with an interface should be done followed by configuring this interface. The syntax of the command is the following: br2684ctl [-c n -e 0|1 -b 0|1 -s buf_size -a [itf].vpi.vci ]+ -a [itf].vpi.vci : ATM PVC number, VPI and VCI. Mandatory -c n : BR2684 interface number such as nas0, nas1,... Mandatory -e 0|1 : Encapsulation method. 0=LLC, 1=VC mux. default is 0, LLC -b 0|1 : Running background. 1=backgr...
2000 Apr 25
0
Wrong SEs in predict.lm(..., type="terms")
...eep out column means # before we start for (i in seq(1,nterms,length=nterms)){ ii<-piv[asgn[[i]]] predictor[,i]<-X[,ii,drop=F]%*%(beta[ii]) if (se.fit){ ii2_asgn[[i]] # X[,piv] matches rows & columns of R vci<-R[ii2,ii2]*res.var for(j in (1:NROW(X))){ xi<-X[j,ii,drop=F] # Do not multiply by beta[ii] ip[j,i]<-sum(xi%*% vci %*%t(xi)) } } } Here is the existing (1.0.0) code: if (type=="terms"){ asgn <- attrassign(o...
2000 Apr 26
0
Wrong SEs in predict.lm(..., type="terms") (PR#528)
...column means # before we start } for (i in seq(1,nterms,length=nterms)){ ii<-piv[asgn[[i]]] predictor[,i]<-X[,ii,drop=F]%*%(beta[ii]) if (se.fit){ ii2_asgn[[i]] # X[,piv] matches rows & columns of R vci<-R[ii2,ii2]*res.var for(j in (1:NROW(X))){ xi<-X[j,ii,drop=F] # Do not multiply by beta[ii] ip[j,i]<-sum(xi%*% vci %*%t(xi)) } } } Here is the existing section of the (1.0.0) code: if (type=="terms"){ asgn &lt...
2002 Sep 04
3
RedHat kickstart with PXELINUX
We are attempting to setup an automated system to build some Linux systems. We have utilised the PXELINUX bootloader after encountering the PXE 512Kb limit with bootp. We now have another issue which you may have already run into. In the DHCP configuration we specify pxelinux.0 as the bootfile, this works reasonable well, we call the Redhat vmlinuz and initrd.img files within the
2004 Dec 10
0
MySQL - mistake in previous post
...Discussion Sent: Friday, December 10, 2004 10:02 AM Subject: Re: [Asterisk-Users] MySQL Post your extconfig.conf. Do you have /usr/lib/asterisk/modules/res_config_mysql.so installed? Do you have /etc/asterisk/res_mysql.conf? -Matthew ----- Original Message ----- From: "Bill" <admin@vci.net> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com> Sent: Friday, December 10, 2004 8:14 AM Subject: Re: [Asterisk-Users] MySQL > Matthew, > > I followed these instructions this morning and something about it'...
2014 Oct 03
1
RE: DHCP option 93 for UEFI
Ady, There are at least 3 ways to set up your DHCP server to differentiate between std DHCP, BIOS PXE and UEFI PXE. Option 93 (arch) is one way. In ISC syntax, here's 3 ways: 1. Match on VCI class "pxe-clients" { match if substring (option vendor-class-identifier, 0, 9) = "PXEClient"; set vendor-string = substring ( option vendor-class-identifier, 0, 9); set vendor-class option vendor-class-identifier; option tftp-server-name "192.168.0.100&...
2005 Jun 06
1
Interleave cells with IP over ATM?
Anyone know if it''s possible to interleave two IP packets when using PPPoA and VC based lines? Can it be done with any PPPoE implementations? The goal is to reduce the delay when you have a high priority packet waiting, but a lower priority (large) packet already started going out ahead of this packet. I don''t want the overhead of much smaller MTU, which is the other way
2009 Aug 03
2
Mailbox locking problem with iphone and POP3
I have a problem I can't seem to fix. I have dovecot configured to do POP3 with plain text authentication using a MySQL database. I am using Dovecot 1.0.7 with fcntl locking. My problem has been when an iPhone/iPod checks email. The iPhone/iPod doesn't disconnect with a TCP FIN packet and it leaves the mailbox in a locked state and prevents the user's desktop from checking
2004 Dec 09
4
MySQL, CDR with MySQL
I'm preparing to roll out Asterisk for the voicemail portion of my VOIP network. This week I downloaded a fresh version from CVS of Asterisk and installed the following MySQL 4.1.7 RPMs directly from Mysql.org For some reason after I enable MySQL for CDR and Voicemail in the cdr_mysql.conf and voicemail.conf I don't get any MySQL functionality at all. It almost seems as though MySQL
2014 Sep 21
1
UEFI PXE / split config / TFTP attempted to DHCP server, not TFTP server
...I'm doing wrong. Or confirm my suspicions. I have a test lab server at work. Split config. The network team manages the DHCP servers, points to our TFTP server. Test subnet has 3 DHCP pools. BIOS PXE, UEFI PXE and catch-all (straight DHCP). DHCP server is filtering on client's initial VCI (option 60). PXEClient:Arch:00000* => BIOS PXE boot client PXEClient:Arch:00007* => UEFI PXE boot client empty => std DHCP request This is all working correctly. Based on the OFFERed DHCP addresses (& wireshark analysis), I can tell it's being associated with the correct...
2014 Nov 07
2
Can't UEFI boot PXELinux on WDS server
...the dhcp configuration is also changed accordingly. What I mean is that the syslinux.efi file _is_ the "boot file", so what "boot file for the architecture of the PXE client" you are referring to?. I have DHCP policies set up to return a different bootfile name depending on the VCI advertised by the client. E.g. When the client reports DHCP Option 60 as "PXEClient:Arch:00007:UNDI:003016" the DHCP server returns Option 67 as "\boot\x64\syslinux.efi" >Regarding the path you mentioned, the "isolinux" part seems strange. >There is no "i...
2010 Dec 25
0
For sale Yamaha DGX-640 Grand Piano Keyboard for $450USD
...USD Pioneer DJM-1000 Mixer ...................$1000USD Pioneer DJM-400 Professional DJ Mixer..........$300USD Allen & Heath Xone:92 Fader DJ Mixer...........$1000USD Allen & Heath Xone:464 16 Input Pro Club DJ Mixer......$1100USD Allen & Heath Xone:02 Battle Mixer.........$280USD Vestax VCI-300 DJ Controller with Serato ITCH Black..... $350USD Vestax PMC-05PROIII DJ Mixer.....$300USD Vestax PMC-500 DJ Mixer.......$900USD Vestax PMC-05PROSL DJ Mixer with Sampling.....$350USD Vestax PMC-06 Pro A 2 Channel DJ Scratch Mixer......$200USD Vestax VCI-100 Tabletop DJ MIDI Controller ............
2020 Jun 04
1
Unable to map AD Users to existing local Unix users since 4.8.x
...e continue to support AD Users mapping to pre-existing Unix Users? Do we just need to compile our own Samba to get back that functionality? Sample configuration for a server pre-Samba 4.8.x that mapped users correctly to local unix: ---------------------------------- [global] workgroup = USVCI001 server string = Samba Server name security = ADS realm = USVCI001.VCI.NA.VWG kerberos method = secrets and keytab log file = /var/log/samba/%m.log max log size = 1000 load printers = No local master = No domain master = No read only = No printing = bsd printcap name = /dev/null wide...
2004 Aug 25
1
Voicemail forwarding from SER & extensions.conf
I have SER running with Asterisk, both on seperate servers. If I call another SIP number from my SIP phone SER looks up the phone number to see if it's online. If it's not online it forwards the call to Asterisk. How do I configure the extensions.conf file so that calls being forwarded to Asterisk destined for VoiceMail do not conflict with normal outbound calls destined for the PSTN?
2004 Dec 09
6
very OT - basic newbie networking question
Sorry to ask such a basic question: I have a * box with 2 nics in the following setup: Internet | 192.168.5.253 (firewall) | 192.168.5.xxx network (gw 192.168.5.253) | 192.168.5.10 (* nic 1) 192.168.6.10 (* nic 2) | 192.168.6.xxx network The netmask for both networks is 255.255.255.0 The 192.168.6.xxx networks has a 48 port switch solely for the use of cicso 7940 phones, the 192.168.5.xxx is
2004 May 21
5
T100P HDLC configuration
...interface t1 1 framing esf interface t1 1 operation mode hdlc interface t1 1 priority-queuing enable yes interface t1 1 pvc 1 yes interface t1 1 pvc 1 enable yes interface t1 1 pvc 1 tag "Circuit 1" interface t1 1 pvc 1 vpi 0 interface t1 1 pvc 1 vci 35 interface t1 1 pvc 1 cp default interface t1 1 pvc 1 voice no interface t1 1 pvc 1 pcr 0 interface t1 1 prm-enable no interface t1 1 rfc1973 enable no interface t1 1 rfc1973 dlci 16 interface t1 1 rfc1973 lmi none interface t1 1 cell-for...
2014 Nov 28
0
pxelinux efi64 boot woes on hyper-v gen 2
...cial dhcp configuration mixing {l,}pxelinux.0 with syslinux.efi. As for the "arch 9 vs. arch 7" conflict, my comment was not in regard to the (conflicting) documentation. I mean it regarding your own conditional. You are starting with "if arch = 9" and then you react with a VCI stating that "arch = 7"; it doesn't make sense to me. Regarding the "ISC DHCP 3.1" syntax, you "think" it works? I would suggest simplifying your dhcp config and your network setup. Once the basic UEFI case(s) are working, you could then add complexity. I woul...
2014 Feb 14
1
lda+ldap multiple users
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, 7 Feb 2014, matthias lay wrote: > I experienced that if a Mailaddress matches several users the delivery is > aborted. > > ---------------- > dovecot: auth: Error: ldap(christian.test at securepoint.de): LDAP search > returned multiple entries > dovecot: auth: ldap(christian.test at securepoint.de): unknown user >
2014 Nov 28
1
pxelinux efi64 boot woes on hyper-v gen 2
..., this email thread is getting slightly harder to read and to follow. As for the "arch 9 vs. arch 7" conflict, my comment was not in regard to the (conflicting) documentation. I mean it regarding your own conditional. You are starting with "if arch = 9" and then you react with a VCI stating that "arch = 7"; it doesn't make sense to me. Luke: It's trivial Arch 9 isn't used here yet, it's a typo it only ever sent out the Arch 7 one. I am using wireshark to confirm what the DHCP is sending out and receiving in both cases. The problem PXE-E99 is reporte...