Index: trunk/FACT++/gui/FactGui.h
===================================================================
--- trunk/FACT++/gui/FactGui.h	(revision 11230)
+++ trunk/FACT++/gui/FactGui.h	(revision 11231)
@@ -768,8 +768,13 @@
         str << "V" << version/100 << 'r' << version%100;
 
+        ostringstream dns;
+        dns << (version==0?"No connection":"Connection");
+        dns << " to DIM DNS (" << getenv("DIM_DNS_NODE") << ")";
+        dns << (version==0?".":" established.");
+
+        fStatusDNSLabel->setText(version==0?"Offline":str.str().c_str());
+        fStatusDNSLabel->setToolTip(dns.str().c_str());
+
         SetLedColor(fStatusDNSLed, version==0 ? kLedRed : kLedGreen, Time());
-
-        fStatusDNSLabel->setText(version==0?"Offline":str.str().c_str());
-        fStatusDNSLabel->setToolTip(version==0?"No connection to DIM DNS.":"Connection to DIM DNS established.");
     }
 
