diff --git a/src/NetworkOptimizer.Web/Components/Pages/PerformanceTweaks.razor b/src/NetworkOptimizer.Web/Components/Pages/PerformanceTweaks.razor
index d0f45d49c..a3662d859 100644
--- a/src/NetworkOptimizer.Web/Components/Pages/PerformanceTweaks.razor
+++ b/src/NetworkOptimizer.Web/Components/Pages/PerformanceTweaks.razor
@@ -116,7 +116,7 @@
@if (_gatewayConnected && _status?.FirmwareSupported == false && !string.IsNullOrEmpty(_status?.FirmwareVersion))
{
- Unsupported Firmware: Performance tweaks are currently tested and supported up to UniFi OS 5.1.10. Your gateway is running @_status.FirmwareVersion. Deploying new tweaks is disabled until we validate compatibility with this version. Existing tweaks will continue to run.
+ Unsupported Firmware: Performance tweaks are currently tested and supported up to UniFi OS 5.1.11. Your gateway is running @_status.FirmwareVersion. Deploying new tweaks is disabled until we validate compatibility with this version. Existing tweaks will continue to run.
}
diff --git a/src/NetworkOptimizer.Web/Services/PerfTweaksDeploymentService.cs b/src/NetworkOptimizer.Web/Services/PerfTweaksDeploymentService.cs
index dc1247152..4e81fbcbf 100644
--- a/src/NetworkOptimizer.Web/Services/PerfTweaksDeploymentService.cs
+++ b/src/NetworkOptimizer.Web/Services/PerfTweaksDeploymentService.cs
@@ -19,7 +19,7 @@ public class PerfTweaksDeploymentService
private const string OnBootDir = "/data/on_boot.d";
private const string PerfTweaksDir = "/data/perf-tweaks";
private const string SfpModuleDir = "/data/sfp-sgmiiplus";
- private static readonly Version MaxSupportedFirmware = new(5, 1, 10);
+ private static readonly Version MaxSupportedFirmware = new(5, 1, 11);
private static readonly Dictionary BootScriptFiles = new()
{