Openssh

Using KeePassXC with SSH-Agent on OpenBSD

       365 words, 2 minutes

I’m using KeePassXC to manage my secrets. But when I log into my OpenBSD laptop, I’m still asked to enter my SSH passphrase to fill-in ssh-agent(1). Somehow, it’s great ; maybe other system don’t even propose that feature out of the box. But what if KeePassXC could know about my passphrase(s) and interact with ssh-agent(1). Well, it can.

Continue reading...


Terminal Server (TSE) connexion through SSH

       398 words, 2 minutes

Usually, when I want to connect to my LAN from the Wild Wild World, I use a VPN connexion. But there are times when it is not possible ; especially now that my work LAN has the same IP range as my home LAN… An alternate way to access my unpublished home services from outside is to use SSH tunnels. What you need is an SSH server on the LAN that you want connect to. The SSH server has to be able to connect to the LAN server you aim to connect to. Then, all you have to do is a bit of “Port Forwarding”.

Continue reading...


Using SSH keys to connect to ESXi

       77 words, 1 minutes

In VMware ESXi 5, SSH is enabled through the “Configuration / Security Profile / Services” section. When you connect using the root user, you have to specify the root password. If you want to use SSH keys, the only thing you have to do is copy them, over ssh, to a dedicated directory: # cd ~/.ssh # scp id_rsa.pub authorized_keys root@esxi:/etc/ssh/keys-root/ You can now connect to the ESXi using your SSH keys (and the `ssh-agent`).

Continue reading...


Back to the sea ; the OpenBSD installation, episode II

       768 words, 4 minutes

OpenBSD is really easy to install. It’s not shinning, but it asks for a few questions and only takes a couple of minutes to get a working system.

Continue reading...


Bigger SSH keys

       83 words, 1 minutes

No secrets here, just quick notes on how to generate bigger (safer ?) SSH keys.

Continue reading...