##### # You'll be needing two machines, the target machine and source one (makes sense, right)? ##### # On the target machine nc -l 55555 | gzip -d -c | mysql -u -p [ | ] ##### # On the source machine mysqldump -u -p | gzip | nc 55555 [ | ] ##### # Adding Encryption... # Encrypting with openssl /usr/bin/openssl enc -aes-256-cbc -pass pass: -e # DECRYPTING THE FILE # /usr/bin/openssl enc -aes-256-cbc -pass pass: -d