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 :))

tag: , ,

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 … Continue reading

tag: , ,