Omada SDN Controller_V5.15.20 Pre-Release Firmware (Update on 20th Mar, 2025)

Omada SDN Controller_V5.15.20 Pre-Release Firmware (Update on 20th Mar, 2025)

93 Reply
Re:Omada SDN Controller_V5.15.20 Pre-Release Firmware (Update on 20th Mar, 2025)
2025-04-01 19:20:02 - last edited 2025-04-01 19:22:07

  @kogan 

https://static.tp-link.com/upload/software/2025/202503/20250331/Linux%20Controller_v5.15.20.18%20Release%20Note.pdf

 

  1  
  1  
#101
Options
Re:Omada SDN Controller_V5.15.20 Pre-Release Firmware (Update on 20th Mar, 2025)
2025-04-02 02:05:37

Hi  @kogan 

 

It's the official release of this pre-release version. For more details, you may refer to the release note. Thanks.

  0  
  0  
#102
Options
Re:Omada SDN Controller_V5.15.20 Pre-Release Firmware (Update on 20th Mar, 2025)
2025-04-06 11:11:01 - last edited 2025-04-07 08:01:16

Hello everyone,

I'm currently installing Omada Software Controller 5.15.20 on Ubuntu 22.04 using the provided installation guide. Since this is a new installation, I'm using MongoDB v7 and OpenJDK 21. I've encountered a few issues with the guide's commands, specifically with the MongoDB v7 steps, where some commands appear to be improperly formatted, making them uncopyable directly.

 

For instance, in Step 2: Import the MongoDB public GPG key, the guide shows:

 

curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg \
--dearmor

 

This should instead be written as a single line:

 

curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor

 

Additionally, in Step 5: Install the MongoDB v7.0.7 packages, the following command fails:

 

sudo apt-get install -y mongodb-org=7.0.7 mongodb-org-database=7.0.7 mongodb-org-server=7.0.7 mongodb-mongosh=7.0.7 mongodb-org-mongos=7.0.7 mongodb-org-tools=7.0.7

 

According to the quoted MongoDB website, no version should be specified for mongodb-mongosh. The corrected command should be:

 

sudo apt-get install -y mongodb-org=7.0.7 mongodb-org-database=7.0.7 mongodb-org-server=7.0.7 mongodb-mongosh mongodb-org-mongos=7.0.7 mongodb-org-tools=7.0.7

 

Overall, it seems that longer commands on the website suffer from formatting issues. Is there a way to format these commands in code blocks to prevent such problems in the future?

 

Kind regards

  0  
  0  
#103
Options