diff --git a/src/usr/local/www/status.php b/src/usr/local/www/status.php
index 5878b4f6cb..e3a354651b 100644
--- a/src/usr/local/www/status.php
+++ b/src/usr/local/www/status.php
@@ -169,6 +169,14 @@ function get_firewall_info() {
if (!empty($platform['descr'])) {
$firewall_info .= "
Platform: " . htmlspecialchars($platform['descr']);
}
+
+ if (file_exists('/var/db/uniqueid')) {
+ $ngid = file_get_contents('/var/db/uniqueid');
+ if (!empty($ngid)) {
+ $firewall_info .= "
Netgate Device ID: " . htmlspecialchars($ngid);
+ }
+ }
+
$serial = system_get_serial();
if (!empty($serial)) {
$firewall_info .= "
SN/UUID: " . htmlspecialchars($serial);