Usos de proxychains Proxychains funciona con solo con protocolo TCP. La sintaxis general es proxychains <comando> <destination> [<argumentos>] Ejemplos: proxychains telnet aurlen.io 80 proxychains yum install proxychains ftp aurlen.io
Instalar proxychains en Centos
1. Instalación yum install git git clone https://github.com/rofl0r/proxychains-ng.git cd proxychains-ng make && make install ./tools/install.sh -D -m 644 src/proxychains.conf /usr/local/etc/proxychains.conf 2. Configuración Editar el archivo /usr/local/etc/proxychains.conf y remplazar el contenido con esto: #strict_chain quiet_mode proxy_dns remote_dns_subnet 224 tcp_read_time_out 15000 tcp_connect_time_out 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
snmpwalk and snmpget example
The NET-SNMP snmpwalk and snmpget commands are a really good tool, but it has a really big help output, to simplify things just use one of the below examples. I always forget the syntax for snmpwalk/snmpget v3; so I write Leer más
Disable linux LVM archive and solve the incident of free inodes is less than % on volume X
Problem: Free inodes is less than 20% on volume / 1. Login by ssh the host 2. Edit the file /etc/lvm/lvm.conf Change to 0 (cero) the value of backup variable. .. # stored in a human readable text format. backup Leer más
Inodos, que son y quien lo utiliza en sistema de archivos en Linux.
Inodos, que son y quien lo utiliza en sistema de archivos en Linux. Los inodos son una estructura de datos de los sistemas de archivos de los sistemas UNIX y similares como Linux. Contiene información de los objetos que existen Leer más
Listar usuarios y grupos de Windows desde línea de comandos
En una terminal CMD, ejecutar los comandos para obtener la información requerida. 1. Listar usuarios. Comando: net users Ejemplo: C:\Users\aurlen.admin>net users User accounts for \\WINSERV-2008R2-R0134 —————————————————————————— Administrator aurlen.admin Guest nagios The command completed successfully. C:\Users\aurlen.admin> 2. Listar grupos Leer más
Registros (log) centralizados con Rsyslog con Centos
Enviar los registros (logs) a un servidor remoto Problema: La inspección manual de registros (logs) toma mucho tiempo y no hay una visión en tiempo real de los eventos que se generan en los servidores. Estar conectándose a los servidores Leer más
Linux tarda mucho tiempo en pedir la contraseña al después de ingresar el usuario en unas conexión ssh, en putty.
Problema: Linux tarda mucho tiempo en pedir la contraseña al después de ingresar el usuario en unas conexión ssh, en putty. Solución: 1. Editar /etc/ssh/sshd_config 2. Cambiar “GSSAPIAuthentication yes” a “GSSAPIAuthentication yes” 3. Reiniciar el servicio “systemctl restart sshd”