From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.62) (envelope-from ) id 1Ha0UC-0002Dt-E6 for garchives@archives.gentoo.org; Sat, 07 Apr 2007 02:17:04 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.0/8.14.0) with SMTP id l372GkOA032507; Sat, 7 Apr 2007 02:16:46 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.0/8.14.0) with ESMTP id l372Gifc032482 for ; Sat, 7 Apr 2007 02:16:45 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id A3E4264C38 for ; Sat, 7 Apr 2007 02:16:44 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.60) (envelope-from ) id 1Ha0Tr-0007FT-Ot for gentoo-doc-cvs@lists.gentoo.org; Sat, 07 Apr 2007 02:16:43 +0000 To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] cvs commit: home-router-howto.xml Message-Id: From: vapier Date: Sat, 07 Apr 2007 02:16:43 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: 5e32f7a1-9480-4158-99e2-c120320ed80e X-Archives-Hash: 2ed92865aef1d44a0f6431ffca1dbb97 vapier 07/04/07 02:16:43 Modified: home-router-howto.xml Log: transition from rp-pppoe/adsl to ppp/pppoe for adsl/pppoe users Revision Changes Path 1.58 xml/htdocs/doc/en/home-router-howto.xml file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/home-router-howto.xml?rev=1.58&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/home-router-howto.xml?rev=1.58&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/home-router-howto.xml?r1=1.57&r2=1.58 Index: home-router-howto.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/home-router-howto.xml,v retrieving revision 1.57 retrieving revision 1.58 diff -u -r1.57 -r1.58 --- home-router-howto.xml 3 Apr 2007 23:06:21 -0000 1.57 +++ home-router-howto.xml 7 Apr 2007 02:16:43 -0000 1.58 @@ -1,6 +1,6 @@ - + Home Router Guide @@ -17,8 +17,8 @@ -1.36 -2007-04-03 +1.37 +2007-04-06 Introduction @@ -191,32 +191,39 @@

-All the fancy PPPoE software has been bundled up into one little nice package -nowadays called Roaring -Penguin. Simply emerge rp-pppoe and you'll be on your way. -Remember how I said you'll need username/password information? Well I wasn't -lying so I hope you have it now! Load up /etc/ppp/pppoe.conf in -your favorite editor and set it up. +All the fancy PPPoE software that used to be provided by rp-pppoe +(Roaring Penguin) has been +integrated into the standard PPP +package. Simply emerge ppp and you'll be on your way. Remember +how I said you'll need username/password information? Well I wasn't lying so +I hope you have it now! Load up /etc/conf.d/net in your favorite +editor and set it up.

In order for the following net settings to work, you must have -baselayout-1.11.14 or later installed on your system. +baselayout-1.12.9 or later installed on your system.
-(Replace 'vla9h924' with your username and 'password' with your password)
+(Replace 'vla9h924' with your username and 'boogie' with your password)
 
-# nano /etc/ppp/pap-secrets
-# client    server  secret
-"vla9h924" * "password"
 # nano /etc/conf.d/net
-Tell baselayout to use adsl for your eth1:
-config_eth1=( "adsl" )
-user_eth1=( "vla9h924" )
-# ln -s net.lo /etc/init.d/net.eth1
-# rc-update add net.eth1 default
-# /etc/init.d/net.eth1 start
+Tell baselayout to use adsl over eth1 for ppp0:
+config_ppp0=( "ppp" )
+link_ppp0="eth1"
+plugins_ppp0=( "pppoe" )
+pppd_ppp0=(
+	"defaultroute"
+	"usepeerdns"
+	There may be other settings you want, see /etc/conf.d/net.example
+)
+username_ppp0="vla9h924"
+password_ppp0="boogie"
+
+# ln -s net.lo /etc/init.d/net.ppp0
+# rc-update add net.ppp0 default
+# /etc/init.d/net.ppp0 start
 
@@ -225,6 +232,17 @@ examples that utilize 'eth1', substitute with 'ppp0'. + +Make sure you change the permissions of the /etc/conf.d/net file so that only +root can read/write it since you're sticking your username/password in it. + + + +For people transitioning from the rp-pppoe package, or for people who +hit weird connection resets, see the MTU section in the Troubleshooting +chapter. + + -- gentoo-doc-cvs@gentoo.org mailing list