From owner-freebsd-net@FreeBSD.ORG Thu Jun 26 14:55:51 2008 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 71A53106567B for ; Thu, 26 Jun 2008 14:55:51 +0000 (UTC) (envelope-from aragon@phat.za.net) Received: from mail.geek.sh (decoder.geek.sh [196.36.198.81]) by mx1.freebsd.org (Postfix) with ESMTP id 0EF648FC0A for ; Thu, 26 Jun 2008 14:55:51 +0000 (UTC) (envelope-from aragon@phat.za.net) Received: by mail.geek.sh (Postfix, from userid 1000) id 8D52724D26; Thu, 26 Jun 2008 16:29:13 +0200 (SAST) Date: Thu, 26 Jun 2008 16:29:13 +0200 From: Aragon Gouveia To: freebsd-net@freebsd.org Message-ID: <20080626142913.GA11532@phat.za.net> Mail-Followup-To: freebsd-net@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 4.10-RELEASE-p2 i386 Subject: FreeBSD 7 routing/ppp changed? 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: Thu, 26 Jun 2008 14:55:51 -0000 Hi, I recently migrated a 6.2 system to 7.0-STABLE. One of the system's functions was a PPPoE gateway that performed Proxy ARP for its PPP clients. In 6.2 days when a connection was made the route entry for the PPP client showed: 192.168.9.245 192.168.9.2 UH 0 1 tun0 192.168.9.245 00:1b:78:37:d1:97 UHLS2 1 0 bge0 192.168.9.2 being the 6.2 system, and bge0 being its ethernet device. On the 7.0 system the route entry looks like this: 192.168.9.248 192.168.9.1 UGH 0 0 bge0 192.168.9.248 00:1f:29:78:25:9d UHLS2 1 0 bge0 And the PPPoE connection doesn't work. I have to manually remove the route entry and recreate it with the -interface argument to get things working. My PPP configs are the same on both machines as seen below. Is this a bug I need to PR? Thanks, Aragon <---ppp.conf---> default: set log Phase Chat LCP IPCP CCP tun command ident user-ppp VERSION (built COMPILATIONDATE) id: allow mode direct enable lqr echo proxy enable chap set ifaddr 192.168.9.1 192.168.9.241-192.168.9.254 accept dns set dns 192.168.9.1 <---grep pppoed /etc/rc.conf---> pppoed_enable="YES" pppoed_provider="id" pppoed_interface="bge0"