search for: newip

Displaying 3 results from an estimated 3 matches for "newip".

Did you mean: newid
2005 Oct 14
5
[PATCH] Fix NAT for domU checksum offload
..._nat_proto_udp.c 2005-10-14 15:17:53.000000000 -0500 @@ -112,11 +112,19 @@ udp_manip_pkt(struct sk_buff **pskb, newport = tuple->dst.u.udp.port; portptr = &hdr->dest; } - if (hdr->check) /* 0 is a special case meaning no checksum */ - hdr->check = ip_nat_cheat_check(~oldip, newip, + + if (hdr->check) { /* 0 is a special case meaning no checksum */ + if ((*pskb)->proto_csum_blank) { + hdr->check = ip_nat_cheat_check(oldip, ~newip, + ip_nat_cheat_check(*portptr ^ 0xFFFF, + newport, hdr->check)); + } else { + hdr->check = ip_nat_cheat_check(~ol...
2018 Feb 16
1
iptables routing question when using multiple IP addresses
I've been searching around for a couple of days, and I just can't seem to find the answer I'm looking for. I have a 6.x box that I use as my gateway firewall. It has three NICs; 1 external, 1 internal, 1 for a guest network. I have various inbound traffic routed to separate internal machines based on the application (ie. http, smtp, ftp, etc....). All works well, but I'd
2010 Feb 20
23
Rails 3 possible bug in Routing
Hi, I just ran into this ActionController::RoutingError and just wanted to check if someone can confirm this as a bug in the Rails 3 beta gem. config/routes.rb contains: get ''login'' => ''session#new'' post ''login'' => ''session#create'', :as => :login GET /login works fine: Started GET