From owner-freebsd-questions@FreeBSD.ORG Wed May 23 05:32:54 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8408A1065670 for ; Wed, 23 May 2012 05:32:54 +0000 (UTC) (envelope-from bonomi@mail.r-bonomi.com) Received: from mail.r-bonomi.com (mx-out.r-bonomi.com [204.87.227.120]) by mx1.freebsd.org (Postfix) with ESMTP id 400008FC08 for ; Wed, 23 May 2012 05:32:54 +0000 (UTC) Received: (from bonomi@localhost) by mail.r-bonomi.com (8.14.4/rdb1) id q4N5YhcB083259; Wed, 23 May 2012 00:34:43 -0500 (CDT) Date: Wed, 23 May 2012 00:34:43 -0500 (CDT) From: Robert Bonomi Message-Id: <201205230534.q4N5YhcB083259@mail.r-bonomi.com> To: freebsd-questions@freebsd.org, luvbeastie@larseighner.com In-Reply-To: Cc: Subject: Re: Connect to Clear hub modem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 May 2012 05:32:54 -0000 > From owner-freebsd-questions@freebsd.org Tue May 22 23:03:03 2012 > Date: Tue, 22 May 2012 22:58:39 -0500 (CDT) > From: Lars Eighner > To: freebsd-questions@freebsd.org > Subject: Connect to Clear hub modem > > > This is NOT a wireless question. > > I am running FreeBSD 8.3-p1. > > I want to connect to Clear Wireless Internet. I know I cannot do this with > a Clear dongle, because Clear uses WiMax which is not supported. > > Instead I have a Clear hub modem. I want to connect by ethernet to it by > wire. > > I get this from ifconfig: > > re0: flags=8802 metric 0 mtu 1500 > options=209b > ether 40:61:86:e9:96:0e > media: Ethernet autoselect (100baseTX ) > status: active > > But I don't have a clue what to do from here. > > The hub is supposed to have a web page at (imaginary address) 192.168.15.1, > but I haven't been able to raise it. > > The handbook has only a couple of references to ethernet, neither of which > seem to apply here, and seem to be from the point of view of setting up a > hub server, but the hub is more or less a black box to me. > > If anyone has already done this, please explain -- slowly and loudly. If the 'imaginary' address you gave above, is really something other than '192.168.5.1', substitute the actual first 3 parts of the 'real' address for '192.168.5' everywhere below. and the actual 4th part for the .1 address. This will be a several step process. Some of the things are 'just temporary', so you can see how to do subsequent things. First: use the 'ifconfig' command to set an IP addreess for your machine, so that you can 'see' what the Clear hub configuration is. ifconfig re0 192.168.5.2 netmask 255.255.255.0 Also, just for grins, we'll set up a 'default' route, to see if we can see the 'world'. route add default 192.168.5.1 Now, fire up a web browser, and enter the 'imaginary' webserver address in the browser's 'address' space. hit the enter key. Tell us what you get, and we can proceed from there. *Probably* just enabling DHCP in /etc/rc.conf, on the 're' interface (that is, adding the following line to that file): ifconfig_re="DHCP" And re-booting is all you'll need.