Grant Edwards <grant.b.edwa...@gmail.com> writes:
I need to generate a broadcast UDP TFTP read request, and the usual TFTP client tools I use (atftp, tftpy) can't do that. Does anybodyhave a suggestion for an easy wat to generate such a request?All I need is to generate the initial request. I don't need to handlethe actual data.
Use the Python `socket` module? https://wiki.python.org/moin/UdpCommunication Alexis.