From owner-freebsd-hackers@FreeBSD.ORG Wed Apr 13 20:39:05 2005 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2D2416A4CE for ; Wed, 13 Apr 2005 20:39:05 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0245543D41 for ; Wed, 13 Apr 2005 20:39:05 +0000 (GMT) (envelope-from mrparsons@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so248060rng for ; Wed, 13 Apr 2005 13:39:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RXQo6e3mJHDwtnNSb4GV87X4jV6MGxQnz67fBayRWktBDf+xIiTf+usgGTLkDpReQp7dqNy1/2gBUSQ1aiEQa1zzv/FSnEv1Ngb3QIs2H/ny/dh0wNMOjrXB+3Q0/ifHVkaCAiicF0PkMD7SdR2JrBlhh1uQnY3qZzGUjE8XNF4= Received: by 10.38.125.64 with SMTP id x64mr114264rnc; Wed, 13 Apr 2005 13:39:01 -0700 (PDT) Received: by 10.38.86.22 with HTTP; Wed, 13 Apr 2005 13:38:59 -0700 (PDT) Message-ID: Date: Wed, 13 Apr 2005 16:38:59 -0400 From: "M. Parsons" To: freebsd-hackers@freebsd.org In-Reply-To: <425D7D24.6020308@OTEL.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <425D7D24.6020308@OTEL.net> Subject: Re: Route/arp help? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "M. Parsons" List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Apr 2005 20:39:05 -0000 On 4/13/05, Iasen Kostov wrote: > M. Parsons wrote: >=20 > >To access my dsl modem's line stats page, I have to create an arp > >entry and a route for it, under linux this was done as: (eth1 > >connected directly to dsl modem) > > > >ifconfig eth1 10.0.0.2 netmask 255.255.255.0 > >route add 10.0.0.1 dev eth1 > > > > > route add -net 10.0.0.1/32 -iface de0 -cloning >=20 > But 'ifconfig de0 10.0.0.2 netmask 255.255.255.0' (or ifconfig de0 > 10.0.0.2/24) should set a 10.0.0.0/24 route via de0 why would you want > to set it again ? >=20 > >arp -s 10.0.0.1 ffffffffffffffffff (not really fffff, but the MAC > >address of the dsl modem, NOT the nic). > > > >unfortunately, I cant seem to figure out the commands to get this to > >work under FreeBSD 5.3 > > > >Ifconfig is simple enough (replace eth1 with de0 in my case) > > > >Arp seems the same (except it needs colons) > > > >But the route command I have no clue. It doesnt seem to follow the > >same syntax as linux, and I havent figured out the correct syntax yet. > > > >Any help? > > > >Thanks, > > > >Mark Honestly I have no clue why its not working, it should be simple, but it isnt.. Here is what the arp cache shows and the routing table (and its ed0, not de0, my mistake in original message). arp: (after doing the arp -s command) modem (10.0.0.1) at 00:0b:23:2a:b0:c4 on ed0 permanent [ethernet] this looks right doesnt it? route: default mydslgateway UGS 0 8173 tun0 10/24 link#1 UC 0 0 ed0 modem 00:0b:23:2a:b0:c4 UHLS 0 4 ed0 =3D> 10.0.0.1/32 link#1 UCS 0 0 ed0 no idea here? 3 for ed0? is that right? note, ed0 is also creating the tun0 device (pppoe), but that was never a problem in linux. Im just confused. :( Its not a big deal, as its only my dsl line stats, but still confused why it aint working For the record, http://www.broadbandreports.com/faq/9693 is the page on how you access the line stats, and the MAC part is required for my modem. Thanks for all the help Mark