Archive for the tag 'dsl'

Sagem Fast 800 on Linux (Debian)

This is quite easy, but the doc is too old.. so:

Download latest eagle-usb
Untar
make
make install
eagleconfig (to enter your config..)
rm /etc/init.d/eagle-usb (this doesn’t work on debian ..)
eaglectl -w (to load kernel modules and so on..)
startadsl

admin August 10th, 2004

PPPd Old School

Setting up PPPD server (with no auth )
edit /etc/ppp/options change auth to noauth ( cause -noauth is disable on debian)
pppd /dev/ttyS1 115200 192.168.2.3:192.168.2.10
on the iPaq just pppd .. that all :))

admin October 24th, 2003

Last PPP Ip .

#!/usr/bin/python
“”"
A really simple piece of code that i use to track down my
dynamics IP (assigned by my isp while using ppp).

“”"
filename = ‘/home/soif/Perso/Data/lastIp.sqlite’

import sys,os,time
try:
import sqlite
except ImportError:
print “Please install python sqlite binding first”
sys.exit(0)

def createTables(cursor):
schema = “CREATE TABLE connect (
[...]

admin August 29th, 2003