2009-11-30 ARP analyzer
Research in ARP protocol. Watch ARP packets , count them and show in list.
Usage
./arpsni eth0
Version 0.1[2009nov30]
ArpSni.0.1
2010-03-16 Python Manage Lynksys Router
Good fellow asked me to write some script that will help him to turn on/off passway to
global network. There was used linksys machine for controlling such stuff
Here is some code that login, change some rulles and logout. Also pygtk script that do
it in visual way
from linksys import * ls = LinkSys( "http://192.168.1.1/" ) ls.login( "admin" , "admin" ) ls.setip( STATIC_IP , "gateway" , 10 , 66 , 66 , 66 ) ls.setip( STATIC_IP , "subnet" , 255 , 255 , 255 , 0 ) if ls.response(): print "Succes" else: print "O_O AIam BAd GUy -^-" ls.logout()Everything was writen in early 2009. I have tested at that days. Now I don't have linksys machine
to test it.
Source