Casiva Agustin

Engineering, Development and IT Management

Hi there! 馃憢

I’m Agustin Casiva, I’m a Software Engineer from Argentina.

I have been working on IT for many years now, I worked in many fields of the industry, such as hardware support, networking, sysadmin but what I do love most is development.

I have worked for many organizations, public and private, local and remote, filling many roles.

My expertise is on Web Development, Linux, Open Source, CMSs, HTML, CSS, PHP, JavaScript, Backend Development, Product Development, Project Management, Team Leading, among others.

In 2013 I have founded 42mate, a Web Development Agency focused on the design, development, maintenance of Web Apps. I still work on 42mate where I work leading development teams and scoping new projects.

Besides 42mate I also work as an independent consultant where I provide services such as

  • Development Training, for individuals or teams.
  • Architecture Design and Review.
  • Tech Advisor for non tech startup founders.
  • Tech Advisor for Digital Design Agencies.

If you are interested on my services let’s talk!

More about me

Saltar el host checking de SSH

Muchas veces cuando hacemos alguna tarea automatizada que involucra SSH nos salta la verificaci贸n de host la cual involucra una interacci贸n humana. Tambi茅n nos suele trolear cuando tenemos la tarea creada hace mucho tiempo y un d铆a migramos uno de los servidores involucrados a otra direcci贸n IP y blam, autom谩ticamente la tarea deja de andar por que cambio el fingerprint.

Para saltearnos esta verificaci贸n tenemos dos opciones.

Una es meter el finger print de antemano

ssh-keyscan IP.ADDR.OF.HOST >> ~/.ssh/known_hosts

Esto evitaria que pregunte por si aceptamos o no la firma la primera vez que nos conectamos.

La otra es saltear la verificaci贸n por hosts, para eso podemos a帽adir algo as铆 en el archivo config de ssh en nuestro home (~/.ssh/config).

Host my_trusteable_host
Hostname IP.ADDR.OF.HOST
StrictHostKeyChecking no

Ojo, pueden abrir una posible falla de seguridad pero les simplificara la vida.

One response to “Saltar el host checking de SSH”

  1. Me gusta m谩s la primera opci贸n, la de agregar el fingerprint al “known_hosts”.

    A veces me pasa que actualizo el firmware de un router corriendo OpenWRT y al conectarme mediante el cliente de OpenSSH me advierte que cambi贸 el fingerprint y que tenga cuidado porque podr铆a tratarse de un ataque MITM. Ser谩 que me gusta que las cosas sean expl铆citas =P

Leave a Reply

Your email address will not be published. Required fields are marked *

*