networktools.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <h3><i class="terminal icon"></i> Network Tools</h3>
  2. <p>Network tools to help manage your cluster nodes</p>
  3. <div class="ui divider"></div>
  4. <div class="ui basic segment">
  5. <table class="ui celled table">
  6. <thead>
  7. <tr>
  8. <th>Tool</th>
  9. <th>Description</th>
  10. <th class="right aligned">Action</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr class="left aligned">
  15. <td>Multicast DNS (mDNS) Scanner</td>
  16. <td>Discover mDNS enabled service in this gateway forwarded network</td>
  17. <td class="right aligned"><a style="cursor: pointer;" onclick="launchToolWithSize('./tools/mdns.html',1000, 640);">Launch <i class="external alternate icon"></i></a></td>
  18. </tr>
  19. </tbody>
  20. </table>
  21. </div>
  22. <script>
  23. function launchToolWithSize(url, width, height){
  24. window.open(url,'targetWindow',
  25. `toolbar=no,
  26. location=no,
  27. status=no,
  28. menubar=no,
  29. scrollbars=yes,
  30. resizable=yes,
  31. width=${width},
  32. height=${height}`);
  33. }
  34. </script>