-
Configure Static DNS Entries on Cisco IOS
You can configure Cisco’s IOS to remember IP addresses for host, without having to resort to a DNS lookup. Very much indeed like adding an entry to your
Read more…/etc/hosts
file. -
Made a Typo? IOS Will Make You Wait for DNS Resolution
Another one of those Cisco IOS gotchas: when mistyping a command, you have to wait a minute before you get back a prompt. How to get back your prompt right away?
Read more… -
Improve Annoying Console Logging of Cisco IOS
Let’s have a quick look at how to keep Cisco IOS from interfering with your prompt?
Read more… -
STP
In this post, we will have a look at the venerable Spanning Tree Protocol (STP), what it is used for, and how to configure and verify it on Cisco IOS and MikroTik.
Read more… -
Check OCSP With OpenSSL CLI Tool
How to query an OCSP responder to check the validity of a certificate?
Read more… -
Open a ZIP File With Any Extension In Vim
What to do when you use Vim to open a zip file, but the file extension is not
Read more….zip
or one of the other extensions known to Vim’s zip plugin? -
Build Kotlin JMH Benchmarks With Maven
In this post, we will look at how to set up the Maven infrastructure so we can benchmark Kotlin code with JMH (the Java Microbenchmarking Harness).
Read more… -
Migrate Nextcloud PostgreSQL 11 to 17 in a Docker Container
This post looks at how to migrate a Postgres Docker image to a newer version. I will dump all databases contained in a container and migrate them all into a new container. The process outlined works for any Postgres container, but I discuss it in the context of my Nextcloud setup.
Read more… -
How to Create a Shared Git Repo
In this post we will take a look at how to set up a shared Git repository. The goal is to have multiple different users be able to push to and pull from this repository. Security is provided by using Unix users and groups.
Read more… -
Docker Volume Permissions: Mismatch Between Host UID and Container UID
When you have a Docker container with a user that has a different UID from the one on your host, mounting a volume and accessing the files can result in permission issues.
Read more…