> Yes, I saw the thread but I don't understood :-). I think it's very
> technical... maybe someone
>  has a pragmatic and easier way to do it.

>From http://www.mail-archive.com/speedtouch%40ml.free.fr/msg07980.html:

Basically to start a routed IP connection, you need those data:
- LOCAL_IP (your IP)
- REMOTE_IP (the first IP when doing tracert/traceroute)
- VPI.VCI
- ENCAPS (this is where llc/vc-mux settings goes)

export LOCAL_IP=your_ip_address
export REM_IP=gateway_address
export ENCAPS=null_or_nothing
atmarpd -b -l syslog
# it will fail on all attempt after the first because interface still exist
atmarp -c atm0
ifconfig atm0 $LOCAL_IP netmask 255.255.255.0 up
sleep 2

# set ENCAP to 'null' for vc-mux and nothing for llc
atmarp -s $REM_IP $VPI.$VCI $ENCAPS
route add default gw $REM_IP

For example, my ip address is 82.67.197.146, so I would do
        export LOCAL_IP=82.67.197.146
My gateway is the same as my ip address, except that it's
254 at the end, not 146:
        export REM_IP=82.67.197.254
With my ISP I need ENCAPS=null (try also ENCAPS=):
        export ENCAPS=null

Good luck,

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

        

Reply via email to