Hi,
Old thread, but still unanswered so maybe the question remains. It is possible to upload files to the TFTP server. This is done by a HTTP POST.
Here's an example that uses curl to upload a file to the root directory of the TFTP:
First, create a cookie:
curl -i -k -v -G -ccookie.txt "<a>https://192.168.0.10/cmplatform/WEB-INF/pages/j_security_check?appNav=cmplatform&j_username=administrator&j_password=cisco</a>]" Second, upload the file "testfile" into the root dir. The @ is important. If you want to upload to a different directory just specify the directory name and it will be automatically created if if does'nt exist.
curl -v -i -bcookie.txt <a>mailto:-Ffile=@testfile</a>] -Fdirectory= -k <a>https://192.168.0.10/cmplatform/tftpFileUpload.do</a>]Kind regards,
//Dan