tp-link | Omada logo

Install Tplink Omada on Debian 11

This guide covers installation of TP-Link’s Omada Software Controller on Debian 11. At the time of writing, Omada Controller version is 5.9.31. Update and Upgrade system 1 apt update && apt upgrade -y Install omada dependencies 1 apt install -y openjdk-11-jdk-headless curl autoconf make gcc Install MongoDB Go to Mongo DB’s repository and select an appropriate server version. I’m using MongoDb Server 4.4.16 1 2 wget https://repo.mongodb.org/apt/debian/dists/buster/mongodb-org/4.4/main/binary-amd64/mongodb-org-server_4.4.16_amd64.deb apt install -y ....

<span title='2023-04-05 17:44:11 +0100 +0100'>5 April 2023</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;154 words&nbsp;·&nbsp;Aiden Arnkels-Webb
Docker logo

Dockers seven network types and when to use them

1. The Default Bridge This is the default network that new containers will connect to. It’s a software bridge between your docker instance and your host system, providing isolation between the bridge network and other networks, including the host network and other bridge networks on the host. Docker best practices discourage using this network for containers, recommending User-Defined bridges instead, which we will get to in #4. When to use it: Avoid using the Default Bridge, use another network type instead where possible...

<span title='2022-08-25 12:40:30 +0100 +0100'>25 August 2022</span>&nbsp;·&nbsp;5 min&nbsp;·&nbsp;1049 words&nbsp;·&nbsp;Aiden Arnkels-Webb