----- Original Message ----- 
From: "Andrew Benton" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Friday, March 11, 2005 11:24 AM
Subject: [speedtouch] Re: speedtouch-start doesn't connect


> Tonino del Rio wrote:
> > Hello, i have a 2.4 kernel on gentoo and i have installed speedtouch
> > from the portage and I've configured
> > VCI (8) and VPI (32) for "Terra Networks" ISP in Spain and i only can
> > get this response:
> >
> > Does anyone know what could be wrong here? (kernel config, speedtouch
config...)
> Can the user space tools set up a bridged, PPPoE over ATM connection? I've
only been able to do that
> with the in-kernel tools.
<snip>

Yes I have make it work with both user space (bash script to prepare the
hardware part ):
 # Alcatel USB PPPoE Mode
 if [ "$PROTOCOL" = "RFC1483" ]; then
  iface="tap0"
  /sbin/modprobe tun
  /usr/sbin/pppoa3 -b -c -m 1 -vpi $VPI -vci $VCI
  wait_for_iface $iface
  /sbin/ifconfig $iface up
  exit $?
 fi

or kernel space with br2684ctl (this time perl script to prepare the soft
part) :

  if ($pppsettings {'METHOD'} =~ /^(PPPOE|PPPOE_PLUGIN)$/) {
   my $itf='0';
   my $device = "nas$itf";
   if (open(FILE, ">${General::swroot}/red/device")) { print FILE $device;
close FILE; }
   $netsettings{'RED_DEV'} = $device;
   if (system ('/bin/ps -ef | /bin/grep -q [b]r2684ctl')) {
    system ('/sbin/modprobe br2684');
    system ('/usr/bin/br2684ctl', '-b', '-c', "$itf", '-e',
$pppsettings{'ENCAP'}, '-a',
"$itf.$pppsettings{'VPI'}.$pppsettings{'VCI'}");
    sleep 3;
   }
   system ('/sbin/ifconfig',"$device",'up');
   &dopppoedial();

Gilles


Liste de diffusion modem ALCATEL SpeedTouch USB
Pour se d�sinscrire : mailto:[EMAIL PROTECTED]

        

Reply via email to