From owner-freebsd-net@FreeBSD.ORG Sun Jan 18 10:58:05 2009 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E01B1065674 for ; Sun, 18 Jan 2009 10:58:05 +0000 (UTC) (envelope-from lists.br@gmail.com) Received: from mail-gx0-f21.google.com (mail-gx0-f21.google.com [209.85.217.21]) by mx1.freebsd.org (Postfix) with ESMTP id 3CB1D8FC1B for ; Sun, 18 Jan 2009 10:58:04 +0000 (UTC) (envelope-from lists.br@gmail.com) Received: by gxk14 with SMTP id 14so2645138gxk.19 for ; Sun, 18 Jan 2009 02:58:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to:references :subject:date:mime-version:content-type:content-transfer-encoding :x-priority:x-msmail-priority:x-mailer:x-mimeole; bh=NnWyv4fcIq13VsTVd16IlDNdeNv01ClZ5hIE+GHAHQU=; b=TgAMiGX3EnWiD5cIJBNeCsnRf6P8ta6BS+vavbYurlRPUXZVaGE1uP+Xva7FFxldy5 myIJ0Yr0lFCvGEw2ksnmEvdkjk+CjLyifq7Ik8EsQfvkYWO8wQzQ1oNYsK3bBDUrrcvw PMYk2LthWeoHMB7t6LMfId5s9CY3RtP5SNVqY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:references:subject:date:mime-version :content-type:content-transfer-encoding:x-priority:x-msmail-priority :x-mailer:x-mimeole; b=QwfUu+TC8+8VuWdGrFkIcq4z8jnzbQwPhcN77rt3Ckg5VkZ6WpFBFWERWuY5D6+rJw yTgzn/BbQTaUL5wH8lN1qCnTmkdShSYY1679FuJ73ifs9WSbxJcAFjAbz3/7IF6ErfCK 84ieb1ME+bW/J86VXMPM/c+lZ/y2xD/c0BlYY= Received: by 10.90.71.15 with SMTP id t15mr2001647aga.90.1232274684581; Sun, 18 Jan 2009 02:31:24 -0800 (PST) Received: from adnote989 (189-46-93-120.dsl.telesp.net.br [189.46.93.120]) by mx.google.com with ESMTPS id 39sm2719589agb.16.2009.01.18.02.31.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 18 Jan 2009 02:31:24 -0800 (PST) Message-ID: <0E1FF7303AD34D2193A1E399643020B9@adnote989> From: "Luiz Otavio O Souza" To: "Paul Thornton" , References: <49723ABE.6010409@prt.org> Date: Sun, 18 Jan 2009 08:31:20 -0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5512 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Mailman-Approved-At: Sun, 18 Jan 2009 12:13:20 +0000 Cc: Subject: Re: pppoed problem with reconnections X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jan 2009 10:58:05 -0000 > Hi folks, > > I am currently doing some lab testing with 6.3-release and a pppoe setup > where each user has their own VLAN. On the termination box have an em > interface with about 200 VLANs configured on it, and have a ppp.conf > looking like this: > > default: > set log Chat Command Phase > enable pap > enable chap > allow mode direct > set mru 1462 > set mtu 1462 > set timeout 0 > enable lqr > accept dns > set dns 192.168.1.1 192.168.1.2 > set radius /etc/ppp/radius.conf > set ifaddr 192.168.254.254/32 Change the enable lqr to: enable lqr echo set echoperiod 5 The ppp will check the remote peer at echoperiod and after five consecutive fails the ppp link will be closed. Luiz