]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
update network map to show Trb5sc MAC/IP
authorJan Michel <j.michel@gsi.de>
Tue, 9 Aug 2022 14:36:04 +0000 (16:36 +0200)
committerJan Michel <j.michel@gsi.de>
Tue, 9 Aug 2022 14:36:04 +0000 (16:36 +0200)
web/htdocs/network/map.pl

index d9f820b600712d6a3e7a261814e9826b31102dd3..c9d9251f2e4ce1a491a00ec47567a5a60b16c0cf 100755 (executable)
@@ -172,7 +172,7 @@ if($ENV{'QUERY_STRING'} =~ /getmap/) {
           }
           if ($feat eq "") {$feat = "N/A";}
         }
-      if($table == 1) {
+      if($table == 1 || $table == 2) {
           if($inclHigh->{$addr}&0x80) { #CTS
             $feat .= "\nCTS: ";
             if(($inclLow->{$addr} & 0xF) == 1) { $feat .= "CBM-MBS module, ";}
@@ -412,11 +412,14 @@ sub GetMac {
     $r = sprintf('%u.%u.%u.%u',$ip&0xFF,$ip>>8&0xFF,$ip>>16&0xFF,$ip>>24&0xFF);
     }
   else {
-    $id = sprintf('%08x',$id);
+    $id = sprintf('%16x',$id);
     $r = 'da:7a:3'.substr($id,7,1).':'.substr($id,8,2).':'.substr($id,10,2).':'.substr($id,12,2);
     if ($btype =~ /TRB3sc/i) {
       $r = 'da:7a:0'.substr($id,7,1).':'.substr($id,8,2).':'.substr($id,10,2).':'.substr($id,12,2);
       }
+    if ($btype =~ /TRB5sc/i) {
+      $r = 'da:1a:'.substr($id,4,2).':'.substr($id,6,2).':'.substr($id,8,2).':'.substr($id,10,2);
+      }
     }
   return $r;
   }