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..) … Continue reading →
tag: dsl, modem, usb
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 :))
tag: dsl, ppp, serial
#!/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 … Continue reading →
tag: dsl, Network, Python