search for: rta

Displaying 20 results from an estimated 305 matches for "rta".

Did you mean: ata
2009 Sep 03
2
localhost/PING is CRITICAL
Hi all, I've recently switched to the latest rt kernel available from http://people.centos.org/hughesjr/kernel-rt And one of the two problems I'm having with this new kernel is that the logs have been flooded with nagios alerts which indicate high percentage (50-60) of packet loss when pinging localhost. The problem shows up several hours after the system reboot. Any ideas on what might
2007 Mar 02
4
significant anova but no distinct groups ?
Dear all, I am studying a dataset using the aov() function. The independant variable 'cds' is a factor() with 8 levels and here is the result in studying the dependant variable 'rta' with aov() : > summary(aov(rta ~ cds)) Df Sum Sq Mean Sq F value Pr(>F) cds 7 0.34713 0.04959 2.3807 0.02777 Residuals 92 1.91635 0.02083 The dependant variable 'rta' is normally distributed and variances are homogeneous. But when studying the resul...
2005 Mar 20
3
Adding dsmark qdisc fails
I''m trying to configure dsmark qdisc on 2.6.11.4 user mode linux and tc from iproute2-2.6.11-050314. I think I have some mismatch in my setup since adding dsmark qdisc fails *unless* I specify "set_tc_index" argument which I believe should be optional: # tc qdisc add dev eth1 handle 1:0 root dsmark indices 8 RTNETLINK answers: Invalid argument Mar 20 13:00:50 user user.debug
2006 Jul 25
3
problem in Route add using netlink
...ta */ inet_aton("192.168.51.0", (struct in_addr *)&rinfo->dstAddr); inet_aton("192.168.51.90", (struct in_addr *)&rinfo->gateWay); } int addAttr (struct nlmsghdr *nlhdr, int maxlen, int type, void *data, int alen) { struct rtattr *rta; int len = RTA_LENGTH(alen); if (NLMSG_ALIGN(nlhdr->nlmsg_len) + len > maxlen) return -1; rta = (struct rtattr*)((char *)nlhdr + NLMSG_ALIGN(nlhdr->nlmsg_len)); rta->rta_type = type; rta->rta_len = len; memcpy(R...
2006 Jun 22
0
RTA, jitter, MOS et al over the internet
I have been in the process of trying to troubleshoot a phone system that is doing IAX trunking to a provider. The average RTA is 75ms with spikes from time to time and jitter from time to time as well. My question is this; How much can one trust this types of samples when going over the internet? I mean who knows who is doing what kind of ICMP rate limiting or dropping ICMP all together? What is a good measurement or trou...
2007 Sep 27
1
libFLAC++ Seeking
?rta: > ?rta: > > Hello, > > I've a problem with seeking using libFLAC++ API. > The call to seek_absolute always returns with false, whatever I do. > > I tried many different ways, finally I tried to reduce my added code to near zero, so I used the cpp decode example...
2004 Mar 18
6
[PATCH] packet delay scheduler
...+ del_timer(&q->timer); +} + +static void dly_timer(unsigned long arg) +{ + struct Qdisc *sch = (struct Qdisc *)arg; + + sch->flags &= ~TCQ_F_THROTTLED; + netif_schedule(sch->dev); +} + +/* Tell Fifo the new limit. */ +static int change_limit(struct Qdisc *q, u32 limit) +{ + struct rtattr *rta; + int ret; + + rta = kmalloc(RTA_LENGTH(sizeof(struct tc_fifo_qopt)), GFP_KERNEL); + if (!rta) + return -ENOMEM; + + rta->rta_type = RTM_NEWQDISC; + ((struct tc_fifo_qopt *)RTA_DATA(rta))->limit = limit; + ret = q->ops->change(q, rta); + kfree(rta); + + return ret; +} + +/* Se...
2004 May 13
2
xtable without rownames
...n't figure out how to not include the row names. When I attempt to NULL out the row names using, but cannot follow the links. Browser tells me the page is unavailable. When I attempt to blank out the row names using, rownames(summary.table) <- NULL I get the following error > rownames(rta) <- NULL Error in "dimnames<-.data.frame"(`*tmp*`, value = dn) : invalid dimnames given for data frame > the resulting (incorrect) table appears as, > xtable( rta ) % latex table generated in R 1.9.0 by xtable 1.2-2 package % Wed May 12 17:38:21 2004 \begin{table}[ht] \begi...
2012 Apr 02
2
Reading first line before using read.table()
So far I have figured out that the following line reads our time series files into R OK. dtLs$dta <- read.table("C:/TryRRead/datFiles/JFeqfi4h.rta", header = TRUE, sep = ",", colClasses = "character") But I have to remove a main-title line so that the first line is the column titles line. This leads to having two sets of data files around when we would rather have just one set. How can I read just one line from the...
2006 Jun 06
1
Asterisk Realtime and SIP Registration
...ssfully and I see this when entering 'sip show peers': sipout-test/12345 IP.AD.DR.ESS 5060 UNKNOWN This line does not show up when I registering my phone to my asterisk server. But it shows up immediately after registerung the phone when I use config files instead of RTA. I don't know wheter this is RTA- or a config-problem. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060606/c8aa04aa/attachment.htm
2020 Jul 20
3
Migrate GPO policies does not work properly.
...sdb] not found - do you need to set > LDB_MODULES_PATH? > Unable to load modules for /var/lib/samba/private/sam.ldb:(null) > Failed to connect to /var/lib/samba/private/sam.ldb - (null) > > Best, > > Robert > > 2020. 07. 17. 15:11 keltez?ssel, Rowland penny via samba ?rta: > > On 17/07/2020 14:00, Csorba R?bert via samba wrote: > >> Hi, > >> > >> I successfully migrated my GPO policies in a new installation of > >> domain controller. > > Where did you migrate them from and to where ? > >> > >> After...
2004 Mar 04
1
how to create NTConfig.POL?
Is there a way to create an NTConfig.POL file without having access to an NT4, w2k or w2k3 server? Is there a way to do it in linux? Or a winxp/9x workstation?
2006 Jan 04
5
Webservice External XMLRPC
Hello i have some trouble getting my webservice to run . I have the following webservice : class DirectSpoolAPI < ActionWebService::API::Base api_method :add, :expects => [{:html=>:string},{:from=>:string}], :returns => [Customer] end class DirectSpoolService < ActionWebService::Base web_service_api DirectSpoolAPI def add(html,from) Customer.find(:first) end
2004 Aug 10
2
netlink api
...ementation detail), both the iproute2/ip/tc source and the kernel source (which have no usable documentation/comments), etc. Andi''s man pages and rfc3549 were a great help in getting into the basics of the netlink api, but I can''t seem to find anything more specific about the RTA TLV''s, order of RTA''s, which RTA''s are optional, which are required, etc. I''m thinking about writing a C++ library for netlink sockets, but I don''t necessarily want to spend the next 6 months wading through kernel source to figure out that I had a s...
2007 Sep 26
2
libFLAC++ Seeking
Hello, I've a problem with seeking using libFLAC++ API. The call to seek_absolute always returns with false, whatever I do. I tried many different ways, finally I tried to reduce my added code to near zero, so I used the cpp decode example in ...\flac-1.2.1\examples\cpp\decode\file\.main.cpp and added only one line: bool b=decoder.seek_absolute(1000); right before ok =
2011 May 25
1
AEC learning behaviour
Perhaps you could add a warm-start to the AEC, such that the parameters start near the correct values on all but the first use? Stuart On 05/25/2011 08:22 AM, Andras Kadinger wrote: > 2011.05.25. 4:52 keltez?ssel, Arun Raghavan ?rta: >> On Tue, 2011-05-24 at 11:09 -0400, Jean-Marc Valin wrote: >>> The fact that the AEC takes a few seconds to converge is normal. The >> Do you think there might be a way to reduce this? > The shorter you make the tail length the faster it will adapt. But this > will ma...
2011 May 26
2
AEC learning behaviour
...e did was keep the AEC running between calls - but we had a > rather high-duty system with sounds and signals played between calls, so > the AEC almost continuously had signal to stay adapted on. > This is the suboptimal approach... > 2011.05.25. 20:29 keltez?ssel, Stuart O. Anderson ?rta: >> Perhaps you could add a warm-start to the AEC, such that the parameters >> start near the correct values on all but the first use? ... and this is considered to be the optimum approach (for e.g. stationary units). It is this latter which I asked in this mailing list about, some...
2024 Mar 14
1
Unable to utilize past 1 gbps
...ched please find a screenshot from Proxmox on statistics. Do you know any ice cast servers that puts out more than 1 gbps for a longer period? Just curious whether anyone was able to go beyond 1 gbps for an extensive time. Thank you! Best, Zsolt zsolt makkai <gvmzsolt at gmail.com> ezt ?rta (id?pont: 2024. m?rc. 14., Cs, 23:39): > Dear Marius, > > Our station is Megadanceradio in Hungary. > > Our status page for the master server is: > http://45.67.158.93:8000/status.xsl For the slave: > http://45.67.158.94:8000/status.xsl > > We are peaking at around 11.0...
2020 Jul 20
2
Migrate GPO policies does not work properly.
...r I got these errors. WARNING:Module [samba_dsdb] not found - do you need to set LDB_MODULES_PATH? Unable to load modules for /var/lib/samba/private/sam.ldb:(null) Failed to connect to /var/lib/samba/private/sam.ldb - (null) Best, Robert 2020. 07. 17. 15:11 keltez?ssel, Rowland penny via samba ?rta: > On 17/07/2020 14:00, Csorba R?bert via samba wrote: >> Hi, >> >> I successfully migrated my GPO policies in a new installation of >> domain controller. > Where did you migrate them from and to where ? >> >> After I joined a Windows 10 machine to the dom...
2004 Oct 20
2
Samba + (LDAP + Kerberos V)
So like at least a handful of people before me I have begun the valiant stugle to unify logins at my place of business. I have setup a test LDAP + Kerberos V cluster. And I have Setup a test Samba 3 PDC. What I would like to do is get Samba to handle kerberos ticket granting and authentication to the (LDAP + Kerberos V) Directory. Such that Windows is completely unaware of the existence of