From owner-freebsd-isp@FreeBSD.ORG Mon Mar 27 08:56:32 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62E1516A400 for ; Mon, 27 Mar 2006 08:56:32 +0000 (UTC) (envelope-from Tyrone@telecity.se) Received: from s200aog3.obsmtp.com (s200aog3.obsmtp.com [207.126.144.87]) by mx1.FreeBSD.org (Postfix) with SMTP id 916E443D45 for ; Mon, 27 Mar 2006 08:56:31 +0000 (GMT) (envelope-from Tyrone@telecity.se) Received: from source ([195.149.172.5]) by eu1sys200aob003.obsmtp.com ([207.126.147.11]) with SMTP; Mon, 27 Mar 2006 08:56:30 UTC Content-class: urn:content-classes:message MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Mon, 27 Mar 2006 10:56:30 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: udp packet problem Thread-Index: AcZQHljBuUe2qUuQTJWGR4E3QaeUEw== From: To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: udp packet problem X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Mar 2006 08:56:32 -0000 We have a Freebsd 5.4 router doing traffic shaping on a vlan interface. =20 Problem is we can't receive UDP packets larger than 2K is this a limitation or a setting within IPFW? =20 How can I fragment UDP packets that are larger than the interface MTU ? kernel option or FW ruleset ? =20 regards =20 =20 Tyrone=20 DISCLAIMER This e-mail is intended only for the use of the addressees named above and may be confidential. If you are not an addressee you must not use any information contained in nor copy it nor inform any person other than TeleCity or the addressees of its existence or contents. If you have received this e-mail in error, please contact the TeleCity IT department on +44 (0) 161 232 3220 or by email at techsupport@telecity.com. Internet communications cannot be guaranteed 100% secure, you should therefore take this potential lack of security into consideration when emailing us as we do not accept legal responsibility for the security of the contents of this or other = emails. Whilst TeleCity take measures to prevent any virus contamination of our computer systems, recipients of emails should always ensure that they take their own precautions to avoid virus contamination. =0D From owner-freebsd-isp@FreeBSD.ORG Mon Mar 27 20:03:56 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92AEF16A41F for ; Mon, 27 Mar 2006 20:03:56 +0000 (UTC) (envelope-from b.candler@pobox.com) Received: from rune.pobox.com (rune.pobox.com [208.210.124.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6DE943D4C for ; Mon, 27 Mar 2006 20:03:55 +0000 (GMT) (envelope-from b.candler@pobox.com) Received: from rune (localhost [127.0.0.1]) by rune.pobox.com (Postfix) with ESMTP id 9F1E4371F0; Mon, 27 Mar 2006 15:04:16 -0500 (EST) Received: from mappit.local.linnet.org (212-74-113-67.static.dsl.as9105.com [212.74.113.67]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by rune.sasl.smtp.pobox.com (Postfix) with ESMTP id 4A2533717F; Mon, 27 Mar 2006 15:04:15 -0500 (EST) Received: from lists by mappit.local.linnet.org with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1FNxwM-0000E8-Gp; Mon, 27 Mar 2006 21:03:50 +0100 Date: Mon, 27 Mar 2006 21:03:50 +0100 From: Brian Candler To: Tyrone@telecity.se Message-ID: <20060327200350.GA843@uk.tiscali.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: freebsd-isp@freebsd.org Subject: Re: udp packet problem X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Mar 2006 20:03:56 -0000 On Mon, Mar 27, 2006 at 10:56:30AM +0200, Tyrone@telecity.se wrote: > We have a Freebsd 5.4 router doing traffic shaping on a vlan interface. > > Problem is we can't receive UDP packets larger than 2K is this a > limitation or a setting within IPFW? * Show your exact setup: what version of FreeBSD, what types of NIC you have, how you have configured them, how you've configured ipfw etc. * Show what makes you think that UDP packets larger than 2K are being dropped. (For example, show a tcpdump of packets on the incoming interface and on the outgoing interface. Show what program you're using to send UDP packets) * Preferably, boil this down to a simple test which demonstrates the problem in the simplest possible way. For example, if you turn off ipfw completely and can still demonstrate the problem, then this shows that ipfw is not at fault. > How can I fragment UDP packets that are larger than the interface MTU ? This happens automatically when sending packets. Inbound packets which are larger than the configured MTU but successfully received, are accepted and not modified. But outbound packets which are larger than the MTU of the interface they are about to be sent out from, are fragmented. > kernel option or FW ruleset ? No, it just happens (unless you can demonstrate otherwise). Once you have a more accurate description of your problem, freebsd-net is probably a better place to post it. HTH, Brian. From owner-freebsd-isp@FreeBSD.ORG Tue Mar 28 08:40:39 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF90D16A400 for ; Tue, 28 Mar 2006 08:40:39 +0000 (UTC) (envelope-from y.layani@ns1.kaiman.org) Received: from ns1.kaiman.org (ns1.kaiman.org [213.186.39.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E18E43D48 for ; Tue, 28 Mar 2006 08:40:39 +0000 (GMT) (envelope-from y.layani@ns1.kaiman.org) Received: (from y.layani@localhost) by ns1.kaiman.org (8.11.6/) id k2S8cBW32334 for freebsd-isp@freebsd.org; Tue, 28 Mar 2006 10:38:11 +0200 Date: Tue, 28 Mar 2006 10:38:11 +0200 Message-Id: <200603280838.k2S8cBW32334@ns1.kaiman.org> To: freebsd-isp@freebsd.org From: "YAEL LAYANI" Precedence: junk Subject: This is an autoreply...[Re: Returned mail: see transcript for details] X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Mar 2006 08:40:40 -0000 Bonjour, J'ai bien reçu votre message. Vous recevrez une réponse très prochainement. Merci, A Bientôt, Mlle Yaël Layani Chargée de recrutement 04.42.79.38.86 E.S.T.C. 1161 Ave Jean Monnet 13127 Vitrolles 04.42.79.38.86 www.estc.fr From owner-freebsd-isp@FreeBSD.ORG Tue Mar 28 17:21:59 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B0AD16A44F for ; Tue, 28 Mar 2006 17:21:59 +0000 (UTC) (envelope-from lyris-noreply@news1-active.com) Received: from news1-active.com (news1-active.com [63.150.144.48]) by mx1.FreeBSD.org (Postfix) with SMTP id 87FA8449A7 for ; Tue, 28 Mar 2006 16:50:01 +0000 (GMT) (envelope-from lyris-noreply@news1-active.com) Message-Id: X-lyris-type: auto-responder From: "Active.com" To: freebsd-isp@freebsd.org Date: Tue, 28 Mar 2006 08:53:32 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Subject: Active.com Email Info X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Mar 2006 17:22:00 -0000 You have responded to a no-reply address. The next few options should help you accomplish your original goal quickly: UNSUBSCRIBING ------------- Two easy ways to unsubscribe from Active Weekly... 1) Send a blank email to leave-news@mail.active.com or 2) Send a blank message to the personal unsubscribe address at the bottom of every newsletter you receive COMMENTS AND OTHER FEEDBACK --------------------------- We welcome all praise, constructive critisism, complaints, and suggestions. Simply email them to feedback@active.com CUSTOMER SERVICE ---------------- If you need technical support or any assistance with our services, please contact support@active.com : From owner-freebsd-isp@FreeBSD.ORG Thu Mar 30 21:56:01 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D86E16A420 for ; Thu, 30 Mar 2006 21:56:01 +0000 (UTC) (envelope-from netsecuredata@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93AC243D53 for ; Thu, 30 Mar 2006 21:56:00 +0000 (GMT) (envelope-from netsecuredata@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so110995wri for ; Thu, 30 Mar 2006 13:55:59 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=EBdXLGzf67uDBF7fqgixeMHUy39eajKb7XAsTaXBSTuymSBP5AUODnM96ccOiwvfiBtOwvWox5xDNnBLD9k8f8jMXVhq+p+6ljsqNQrPE6RdEgPMvTmM/DkD/bWRWD2RJ8IzMbOd2OHcfa1jgXYpoag/+C9S5SOb178WGSTThrA= Received: by 10.54.129.5 with SMTP id b5mr600274wrd; Thu, 30 Mar 2006 13:27:50 -0800 (PST) Received: by 10.54.89.8 with HTTP; Thu, 30 Mar 2006 13:27:50 -0800 (PST) Message-ID: Date: Thu, 30 Mar 2006 16:27:50 -0500 From: "Jorge Evangelista" To: freebsd-isp@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Problem sometimes Freebsd crash X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Mar 2006 21:56:01 -0000 Hi friends, My name is Jorge, i am from Peru, excuse me for my english, I have a server with FreeBSD 4.11-RELEASE #2 and Bandwitdh Manager (bwmgrd), but I have many problems with it, I have rise up mbuf clusters in my server to 16384 (It I have made in the file /boot/loader.conf), before It was configured to 12000. Now I do not have logs about Mar 3 20:42:57 trafico /kernel: All mbuf clusters exhausted, please see tuning(7). Mar 3 20:46:49 trafico /kernel: All mbuf clusters exhausted, please see tuning(7). Mar 3 20:46:52 trafico /kernel: All mbuf clusters exhausted, please see tuning(7). Mar 9 20:31:24 trafico /kernel: All mbuf clusters exhausted, please see tuning(7). Mar 9 20:31:27 trafico /kernel: All mbuf clusters exhausted, please see tuning(7). However, sometimes my server still hang, crash. I have to reboot the server for that I work again. If I have enough memory, why bwmgrd no use it, I do not why it said 59 requests for memory denied There are some logs #netstat -m 1881/9050/16384 mbuf clusters in use (current/peak/max) 20364 Kbytes allocated to network (41% of mb_map in use) 59 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines This is report of my server memory # muse -m Active: 34.305 MB Inactive: 171.328 MB Wired: 133.832 MB Reserved: 1.949 MB Cache: 0.000 MB Kernel: 0.133 MB Interrupt: 0.008 MB Buffer: 137.203 MB Total: 1252.453 MB Free: 912.988 MB ET/BWMGR Driver v3.25b Thanks, for your help. -- "The network is the computer" From owner-freebsd-isp@FreeBSD.ORG Thu Mar 30 23:11:59 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3A2216A401 for ; Thu, 30 Mar 2006 23:11:58 +0000 (UTC) (envelope-from matt@frii.com) Received: from mail.frii.com (phobos02.frii.net [216.17.128.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC8DA43D45 for ; Thu, 30 Mar 2006 23:11:58 +0000 (GMT) (envelope-from matt@frii.com) Received: from elara.frii.com (elara.frii.com [216.17.128.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.frii.com (FRII) with ESMTP id 4AC3BA4CDE; Thu, 30 Mar 2006 16:11:58 -0700 (MST) Date: Thu, 30 Mar 2006 16:11:58 -0700 (MST) From: Matt Ruzicka X-X-Sender: mattr@elara.frii.com To: Jorge Evangelista In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-isp@freebsd.org Subject: Re: Problem sometimes Freebsd crash X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Mar 2006 23:11:59 -0000 I don't have any experience with Bandwidth Manager so I'm not really sure what it should be doing in this case. I can say that we had something similar happen to us a while back on our web servers with the same symptoms. I wasn't really part of that project at the time, but I know we have the entry kern.ipc.nmbclusters="16384" in our /boot/loader.conf to specifically up the mbuffs. I don't remember if we also needed to add anything to our kernel specifically as well though. I'd check out the tuning man page as the error indicates to see what can be done to increase the mbufs. It is likely that bwmgrd isn't able to affect the mbuf maximums because it is kernel or boot time setting and can't be changed once the box is running. Good luck. Matthew Ruzicka - Systems Administrator Front Range Internet, Inc. matt@frii.net - (970) 212-0728 Got SPAM? Take back your email with MailArmory. http://www.MailArmory.com On Thu, 30 Mar 2006, Jorge Evangelista wrote: > Hi friends, > > My name is Jorge, i am from Peru, excuse me for my english, I have a > server with FreeBSD 4.11-RELEASE #2 and Bandwitdh Manager (bwmgrd), > but I have many problems with it, I have rise up mbuf clusters in my > server to 16384 (It I have made in the file /boot/loader.conf), before > It was configured to 12000. Now I do not have logs about > > Mar 3 20:42:57 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:49 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:52 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:24 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:27 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > > However, sometimes my server still hang, crash. I have to reboot the > server for that I work again. If I have enough memory, why bwmgrd no > use it, I do not why it said 59 requests for memory denied > > > > > There are some logs > > #netstat -m > > 1881/9050/16384 mbuf clusters in use (current/peak/max) > 20364 Kbytes allocated to network (41% of mb_map in use) > 59 requests for memory denied > 0 requests for memory delayed > 0 calls to protocol drain routines > > > This is report of my server memory > > # muse -m > Active: 34.305 MB > Inactive: 171.328 MB > Wired: 133.832 MB > Reserved: 1.949 MB > Cache: 0.000 MB > Kernel: 0.133 MB > Interrupt: 0.008 MB > Buffer: 137.203 MB > > Total: 1252.453 MB > Free: 912.988 MB > > > ET/BWMGR Driver v3.25b > > Thanks, for your help. > > -- > "The network is the computer" > _______________________________________________ > freebsd-isp@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-isp > To unsubscribe, send any mail to "freebsd-isp-unsubscribe@freebsd.org" > From owner-freebsd-isp@FreeBSD.ORG Fri Mar 31 00:48:18 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E2FA16A401 for ; Fri, 31 Mar 2006 00:48:18 +0000 (UTC) (envelope-from dwoolworth@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E1DC43D5A for ; Fri, 31 Mar 2006 00:48:17 +0000 (GMT) (envelope-from dwoolworth@gmail.com) Received: by zproxy.gmail.com with SMTP id l8so630240nzf for ; Thu, 30 Mar 2006 16:48:16 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ZyXLIUzaum7PacFXZ0maVW5aKrDVmJnimSqXpgQmQh0DLCuxoZ1GYiajyuLFG6FGGB85ubqUkwLu/crMlMBwa8+7hmqZwx5PoT5YbRpRpNuYOhx/3ca7gCl2xws4VrORmA4jMTgASG6c2T+Iw6bjV/RxM7e3DDnQ7Vyr+nGiLCE= Received: by 10.35.78.13 with SMTP id f13mr201871pyl; Thu, 30 Mar 2006 16:48:15 -0800 (PST) Received: by 10.35.65.12 with HTTP; Thu, 30 Mar 2006 16:48:15 -0800 (PST) Message-ID: <10fd06c60603301648t1f3e07c2s99af5a744114ba69@mail.gmail.com> Date: Thu, 30 Mar 2006 18:48:15 -0600 From: "Derrick T. Woolworth" To: "Jorge Evangelista" , freebsd-isp@freebsd.org In-Reply-To: MIME-Version: 1.0 References: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Problem sometimes Freebsd crash X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Mar 2006 00:48:18 -0000 Jorge, Are you using the kernel that comes with bwmgr or a custom one you built? What other options do you have set besides tweaking the mbufs - if you're using your's? You may need to talk directly to Emerging Technologies - especially if you're using their licensed version of the software and not the demo. They'll probably be a lot better at helping you troubleshoot this problem..= . I'm thinking that since this isn't an open source thing it'll probably be difficult for the fellows within this community to help, but if ET doesn't help you out, reply with some additional information about your system like the hardware specs and your custom kernel config, if you built one. Good Luck, D On 3/30/06, Jorge Evangelista wrote: > > Hi friends, > > My name is Jorge, i am from Peru, excuse me for my english, I have a > server with FreeBSD 4.11-RELEASE #2 and Bandwitdh Manager (bwmgrd), > but I have many problems with it, I have rise up mbuf clusters in my > server to 16384 (It I have made in the file /boot/loader.conf), before > It was configured to 12000. Now I do not have logs about > > Mar 3 20:42:57 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:49 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:52 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:24 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:27 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > > However, sometimes my server still hang, crash. I have to reboot the > server for that I work again. If I have enough memory, why bwmgrd no > use it, I do not why it said 59 requests for memory denied > > > > > There are some logs > > #netstat -m > > 1881/9050/16384 mbuf clusters in use (current/peak/max) > 20364 Kbytes allocated to network (41% of mb_map in use) > 59 requests for memory denied > 0 requests for memory delayed > 0 calls to protocol drain routines > > > This is report of my server memory > > # muse -m > Active: 34.305 MB > Inactive: 171.328 MB > Wired: 133.832 MB > Reserved: 1.949 MB > Cache: 0.000 MB > Kernel: 0.133 MB > Interrupt: 0.008 MB > Buffer: 137.203 MB > > Total: 1252.453 MB > Free: 912.988 MB > > > ET/BWMGR Driver v3.25b > > Thanks, for your help. > > -- > "The network is the computer" > _______________________________________________ > freebsd-isp@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-isp > To unsubscribe, send any mail to "freebsd-isp-unsubscribe@freebsd.org" > -- Derrick T. Woolworth, President ServeTheWeb, LLC. http://www.ServeTheWeb.com From owner-freebsd-isp@FreeBSD.ORG Fri Mar 31 06:54:29 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCD9716A453 for ; Fri, 31 Mar 2006 06:54:29 +0000 (UTC) (envelope-from perlao@catic.com.cn) Received: from dailystar.com.lb (215.Red-83-33-150.dynamicIP.rima-tde.net [83.33.150.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 51C6C43D4C for ; Fri, 31 Mar 2006 06:54:26 +0000 (GMT) (envelope-from perlao@catic.com.cn) Message-ID: <000001c6548f$e82abf90$68a5a8c0@bgt63> From: "Perla Niemeyer" To: freebsd-isp@freebsd.org Date: Fri, 31 Mar 2006 01:54:07 -0500 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: news day X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Perla Niemeyer List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Mar 2006 06:54:29 -0000 D B ear Home Ow f ner ,=20 =20 Your cr L edi c t doesn't matter to us !=20 =20 Your c f red I it doesn't matter to us ! If you O k WN real e c st X at 7 e=20 and want IMMED H IAT A E ca B sh to spen D d ANY way you like, or simply wish=20 to LO 2 WER your monthly p s ayment w s by a third or more, here are the de U aI U s=20 we have T f ODA O Y :=20 =20 $ 48 2 8,000 at a 3, c 67% fi F xed - ra n te=20 $ 3 m 72,000 at a 3 i ,90% vari 6 able - rat X e=20 $ 4 k 92,000 at a 3, 5 21% i z nteres Z t - onl z y=20 $ 2 r 48,000 at a 3, I 36% fi X xed - ra h te=20 $ 1 v 98,000 at a 3,5 B 5% va z riable - ra u te=20 =20 Hu i rry, when these de B aI i s are gone, they are gone ! =20 Don't worry about approva j l, your c n redit will not d 5 isquali J fy you !=20 =20 V b is A it our si 3 te =20 =20 Sincerely, Perla Niemeyer =20 Ap Y prova U l Manager From owner-freebsd-isp@FreeBSD.ORG Fri Mar 31 07:36:23 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A8FE16A424 for ; Fri, 31 Mar 2006 07:36:23 +0000 (UTC) (envelope-from atielle@maratonadiroma.it) Received: from mailgate3.9netweb.it (mailgate3.9netweb.it [66.71.190.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DC2A43D46 for ; Fri, 31 Mar 2006 07:36:22 +0000 (GMT) (envelope-from atielle@maratonadiroma.it) Received: by mailgate3.9netweb.it (DSCM-Postfix) id 8181E2C0042E; Fri, 31 Mar 2006 09:36:29 +0200 (CEST) Delivered-To: atielle@maratonadiroma.it To: freebsd-isp@freebsd.org Message-Id: <20060331073629.8181E2C0042E@mailgate3.9netweb.it> Date: Fri, 31 Mar 2006 09:36:29 +0200 (CEST) From: atielle@maratonadiroma.it Subject: Virus ricevuto -- Virus received X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Mar 2006 07:36:23 -0000 Questo messaggio e` stato automaticamente generato per informarvi che un messaggio da voi inviato (o inviato da un virus che ha falsificato il vostro indirizzo email) e` stato bloccato dall'antivirus installato su questo mail server. Di seguito potete trovare alcuni dettagli relativi al messaggio bloccato: virus trovati (virus found): Exploit.HTML.IFrame mittente protocollo (envelope from): freebsd-isp@freebsd.org mittente dichiarato (header from): freebsd-isp@freebsd.org destinatario (header to): atielle@maratonadiroma.it oggetto (subject): Mail Delivery (failure atielle@maratonadiroma.it) This message has been automatically generated to inform you that one of your emails has been discarded by the antivirus installed on this mail server. The details above refer to the message which has been blocked. Please verify the integrity of your system. From owner-freebsd-isp@FreeBSD.ORG Fri Mar 31 14:54:51 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FC1816A401 for ; Fri, 31 Mar 2006 14:54:51 +0000 (UTC) (envelope-from bounce-sexnewsletter-1043077@lists.xandria.com) Received: from lyris.lists.xandria.com (lyris.lists.xandria.com [66.116.102.240]) by mx1.FreeBSD.org (Postfix) with SMTP id 2AB7243D49 for ; Fri, 31 Mar 2006 14:54:51 +0000 (GMT) (envelope-from bounce-sexnewsletter-1043077@lists.xandria.com) From: "Xandria Collection" To: freebsd-isp@freebsd.org Date: Fri, 31 Mar 2006 03:59:00 -0800 Content-Transfer-Encoding: 8bit Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Something Extra from Xandria! X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Xandria Collection List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Mar 2006 14:54:51 -0000 [header_1.jpg] [header_2.jpg] [header_3.jpg] [header_4.jpg] [header_5.jpg] [header_6.jpg] [header_7.jpg] [header_8.jpg] [header_9.jpg] [1]xandria vibrators [2]xandria dildos [3]xandria sensual massage [4]xandria lotions,lube and condoms [5]xandria toys for boys [6]xandria internet sale [header_16.jpg] [DkPurple_pixel.gif] [welcome.jpg] Greetings S.E.X. Subscribers! March 31, 2006 0 Spring is here and it is a great time to revive and rejuvenate! The best place to start is within ourselves and our sex lives. This is a season to try something new or do something special that will bring you and your partner pleasure. If you want more after sex or need some ideas to incorporate into your current sex play - check out this issue's feature: "Post-Intercourse Sex: A Hot Erotic Alternative for Couples." The feature provides suggestions for enjoyable post-intercourse play. Check out Ask Xandria Q&A for useful tips, our Pillowbook stories to help inspire you and our wide variety of products. Enjoy! [specialoffer.jpg] [7]Xandria's Little Zinger [8]Little Zinger Delicate and Delightful. Two words that describe one of our most popular products. Get one today and let this blue treat take you to new levels of exploration and pleasure. Slip this ingenious ring on your finger and open the door to the infinite delights of anal exploration. A delicately shaped jelly vinyl plug, the Little Zinger is sized for novices, and its clever design allows you to pleasure yourself or a partner with the flick of a finger. 2-1/2" x 3/4". But don't just listen to us, here are some customer comments: "Extremely exciting! Very easy and comfortable to use by yourself or with your lover!!" "Wow what fun. Really opened the bedroom up for us. We both love it. She liked it with a vibe. mmmmmm so much fun in such a small package. Great intro for the shy. Opened our eyes." Read more reviews of the Little Zinger by clicking[9] here. [10]Our Regular Price: $14.95 Now Only $11.95 You Save 20%! [askxandria_logo.gif] Question: My husband recently told me one of his fantasies is for me to dress up as a nurse and really take care of him...I bought a sexy little nurses outfit, but now I am clueless as to how to carry through for him. Asking him to be explicit would take all the fun out of it for both of us. Can you give me any suggestions? I'd really appreciate it! Answer: Rule #1 of fantasy play: Your lover cannot read your mind. If you have a fantasy you'd like enacted, it behooves you to be specific. So your husband needs to tell you what he has in mind. Now if he'd like to be surprised, that's fine. [11]Click to read entire answer... Question: I don't want to seem selfish, but when me and my husband have sex, it usually starts off with me touching him and giving him oral sex, then we proceed to have sex. And it usually doesn't last all that long because, when he cums, he stops, whether or not, I've cum. Well, my problem is, I feel left out. I hardly ever get touched, very rarely receive oral sex back; even when he promises to do so, and I never get my pleasure. I don't know how to tell him this and that I want my enjoyment also, without sounding mean and selfish. What do I do? Answer: I suggest you buy a copy of my recent book: Great Sex: A Man's Guide to the Secrets of Total-Body Sensuality. I spend 350 pages telling men basically to stop doing what your husband has been doing--or rather NOT doing, [12]Click to read entire answer... [feature.jpg] POST-INTERCOURSE SEX A Hot Erotic Alternative for Couples We live in a sexual culture focused on erections and intercourse. To many Americans "having sex," means having intercourse. Pornography is fixated on huge erections and the in-and-out of intercourse. Viagra and the other erection medications currently have sales of $2.5 billion a year. Of course, there's nothing wrong with intercourse-assuming it's well lubricated, and that men understand that only about 25 percent of women are orgasmic that way. But our culture of intercourse leaves many older men and couples confused and frustrated. Even with erection drugs, as men age, they have trouble raising erections persistent enough and firm enough to accomplish vaginal intercourse. For some couples, post-intercourse lovemaking offers relief from the pressures of intercourse-dominated lovemaking. It requires significant, sometimes disconcerting, adjustments by both the man and woman. But it allows lovers to enjoy hot, fulfilling sex for the rest of their lives no matter how long they live. Simply put, post-intercourse lovemaking means sex without intercourse. As far as non-genital sensual play is concerned, post-intercourse lovemaking involves the same leisurely, playful, whole-body touching, caressing, and massage that sexuality authorities recommend to lovers of all ages. But genitally, it leaves vaginal intercourse behind, and focuses instead on all the other ways couples can enjoy genital sex: hand massage (your own hand and/or your lover's), oral sex, and toys, particularly penis sleeves for men, and dildos and phallic vibrators for women. Raised in our intercourse-focused sexual culture, most couples can't imagine sex without erection, without intercourse. But it doesn't have to be that way. Sex can still be fun and fulfilling even when intercourse is not possible. Surveys of men who lose erection capacity-young men involved in serious motorcycle accidents and older men who have had prostate cancer surgery- show that it can take several years for men to adjust to post-intercourse sex. But over time, most men learn they can still be sexual without erections and without intercourse-and eventually they adjust, and begin to enjoy post-intercourse lovemaking. As time passes, they often say they feel as sexually satisfied as they did when they had erections. Hand-stimulation of the penis is a major part of post-intercourse sex. It can feel wonderful to have a lover's hand caress one's penis, scrotum, lower belly, and inner thighs. Many men find that they can raise their best erections by masturbating themselves. If a man has never done this in the presence of a lover, the experience can feel odd for both of them. It's an adjustment to masturbate with an audience. But self-stimulation in front of a lover serves an important function. It shows the woman very clearly which types of strokes turn her man on, and helps her provide the most stimulating caresses. [13]Click to read entire feature... [grins.jpg] Groom's Test A young couple decided to get married. The two sets of parents met and got along well. Everything was going well. There was only one problemâthe bride's younger sister. She was 24, hot and whenever she was along with the groom-to-be, she rubbed up against him and made suggestive comments. One day the sister called the man, and asked him to come over to check the wedding invitations. When he arrived, she was alone. She whispered that she had feelings for him that she couldn't overcome. She told him that she wanted to make love to him just once before he got married and committed his life to her sister. She said, "I'm going upstairs to my bedroom, and if you want to, just come up and get me." The man was stunned. He stood frozen in shock as he watched her go up the stairs. When she reached the top she pulled down her panties and threw them down the stairs at him. He turned, went straight to the front door, stepped out of the house and walked toward his car. There stood his future father-in-law, with tears in his eyes. His father-in-law he hugged him and said, "We are very happy that you have passed our little test. We couldn't ask for a better man for our daughter. Welcome to the family." The man thought: "Lucky I keep the condoms in my car." Share the love, forward this email to your friends! Just send a blank email to subscribe, your [14]privacy is guaranteed. Select Promotions - [15]join-xandriaselect@lists.xandria.com S.E.X. Newsletter - [16]join-sexnewsletter@lists.xandria.com To unsubscribe from this list: [17]leave-sexnewsletter-1043077K@lists.xandria.com [18]We respect and value your privacy! [clear.gif] Specials: Click on the links below to access these Xandria exclusive deals today! - [19]Spring Sale - [20]Every day bonus gifts - [21]SEE ALL SALE ITEMS (up to 50% off) [22][3004_100x100.jpg] [23]Xandria Toy Cleanser 20% OFF - Now $11.95 [24][208_100x100.jpg] [25]Hot Rod Enhancer 40% OFF - Now $8.95 [26][2534_100x100.jpg] [27]Dual Rocker 30% OFF - Now $34.95 [28][2559_100x100.jpg] [29]Sweet Treats Kit 40% OFF - Now $20.95 [30][407_100x100.jpg] [31]Xandria Lubricant 20% OFF - Now $7.95 [32][565_100x100.jpg] [33]Cliterrific Complete 20% OFF - Now $19.95 [34][140_100x100.jpg] [35]Lube-A-Licious 50% OFF - Now $5.95 This is just a sample of the quality items on sale. Visit [36]Xandria.com to check out all of our products! [clear.gif] Xandria's Sexy eCards: [37][touch_thumb.jpg] [38][womansHeart_thumb.jpg] and many more to choose from! eCard recipients receive $5 off on their next purchase. Send one today to your lover, friend or yourself! Xandria's Top 10: 1. [39]SLIPPERY STUFF 2. [40]SUPER MOTION LOTION 3. [41]INSATIABLE G VIBRATOR 4. [42]BEYOND 2000 RHINO VIBE 5. [43]5X SPACE EXPLORER 6. [44]CLIMAX CRITTER 7. [45]MILLENNIUM LUBE 8. [46]PURPLE TITAN 9. [47]THUMBS UP 10. [48]WATERPROOF FINGER [pillowBookNewsletterlogo.gif] [49]Sweet Virginia I wasn't the only man in our aerobics class that summer, but I was the youngest. The other two guys were married businessmen, trying to get back in shape after many years of neglecting their bodies. Nice guys I'm sure, just overweight and soft. As for me, I'm in quite good shape, but in order to sharpen my definition and keep my heart in condition, I decided to sign up again the aerobics. Our previous teacher, Gretta, was a sturdy woman. Solid and strong; a big lady, whose businesslike, disciplined approach to aerobics reminded me of how a German drill instructor might behave. I'd never met the new instructor, Virginia, but I heard she was younger, very fit and more fun than Gretta. I hardly expected to see what walked through the door, though. Virginia came to our class after teaching an introductory aerobics class next door. Not even out of breath, her body glistened from a light coating of sweat. And my God, what a body she had! Just perfect. Tight, muscular and defined, from her shoulders, arm and abs to her calves, yet incredibly feminine. Long shapely legs, perfect tits and a gorgeous face, framed by shoulder length auburn hair. And when she smiled, wow. I nearly melted. The class she took us through was tough, but fun. The other two men nearly died, of course, but I was into it, and just happy to watch Virginia go through her routine in her skimpy outfit. It was all I could do to keep my mind on the workout, and not expose my growing hard on. I managed it, though. [50]Finish story... Step into the erotic realm of the [51]PillowBook, where you get to display your erotic fantasies to the world! All stories are written by real creative men and women, just like you, who want to share their stories with us. It's almost like being there. If there is a tale you are aching to share, send it on to [52]Pillow Book and try to blow our minds! [53]Read New PillowBook stories every Wednesday. Story content is never edited. We do edit for spelling and grammar. But we can't publish it if you don't, [54]write it so... (Make sure your stories are at least 1000 words and do not contain any descriptions of pedophilia, incest, animal love, rape or necrophilia.) [55]Submission Guidelines and writing tips [56]Email This NewsLetter To a Friend Lawrence Research Group 5375 Procyon St., Suite 102 Las Vegas, NV 89118-2498 1-800-242-2823 References 1. http://www.xandria.com/sex-toys/vibrators.html?AID=NL033106 2. http://www.xandria.com/sex-toys/dildos.html?AID=NL033106 3. http://www.xandria.com/sex-toys/sensual-massage.html?AID=NL033106 4. http://www.xandria.com/sex-toys/lotions-lubes-condoms.html?AID=NL033106 5. http://www.xandria.com/sex-toys/toys-for-men.html?AID=NL033106 6. http://www.xandria.com/shop/cat.asp?cat_name=Sex+Toys&showAll=1&filter=2&AID=NL033106 7. http://www.xandria.com/sex-toys/anal-toys/anal-plugs/little-zinger-id-197.html?AID=NL033106 8. http://www.xandria.com/sex-toys/anal-toys/anal-plugs/little-zinger-id-197.html?AID=NL033106 9. http://www.xandria.com/sex-toys/anal-toys/anal-plugs/little-zinger-id-197.html?AID=NL033106 10. http://www.xandria.com/sex-toys/anal-toys/anal-plugs/little-zinger-id-197.html?AID=NL033106 11. http://www.xandria.com/talk/newsletters/2006_0331_newsletter.asp?aid=NL033106 12. http://www.xandria.com/talk/newsletters/2006_0331_newsletter.asp?aid=NL033106 13. http://www.xandria.com/talk/newsletters/2006_0331_newsletter.asp?aid=NL033106 14. http://www.xandria.com/info/privacy/default.asp?AID=NL033106 15. mailto:join-xandriaselect@lists.xandria.com 16. mailto:join-sexnewsletter@lists.xandria.com 17. mailto:leave-sexnewsletter-1043077K@lists.xandria.com 18. http://www.xandria.com/info/privacy/default.asp?AID=NL033106 19. http://www.xandria.com/promo-pages/spring-sale.html?AID=NL033106 20. http://www.xandria.com/sex-toys/free-gift.html?AID=NL033106 21. http://www.xandria.com/shop/cat.asp?cat%5Fname=Sex+Toys&showAll=1&filter=2&AID=NL033106 22. http://www.xandria.com/sex-toys/accessories/toy-cleaners/xandria-adult-toy-cleanser-id-3004.html?AID=NL033106 23. http://www.xandria.com/sex-toys/accessories/toy-cleaners/xandria-adult-toy-cleanser-id-3004.html?AID=NL033106 24. http://www.xandria.com/sex-toys/toys-for-men/penis-extenders-ppa/extenders/hot-rod-enhancer-id-208.html?AID=NL033106 25. http://www.xandria.com/sex-toys/toys-for-men/penis-extenders-ppa/extenders/hot-rod-enhancer-id-208.html?AID=NL033106 26. http://www.xandria.com/sex-toys/sensual-massage/full-body-massagers/dual-rocker-id-2534.html?AID=NL033106 27. http://www.xandria.com/sex-toys/sensual-massage/full-body-massagers/dual-rocker-id-2534.html?AID=NL033106 28. http://www.xandria.com/sex-toys/sensual-massage/massage-oils-lotions/sweet-treats-body-massage-kit-id-2559.html?AID=NL033106 29. http://www.xandria.com/sex-toys/sensual-massage/massage-oils-lotions/sweet-treats-body-massage-kit-id-2559.html?AID=NL033106 30. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/enhance-personal-lubricant-id-407.html?AID=NL033106 31. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/enhance-personal-lubricant-id-407.html?AID=NL033106 32. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/traditional-vaginal-vibrators/cliterrific-complete-id-565.html?AID=NL033106 33. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/traditional-vaginal-vibrators/cliterrific-complete-id-565.html?AID=NL033106 34. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/xandrias-lube-a-licious-id-140.html?AID=NL033106 35. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/xandrias-lube-a-licious-id-140.html?AID=NL033106 36. http://www.xandria.com/?AID=NL033106 37. http://www.xandria.com/play/postcards/?AID=NL033106 38. http://www.xandria.com/play/postcards/?AID=NL033106 39. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/Slippery-Stuff-id-136.html?AID=NL033106 40. http://www.xandria.com/sex-toys/sensual-massage/massage-oils-lotions/Super-Motion-Lotion-id-137.html?AID=NL033106 41. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/g-spot-vibrators/insatiable-g-vibrator-id-310.html?AID=NL033106 42. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/vaginal-vibrators-clitoral-stimulators/beyond-2000-rhino-vibe-id-2151.html?AID=NL033106 43. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/vibrating-vaginal-eggs-beads-balls/5X-Space-Explorer-Vibe-id-521.html?AID=NL033106 44. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/unique-vaginal-vibrators/climax-critter-id-551.html?AID=NL033106 45. http://www.xandria.com/sex-toys/lotions-lubes-condoms/sexual-lubricants/millennium-lube-id-392.html?AID=NL033106 46. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/vaginal-vibrators-clitoral-stimulators/the-purple-titan-id-428.html?AID=NL033106 47. http://www.xandria.com/sex-toys/vibrators/vaginal-vibrators/vaginal-vibrators-clitoral-stimulators/thumbs-up-id-953.html?AID=NL033106 48. http://www.xandria.com/sex-toys/vibrators/clitoral-stimulators/hand-held-clitoral-stimulators/waterproof-finger-fun-id-2412.html?AID=NL033106 49. http://www.xandria.com/play/erotica-stories/Sweet-Virginia.html?AID=NL033106 50. http://www.xandria.com/play/erotica-stories/Sweet-Virginia.html?AID=NL033106 51. http://www.xandria.com/play/erotica-stories/erotica-stories.asp?AID=NL033106 52. mailto:pillowbook@xandria.com 53. http://www.xandria.com/play/erotica-stories/erotica-stories.asp?AID=NL033106 54. mailto:pillowbook@xandria.com 55. http://www.xandria.com/play/erotica-stories/yourstory.asp?AID=NL033106 56. mailto:?subject=GET%20S.E.X.%20Newsletter%20March%2031%202006%20//%20Xandria.com&body=Your%20Friend%20Would%20Like%20You%20to%20Check%20This%20Out:%20http://www.xandria.com/talk/newsletters/2005_0331_newsletter.html?aid=NL033106 From owner-freebsd-isp@FreeBSD.ORG Fri Mar 31 16:31:59 2006 Return-Path: X-Original-To: freebsd-isp@freebsd.org Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9314916A41F for ; Fri, 31 Mar 2006 16:31:59 +0000 (UTC) (envelope-from netsecuredata@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id E494143D4C for ; Fri, 31 Mar 2006 16:31:58 +0000 (GMT) (envelope-from netsecuredata@gmail.com) Received: by wproxy.gmail.com with SMTP id 58so240289wri for ; Fri, 31 Mar 2006 08:31:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XHvf5NGep25p00wmxhC05eNVl1gKHVpty7JxGixxREd6Fb2X9cpfNgDhIKVJobtjwu0Nz5nOtJJ9JK/imNE1w0fJIJrOin8Hu8aqV+1xN2bLDK1WBlGACwD3lgwe4j4BOZMUPa+B+ixNiYZV4wlqhSfkQTokMqRrOxGCwBtKkR8= Received: by 10.54.154.8 with SMTP id b8mr334192wre; Fri, 31 Mar 2006 08:31:58 -0800 (PST) Received: by 10.54.89.8 with HTTP; Fri, 31 Mar 2006 08:31:58 -0800 (PST) Message-ID: Date: Fri, 31 Mar 2006 11:31:58 -0500 From: "Jorge Evangelista" To: freebsd-isp@freebsd.org In-Reply-To: <10fd06c60603301648t1f3e07c2s99af5a744114ba69@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <10fd06c60603301648t1f3e07c2s99af5a744114ba69@mail.gmail.com> Subject: Re: Problem sometimes Freebsd crash X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Mar 2006 16:31:59 -0000 Thank for your response, but I my license for support is expired :( I have to solve this problem. Perhaps, I do not sure, but I believe that I would edit kernel parameters in /etc/sysctl.conf I have seen tunning with postgresql and freebsd, mysql and freebsd, I have found examples about it. Are there links about it? What are parameters corrects for edit memory in sysctl.conf? On 3/30/06, Derrick T. Woolworth wrote: > Jorge, > > Are you using the kernel that comes with bwmgr or a custom one you built? > What other options do you have set besides tweaking the mbufs - if you're > using your's? > > You may need to talk directly to Emerging Technologies - especially if > you're using their licensed version of the software and not the demo. > They'll probably be a lot better at helping you troubleshoot this problem= ... > > I'm thinking that since this isn't an open source thing it'll probably be > difficult for the fellows within this community to help, but if ET doesn'= t > help you out, reply with some additional information about your system li= ke > the hardware specs and your custom kernel config, if you built one. > > Good Luck, > > D > > > > > On 3/30/06, Jorge Evangelista wrote: > > > Hi friends, > > My name is Jorge, i am from Peru, excuse me for my english, I have a > server with FreeBSD 4.11-RELEASE #2 and Bandwitdh Manager (bwmgrd), > but I have many problems with it, I have rise up mbuf clusters in my > server to 16384 (It I have made in the file /boot/loader.conf), before > It was configured to 12000. Now I do not have logs about > > Mar 3 20:42:57 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:49 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 3 20:46:52 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:24 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > Mar 9 20:31:27 trafico /kernel: All mbuf clusters exhausted, please > see tuning(7). > > However, sometimes my server still hang, crash. I have to reboot the > server for that I work again. If I have enough memory, why bwmgrd no > use it, I do not why it said 59 requests for memory denied > > > > > There are some logs > > #netstat -m > > 1881/9050/16384 mbuf clusters in use (current/peak/max) > 20364 Kbytes allocated to network (41% of mb_map in use) > 59 requests for memory denied > 0 requests for memory delayed > 0 calls to protocol drain routines > > > This is report of my server memory > > # muse -m > Active: 34.305 MB > Inactive: 171.328 MB > Wired: 133.832 MB > Reserved: 1.949 MB > Cache: 0.000 MB > Kernel: 0.133 MB > Interrupt: 0.008 MB > Buffer: 137.203 MB > > Total: 1252.453 MB > Free: 912.988 MB > > > ET/BWMGR Driver v3.25b > > Thanks, for your help. > > -- > "The network is the computer" > _______________________________________________ > freebsd-isp@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-isp > To unsubscribe, send any mail to " > freebsd-isp-unsubscribe@freebsd.org" > > > > > -- > Derrick T. Woolworth, President > ServeTheWeb, LLC. http://www.ServeTheWeb.com -- "The network is the computer"