Update of /cvsroot/netdevicelib/netdevicelib
In directory usw-pr-cvs1:/tmp/cvs-serv18878
Modified Files:
README.txt
Log Message:
- wrote the first version
Index: README.txt
===================================================================
RCS file: /cvsroot/netdevicelib/netdevicelib/README.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** README.txt 14 Aug 2001 18:29:35 -0000 1.1
--- README.txt 15 Jun 2002 04:10:29 -0000 1.2
***************
*** 1 ****
! Stub README file for the netdevicelib project
\ No newline at end of file
--- 1,31 ----
! netdevicelib 0.1
! Brian Landers <br...@pa...>
! 06/15/2002
!
! netdevicelib is a Python package providing an API for access to
! network devices such as Cisco routers and switches. It allows easy
! access to devices for the purpose of configuration, command execution,
! and other tasks. It is modelled after the Net::Telnet::Cisco module
! for Perl, but is designed to be extensible to multiple vendors and
! multiple types of connections (ssh, serial, etc.)
!
! Usage:
!
! from netdevicelib.connections import ConnectionFactory
!
! conn = ConnectionFactory().createConnection( "telnet", "IOS" )
! conn.open( router1.example.com )
! conn.login( "myusername", "mypassword" );
!
! lines = conn.cmd( "show version" )
! print lines
!
! Notes:
!
! Right now, netdevicelib is in a very preliminary state, and most
! likely makes a lot of assumptions about the devices to which it is
! connecting. This is due to the limited number of devices
! available for testing. Feedback is most welcome and suggestions
! for improvement are encouraged. If it doesn't work with your
! device, please provide whatever information you can to help fix
! the problem.
|