12345678910111213141516171819202122232425262728293031323334353637 |
- <h3><i class="terminal icon"></i> Network Tools</h3>
- <p>Network tools to help manage your cluster nodes</p>
- <div class="ui divider"></div>
- <div class="ui basic segment">
- <table class="ui celled table">
- <thead>
- <tr>
- <th>Tool</th>
- <th>Description</th>
- <th class="right aligned">Action</th>
- </tr>
- </thead>
- <tbody>
- <tr class="left aligned">
- <td>Multicast DNS (mDNS) Scanner</td>
- <td>Discover mDNS enabled service in this gateway forwarded network</td>
- <td class="right aligned"><a style="cursor: pointer;" onclick="launchToolWithSize('./tools/mdns.html',1000, 640);">Launch <i class="external alternate icon"></i></a></td>
- </tr>
- </tbody>
- </table>
- </div>
- <script>
- function launchToolWithSize(url, width, height){
- window.open(url,'targetWindow',
- `toolbar=no,
- location=no,
- status=no,
- menubar=no,
- scrollbars=yes,
- resizable=yes,
- width=${width},
- height=${height}`);
- }
- </script>
|