Port forwarding between 3 machines A–>B–>C Connect to C port 80 from A, through B From A, execute: ssh -L 8080:ipC:80 user@ipB -N
Bash script para copiar archivos y dependencias al directorio jaula de ssh jail
chrootDir=”/home” copyToJail=”/bin/ls /bin/ping /bin/time /bin/alias /usr/bin/which /bin/top /bin/ps /bin/vi /bin/vim /bin/nano /bin/openssl /etc/bashrc /etc/hostname /etc/profile.d /etc/profile /bin/bash /bin/env /bin/tail /bin/cat /bin/tail /bin/more” copyToJail=”$copyToJail /bin/head” for eachCommand in $(echo $copyToJail); do execDir=$(echo $eachCommand |xargs dirname) if [ ! -d “$chrootDir$execDir” Leer más
git through SSH socks5 proxy connection
1. Open a SSH proxy connection. The destination must have internet access. ssh-D 8989 -o “ServerAliveInterval 60” -o “ServerAliveCountMax 3” [email protected] 8989 is the port I will use to proxy the access. git clone https://github.com/XXX –config ‘http.proxy=socks5://127.0.0.1:8989’ To disable the Leer más
yum and curl Internet access through SSH proxy connection
Problem: I need to update the OS and download software, but my linux system (Machine A) do not have internet access. My computer (Machine B) have internet access. Solution: I will use a ssh proxy connection to access to internet Leer más
Evitar desconexiones automáticas en SSH
En resumen: ssh -o TCPKeepAlive=yes -o ServerAliveInterval=60 -o ServerAliveCountMax=60 root@IP-servidor Explicación Los firewalls y equipos de seguridad normalmente están configurados para que las conexiones que no transmiten datos se cierren de manera automática, Hay ocasiones que es necesario mantener la Leer más