ssh -L 3306:10.10.100.22:3306 -p 22 root@x.x.x.x -i id_rsa
mysqldump -u root -h 10.10.1.22 --port 3306 \
--databases db1 db2 \
--compress \
--single-transaction \
--order-by-primary \
-ppassword | mysql -u root \
--port=3306 \
--host=127.0.0.1 \
-ppassword