Method 1 wget:
Client1: python3 -m http.server 80
Client2: wget http://10.10.10.10/file
Method 2 cURL:
Client1: python3 -m http.server 80
Client2: curl -o file http://10.10.10.10/file
Method 3 Netcat:
Client1: nc -lvp 4444 > file
Client2: nc 192.168.1.39 4444 -w 3 < file
Method 4 SCP (SSH utility):
Client: scp file target@10.10.10.10:/path/to/file
Method 5 FTP:
Client1: twistd -n ftp -r .
Client2: wget ftp://10.10.10.10:2121/file
(or put/get in FTP server)
enjoy
-gh
Client1: python3 -m http.server 80
Client2: wget http://10.10.10.10/file
Method 2 cURL:
Client1: python3 -m http.server 80
Client2: curl -o file http://10.10.10.10/file
Method 3 Netcat:
Client1: nc -lvp 4444 > file
Client2: nc 192.168.1.39 4444 -w 3 < file
Method 4 SCP (SSH utility):
Client: scp file target@10.10.10.10:/path/to/file
Method 5 FTP:
Client1: twistd -n ftp -r .
Client2: wget ftp://10.10.10.10:2121/file
(or put/get in FTP server)
enjoy
-gh