ptftpd
ptftpd copied to clipboard
A TFTP/PXE tool suite written in Python
Linux 5.10.20-1-lts ``` INFO(tftpd): Serving file tp_recovery.bin to host 192.168.0.2... sysctl: cannot stat /proc/sys/net/inet/udp/maxdgram: Нет такого файла или каталога INFO(tftpd): Serving file tp_recovery.bin to host 192.168.0.2... sysctl: cannot stat /proc/sys/net/inet/udp/maxdgram:...
I tried to send a 150MiB file but got a `RecursionError` in `TFTPServer.send_response`. I noticed that you already fixed this in 61f0d9f886dc417ab00dadf3c0793a54c740f143. This commit, however, is not part of the...
Trying to transfer a ~100 MB ubi image to an embedded device running uboot. I first had to apply the patch from #20 to allow the server to run at...
tftpserver.py seems to be using this to work out how big the UDP packets it sends can be: ``` def get_max_udp_datagram_size(): """Retrieve the maximum UDP datagram size allowed by the...
I have a problem using ptftpd on Windows 10 64-Bit with python 3.7.7. I installed ptftpd v1.3 with pip I'm serving my root directory by using "ptftpd -v {78112962-C189-455B-95E8-CF41298AAD8E} H:\Python"...
another version to solve the difference betwwen python2 and python3 decode first when get the packet
I'm fixing up ethernet on a little embedded thing and I noticed this: The server sends block 10. The client doesn't see it so it sends an ack for block...
I have a use case where, as part of this solution, I would like to export some files over HTTP to be consumed by my PXE client (OS install files)....
Hello again I have a use case where I am installing an OS via the PXE server and I need the DHCP server to respond to a previously known PXE...
The current behavior of ptftplib is to use the entire network that the chosen interface is on as the DHCP scope. This is fine if ptftp is the only author...