From owner-freebsd-questions Thu Nov 22 10:14:33 2001 Delivered-To: freebsd-questions@freebsd.org Received: from marlo.eagle.ca (marlo.eagle.ca [209.167.16.10]) by hub.freebsd.org (Postfix) with ESMTP id 0666E37B405 for ; Thu, 22 Nov 2001 10:14:27 -0800 (PST) Received: from BobLablaw (staff.eagle.ca [209.167.16.15]) by marlo.eagle.ca (8.11.3/8.11.3) with SMTP id fAMIDDM01160; Thu, 22 Nov 2001 13:13:13 -0500 (EST) (envelope-from freymann@scaryg.shacknet.nu) Message-ID: <000d01c17381$94666b00$7301a8c0@eagle.ca> From: "ScaryG" To: "Fuji Zhang" Cc: References: Subject: Re: high speed internet connection and lesstif question Date: Thu, 22 Nov 2001 13:14:50 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > hi, thx for replying. no. i don't have any network card. when i called > BELL they seem to suggest if i have USB port on my MB i don't need to have > network card. i have no experience or any knowledge in this thing. Oh, well that's a little bit different. First you'd have to ensure your USB DSL "modem" is supported under FreeBSD. I have no idea if they are or aren't -- sorry. It's quite easy if you have an external, ethernet based DSL Modem, 'cause then you'd connect a network cable between it and your network card. The FreeBSD Handbook has a chapter on PPPoE. Depending on what release of FreeBSD you're using, it may involve recompiling your Kernel to include the options required to do this. # PPPoE Stuff options NETGRAPH options NETGRAPH_ETHER options NETGRAPH_PPPOE options NETGRAPH_SOCKET Most of the tutorials leave out one of the 4 options and then your kernel panics with errors about netgraph already installed, so be sure to include all four! I believe FreeBSD 4.4+ will auto load the kernel modules for you. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/pppoe.html I added some items to my /etc/rc.conf file like: # PPPoE stuff ifconfig_vr1="up" ppp_enable="YES" ppp_mode="ddial" ppp_profile="default" Then you have to configure /etc/ppp/ppp.conf. This is my entire file: default: set device PPPoE:vr1 set speed sync set mru 1492 set mtu 1492 set ctsrts off enable lqr set authname your.bell.user.id set authkey your.bell.password set log Phase tun command set dial set login set ifaddr 10.0.0.1/0 10.0.0.2/0 add default HISADDR # nat enable yes papchap: set authname your.bell.user.id set authkey your.bell.password In this case, vr1 is the network card I'm using to connect to the DSL Modem. I suppose if you get your USB DSL Modem installed you would substitute that device name there. They've made it super easy lately. More and more are using ADSL connections. I remember a little over a year ago when I tried to do this with FreeBSD 4.1 I believe, it was a bit of a hassle for about a week before I got it working ;-) -gf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message