diff options
Diffstat (limited to 'net-dialup/ueagle-atm/files/README')
-rw-r--r-- | net-dialup/ueagle-atm/files/README | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/net-dialup/ueagle-atm/files/README b/net-dialup/ueagle-atm/files/README index 5cac68ae4fc6..ef07b71dadcd 100644 --- a/net-dialup/ueagle-atm/files/README +++ b/net-dialup/ueagle-atm/files/README @@ -2,10 +2,7 @@ Introduction ============ This ebuild installs firmware files necessary for ADI 930/Eagle USB ADSL -Modem driver which first appeared in kernel 2.6.16 as a replacement for -the user-space driver. For earlier kernels, the net-dialup/eagle-usb package -must be emerged instead. - +Modem driver which first appeared in kernel 2.6.16. Configuration ============= @@ -26,16 +23,16 @@ Add the following lines from the appropriate section below to a) PPPoATM configuration: -config_ppp0=( ppp ) # Runs /lib/rcscripts/net/pppd.sh +config_ppp0='ppp' # Runs /lib/rcscripts/net/pppd.sh # The 2 numbers represent the VPI & VCI of your ISP, and they are separated # by a dot. Ask your ISP about those numbers. link_ppp0='0.38' -plugins_ppp0=( 'pppoa' ) +plugins_ppp0='pppoa' # 'man pppd' shows other options. Compression is disabled because it is # rarely taken advantage of, and may interfere with the connection. # Add option 'usepeerdns' to populate /etc/resolv.conf -pppd_ppp0=( updetach noauth debug defaultroute noaccomp nobsdcomp noccp - nodeflate nopcomp novj novjccomp child-timeout 60 ) +pppd_ppp0='updetach noauth debug defaultroute noaccomp nobsdcomp noccp + nodeflate nopcomp novj novjccomp child-timeout 60' username_ppp0='username@isp.com' # ADSL login, assigned by your ISP password_ppp0='password' # ADSL password, assigned by your ISP @@ -52,20 +49,20 @@ function preup() { b) PPPoE configuration: # Configure first the RFC2684 bridge interface -config_nas0=( null ) +config_nas0='null' # Use "-e 0" for LLC mux or "-e 1" for VC mux. # The 2 numbers after "-a" represent the VPI & VCI of your ISP, and # they are separated by a dot. Ask your ISP about those numbers. -br2684ctl_nas0="-e 0 -a 0.38" +br2684ctl_nas0='-e 0 -a 0.38' -config_ppp0=( ppp ) # Runs /lib/rcscripts/net/pppd.sh +config_ppp0='ppp' # Runs /lib/rcscripts/net/pppd.sh link_ppp0='nas0' # The name of the RFC2684 bridge interface -plugins_ppp0=( 'pppoe' ) +plugins_ppp0='pppoe' # 'man pppd' shows other options. Compression is disabled because it is # rarely taken advantage of, and may interfere with the connection. # Add option 'usepeerdns' to populate /etc/resolv.conf -pppd_ppp0=( updetach noauth debug defaultroute noaccomp nobsdcomp noccp - nodeflate nopcomp novj novjccomp child-timeout 60 ) +pppd_ppp0='updetach noauth debug defaultroute noaccomp nobsdcomp noccp + nodeflate nopcomp novj novjccomp child-timeout 60' username_ppp0='username@isp.com' # ADSL login, assigned by your ISP password_ppp0='password' # ADSL password, assigned by your ISP |