[Bug 506464] [NEW] snmp not enabled in squid

2010-01-12 Thread frenet
Public bug reported:

Binary package hint: squid

Squid is not built with support for snmp. It prevents to monitor squid.
Solution is to add --enable-snmp in debian/rules.

F.

** Affects: squid (Ubuntu)
 Importance: Undecided
 Status: New

-- 
snmp not enabled in squid
https://bugs.launchpad.net/bugs/506464
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 503777] Re: Loop with moved_temporarily and when using storeurl

2010-01-12 Thread frenet
I disagree with the importance assigned to this bug. Working with a small rural 
ISP in northern India, youtube is more than 25% of our bandwidth and content 
delivery network (hi5, facebook, yimg) are another 10%. Without the ability 
of using storeurl it means that more than one third of the traffic is not 
cacheable. 
I'd like to see this bug raised to critic and that's why I nominate it for 
release.

-- 
Loop with moved_temporarily and when using storeurl
https://bugs.launchpad.net/bugs/503777
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 503777] [NEW] Loop with moved_temporarily and when using storeurl

2010-01-06 Thread frenet
Public bug reported:

Binary package hint: squid

As described at : 
http://wiki.squid-cache.org/ConfigExamples/DynamicContent/YouTube/Discussion 
there is a bug with http 302 response moved_temporarily when using storeurl.
The storeurl stores the 302 instead of following the redirect and then a loop 
occurs. 

The fix to ignore small sized object : minimum_object_size 512 bytes is
not always working, just burnt myself with 302 bigger than 512 bytes
from youtube.

The patch described works perfectly on squid_2.7.STABLE7-1ubuntu1 from
lucid. Both Lucid and Karmic are affected by this bug.

The patch is small :
--- src/client_side.c   2008-10-30 07:37:56 +0800
+++ src/client_side.c   2008-11-05 23:44:55 +0800
@@ -2399,6 +2399,18 @@
is_modified = 0;
}
 }
+   /* bug fix for 302 moved_temporarily loop bug when using storeurl*/
+   if (mem-reply-sline.status == HTTP_MOVED_TEMPORARILY) {
+   const char *cloc = httpHeaderGetStr(e-mem_obj-reply-header, 
HDR_LOCATION);
+   if (!strcmp(http-uri,cloc)) {
+   debug(33, 1) (Loop Detected: %s Redirect to: %s\n,
+   http-uri,cloc);
+   http-log_type = LOG_TCP_MISS;
+   clientProcessMiss(http);
+   return;
+   } 
+   }
+   /* bug fix end here*/
 stale = refreshCheckHTTPStale(e, r);
 debug(33, 2) (clientCacheHit: refreshCheckHTTPStale returned %d\n, 
stale);
 if (stale == 0) {

It was not integrated upstream even in the last head branch. Hope to
have it included in Ubuntu LTS.

** Affects: squid (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Loop with moved_temporarily and when using storeurl
https://bugs.launchpad.net/bugs/503777
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to squid in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 57974] Re: VTun client segfault

2009-11-25 Thread frenet
Using vtun 3.0.2-2ubuntu2 on x86_64 this bug is still showing when LZO 
compression is turned on, at least in client mode.
Same as on debian :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477707

Patch is available :
http://sourceforge.net/mailarchive/forum.php?thread_name=20081220215633.110005bc%40sics.seforum_name=vtun-devel

And is reported to work


** Changed in: vtun (Ubuntu)
   Status: Fix Released = Incomplete

** Bug watch added: Debian Bug tracker #477707
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477707

-- 
VTun client segfault
https://bugs.launchpad.net/bugs/57974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vtun in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs