SSH
WinSCP
TÚNEL
CONFIGURAR FIREFOX PARA UTILIZAR UN TÚNEL SSH COMO UN PROXY SOCKS
SOCKS
CONFIGURAR UN TÚNEL UTILIZANDO UN SERVIDOR SSH
REALIZAR CONEXIÓN CON WINSCP UTILIZANDO UN TÚNEL SSH
Rsync
Configurar una conexión a carpetas compartidas en Linux utilizando rsync
File: /etc/network/interfaces
1 2 3 4 5 6 7 8 9 |
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 208.88.34.106 netmask 255.255.255.248 broadcast 208.88.34.111 network 208.88.34.104 gateway 208.88.34.110 |
Montar un sistema SMB
1 2 |
sudo apt-get install cifs-utils sudo mount.cifs //10.0.1.101/copias /mnt/backup -o user=user,pass=pass |
Sincronizar carpetas montadas
1 2 |
rsync -rutv --progress --bwlimit=40000 /srv/carpeta/ /mnt/backup/carpeta/ rsync -rutvl --progress --bwlimit=40000 /var/www/web/ /mnt/backup/www |
Access the Windows Share from Linux
https://www.howtogeek.com/176471/how-to-share-files-between-windows-and-linux/
1 2 3 |
sudo apt-get install cifs-utils mkdir ~/Desktop/Windows-Share sudo mount.cifs //WindowsPC/Share /home/jes/Desktop/Windows-Share -o user=jesusninoc |
Create a Share on Linux and Access It from Windows
1 2 3 4 5 6 7 8 9 10 11 12 13 |
sudo apt-get install samba smbpasswd -a jesusninoc mkdir ~/Desktop/Share sudo vi /etc/samba/smb.conf [<folder_name>] path = /home/<user_name>/<folder_name> available = yes valid users = <user_name> read only = no browsable = yes public = yes writable = yes sudo service smbd restart</user_name></folder_name></user_name></folder_name> |
SSH PORT FORWARDING EXAMPLE
- http://www.vicente-navarro.com/blog/2009/05/24/creando-tuneles-tcpip-port-forwarding-con-ssh-los-8-escenarios-posibles-usando-openssh/
- https://www.ssh.com/ssh/tunneling/example
- https://wiki.mikrotik.com/wiki/Manual:IP/SSH