-
Hogar
SOHO Switches
Manteniendo el hogar conectado para conexiones de calidad
Accesorios
Todo lo demás que necesitas para un estilo de vida conectado
-
Hogar Inteligente
Enchufes Inteligentes
Mejora tus dispositivos domésticos
Cámaras de Seguridad
Vigilando lo que importa
Bombillas Inteligentes
Luz para cada ocasión
Extensor de Cobertura+
Extienda el Wi-Fi y administre con la aplicación Kasa
-
Empresa
Switches
Redes cableadas de alta velocidad desde gestión L3 a switches sin gestión
Omada Cloud SDN
La solución en la nube más inteligente para redes empresariales
Banda Ancha Inalámbrica Pharos
Ideal para redes de banda ancha inalámbrica de largo alcance
Routers SafeStream
VPN segura y puertas de enlace de equilibrio de carga para el negocio
-
Proveedor de Servicios
DSL
Capaz de red de alta velocidad y aplicaciones integradas de banda ancha
Wi-Fi Router
La elección fiable para redes domésticas
LTE/3G
Mantiene el acceso a Internet donde quiera que vaya.
PON
La tecnología líder para brindar servicios de Internet gigabit
Adaptadores Powerline
Transforma el cableado eléctrico para llevar la señal de red.
Range Extender
Amplía fácilmente la cobertura de Wi-Fi.
Switches
Aumenta la red de su empresa con un rendimiento de primera calidad.
Wi-Fi Empresarial
Lleve su red Wi-Fi empresarial a nuevos niveles.
How to configure OpenSSH 7.0(and above) to login smart and managed switches?
SSH is a security protocol for network communication. It is an encrypted shell which provides a secure tunnel for different kinds of network protocols such as telnet, ftp, pop, etc.
When we use OpenSSH client on Linux to login switch, sometimes it will turns out an error info as shown below:
This is because OpenSSH 7.0 (and above) disable the algorithm by default that our switches are applying. We need to enable the corresponding algorithm on OpenSSH client manually.
Generally speaking, OpenSSH client had been installed on Linux system by default. We can type in dpkg –L|grep ssh to check what version our OpenSSH client is. OpenSSH client version on this system is 7.2.
Let’s start from the beginning and take T1600G-28TS( IP address 192.168.1.52) as an example. We are aimed to login switch via OpenSSH client with Ubuntu 1604. Before everything, we should enable SSH by WebUI (you can also use telnet). Go to System--->Access Security--->SSH Config, Enable SSH. Click Apply.
Because here our OpenSSH client version is 7.2, we need to modify configuration file of OpenSSH client under this condition. Turn to /etc/ssh floder On Ubuntu. We open ssh_config via nano. After entering sudo nano ssh_config, we need type system login password. Here is root.
cd /etc/ssh
sudo nano ssh_config
Add
Host 192.168.1.52
KexAlgorithms +diffie-hellman-group1-sha1
HostKeyAlgorithms +ssh-dss
to the bottom of ssh_config as picture below. This step we enable the corresponding algorithms for 192.168.1.52. Then press Ctrl+O to save. Ctrl+X to exit.
Now let’s try to login. Type command ssh admin@192.168.1.52, then enter defdult password admin. We login successfully!
Sus comentarios nos ayudan a mejorar este sitio.