similar to: [Bug 118] NAT stops working

Displaying 20 results from an estimated 5000 matches similar to: "[Bug 118] NAT stops working"

2004 Jan 05
1
[Bug 118] NAT stops working
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=118 ------- Additional Comments From owlman@ss.pub.ro 2004-01-05 15:46 ------- Well, here I am again. I just spent one hour tracking the newest instance of the bug. At the end of it I found a workaround and a new direction to search for it. I remind everyone that the machine is a Slackware box with a 2.4.23- vanilla kernel.
2004 Apr 23
1
Proposed RST patch
Here's my proposed patch to change RST handling so that ESTABLISHED connections are subject to strict RST checking, but connections in other states are only subject to the "within the window" check. Part 2 of the patch is simply a patch to netstat so that it displays the statistic. As expected, it's very straightforward, the only real question is what to call the statistic...
2018 Mar 06
0
raster time series statistics
I can't test that at the moment as I don't have the libraries. Perhaps later. Jim On Tue, Mar 6, 2018 at 11:36 AM, <Alexander.Herr at csiro.au> wrote: > Last line in the following (updated) code produces the error > require(raster) > require(rts) > require(stringr) > r <- raster(ncol=100, nrow=100) > values(r) <- runif(ncell(r)) > stack(r)->s >
2018 Mar 06
2
raster time series statistics
Last line in the following (updated) code produces the error require(raster) require(rts) require(stringr) r <- raster(ncol=100, nrow=100) values(r) <- runif(ncell(r)) stack(r)->s r->rs for(i in 1:23){ rs[]<-r[]*i addLayer(s,rs)->s print(nlayers(s)) } dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2), year=sort(rep(2016:2017,12)))
2018 Mar 06
1
raster time series statistics
It works if you use as.Date. But this defeates the purpose for the yearmon notion... require(raster) require(rts) require(stringr) r <- raster(ncol=100, nrow=100) values(r) <- runif(ncell(r)) stack(r)->s r->rs for(i in 1:23){ rs[]<-r[]*i addLayer(s,rs)->s print(nlayers(s)) } dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2), year=sort(rep(2016:2017,12)))
2003 Apr 14
2
(OT) rfc1948 question
Hi, folks @ freebsd-security. First, I am not sure if this is apropriate topic for that list, so sorry, if it is not. Some time ago I have read rfc1948 (protection from blind TCP spoofing) and became interested in the way how it is implemented in FreeBSD. After some googling (BTW if you like Google you might be interested in this: http://register.spectator.ru/img/bart.gif ), I found this:
2018 Mar 06
0
raster time series statistics
> On Mar 5, 2018, at 3:28 PM, <Alexander.Herr at csiro.au> <Alexander.Herr at csiro.au> wrote: > > Hi List, > > The following code returns an "Error in as.POSIXlt.character(x, tz, ...) : character string is not in a standard unambiguous format" I'm unable to produce that error. Which function was being evaluated to produce the error? I don't see
2018 Mar 06
0
raster time series statistics
Hi Herry, This is probably due to a call to strptime (or similar). No, it doesn't accept %Y-%m as a valid format. Maybe add a constant day to all the dates as that will work: dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2), year=sort(rep(2016:2017,12))) timelst<-paste(unlist(dt['year']),unlist(dt['month']),"01",sep="-")
2018 Mar 05
4
raster time series statistics
Hi List, The following code returns an "Error in as.POSIXlt.character(x, tz, ...) : character string is not in a standard unambiguous format" require(raster) require(rts) require(stringi) r <- raster(ncol=100, nrow=100) values(r) <- runif(ncell(r)) list(ID=seq(1:24),month=rep(str_pad(1:12, pad = 0,width = 2 , "left"),2),year=sort(rep(2016:2017,12)))->dt
2003 Aug 08
2
[Bug 118] NAT stops working
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=118 ------- Additional Comments From laforge@netfilter.org 2003-08-08 09:40 ------- Are you really sure it stops forwarding the packets? Have you verified this with tcpdump/ethereal on the public internet interface? Does /proc/net/ip_conntrack still show the NAT entries? Are you sure you are not just trying to use SNAT with a
2004 Aug 05
0
[Bug 118] NAT stops working
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=118 netfilter@linuxace.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID ------- Additional Comments From
2005 Oct 06
2
Error in "15.10 Example of full nat solution with QoS"?
Near the end of section 15.10, the following commands are shown for prioritizing SYN packets: iptables -t mangle -I PREROUTING -p tcp -m tcp --tcp-flags SYN,RST,ACK SYN -j MARK --set-mark 0x1 iptables -t mangle -I PREROUTING -p tcp -m tcp --tcp-flags SYN,RST,ACK SYN -j RETURN Shouldn''t the "-I" option really be "-A"? Like so: iptables -t mangle -A
2008 Jul 30
1
[PATCH] Allow xm to spawn vnc viewer
The new merged qemu no longer has the ability to spawn a vnc viewer process in the bowels of the xend/qemu stack. In this patch we provide support for this use case in a different manner - one more akin to the mechanism used for `xm console'' and `xm create -c''. We introduce new xm options: xm create --vncviewer [--vncviewer-autopass] xm vncviewer [--vncviewer-autopass]
2012 Aug 31
1
Memory Size?
In order to determine the optimum heap size requirements for my embedded C55xx design, I have used the following to get the encoder and decoder memory requirements: size = opus_encoder_get_size(config.channels); enc = malloc(size); error = opus_encoder_init(enc, config.Fs, config.channels, config.application); size = opus_decoder_get_size(config.channels);
2006 Feb 06
2
appeal --- add sd to summary for univariates
just a short beg for the next R 2.3 version: I know it is easy to add the sd into summary() in the source bowels of R---but everytime R is updated, my change disappears. :-(. I do not believe that R has an easy extension mechanism for univariate summaries, short of a function rewrite here. Could this please be added into R 2.3? Aside, a logical ordering might also be: mean sd min q1 med q3
2005 Sep 05
2
[LLVMdev] 1.5 llc hangs w/ GCC 4.0.1?
Hey guys, I just moved to the 1.5 release yesterday. I compiled the Debug version cleanly from sources (I'm not using the gcc frontend) using GCC 4.0.1 (on Fedora Core x86), and I noticed that llc hung in an STL iterator loop given trivial bytecode input (essentially a single function to add a couple of integers). The bytecode compiled fine from llvm assembly via llvm-as. The hang was in one
2003 Aug 07
2
nvi dying with "Resource temporarily unavailable"
Since I upgraded to FreeBSD 4.8 (from 4.5) I've noticed occasional failures of nvi. It will suddenly die as a key is pressed, emitting: Error: input: Resource temporarily unavailable and you are staring at your command prompt. I googled for this message and found that people here and there have been complaining of this since about FreeBSD 4.2, but that absolutely none of them have received
2004 Jan 21
1
Problem with lme, ns and df (variable scoping problem?)
Hi, I'm experimenting with random effect natural splines, and I've encountered an odd problem. library(nlme); library(splines) a <- data.frame(x = 1:10, y = 1:10 + runif(10, min=-3, max=3), c = rep(c(1,2),5)) df <- 10 lml <- lmList(y ~ ns(x,df=df) | c, a) Error in df - 1 : non-numeric argument to binary operator I presume this is because the formula isn't evaluated
2010 Mar 03
1
asterisk SIP, SIPAddHeader() and Cisco GED-125
Greetings: I'm in the situation where I'm trying to splash information picked off by an asterisk IVR into a Cisco call center environment. I'm under the impression that the ONLY way to do this is to setup socket connections with the Cisco "voice processor", or CVP, and send packets corresponding to GED-125. Cisco has a detailed 100+-page document detailing the internals of
2012 Oct 24
0
[LLVMdev] How to Find Instruction Encoding for a MachineInstr
On 10/23/2012 1:58 PM, John Criswell wrote: > Dear All, > > I'm enhancing a MachineFunctionPass that enforces control-flow > integrity. One of the things I want to do is to set the alignment of > an instruction (by adding NOPs before it in the MachineBasicBlock or > by emitting an alignment directive to the assembler) if it causes a > specific sequence of bytes to be