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
Tags: dsl, modem, usb
admin August 10th, 2004
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 :))
Tags: dsl, ppp, serial
admin October 24th, 2003
#!/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 (
[...]
Tags: dsl, Network, Python
admin August 29th, 2003