Software Details:
Version: 20110917
Upload Date: 11 May 15
Distribution Type: Freeware
Downloads: 45
minimumTFTP is a TFTP server and client written in Python.
Basic usage:
>>> import minimumTFTP
server running
>>> tftpServer = minimumTFTP.Server('C:\server_TFTP_Directory')
>>> tftpServer.run()
client running
>>> arg1: server_IP_address
>>> arg2: client_directory
>>> arg3: get or put filename
>>> tftpClient = minimumTFTP.Client(arg1, arg2, arg3)
get
>>> tftpClient.get()
put
>>> tftpClient.put()
use python -m:
server runnning
python -m minimumTFTP -s [directory]
client get
python -m minimumTFTP -g [serverIP] [directory] [filename]
client put
python -m minimumTFTP -p [serverIP] [directory] [filename]
Requirements:
- Python
Comments not found