forked from network-automation/net_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated_report_failure_example.html
51 lines (49 loc) · 1.25 KB
/
generated_report_failure_example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<table>
<thead>
<tr>
<th>Test</th>
<th>Rtr1</th>
<th>Rtr2</th>
</tr>
</thead>
<tbody>
<tr>
<td>GigabitEthernet1 interface up</td>
<td> Test Passed</td>
<td> Test Passed</td>
</tr>
<tr>
<td>Test reachability across tunnel rtr1->rtr2</td>
<td style="background:red;"> Test Failed</td>
<td> N/A </td>
</tr>
<tr>
<td>Tunnel0 interface up</td>
<td style="background:red;"> Test Failed</td>
<td> Test Passed</td>
</tr>
<tr>
<td>Test reachability to ansible</td>
<td> Test Passed</td>
<td style="background:red;"> Test Failed</td>
</tr>
<tr>
<td>Test reachability across tunnel rtr2->rtr1</td>
<td> N/A </td>
<td style="background:red;"> Test Failed</td>
</tr>
<tr>
<td>Test reachability to host1</td>
<td style="background:red;"> Test Failed</td>
<td> Test Passed</td>
</tr>
</tbody>
</table>
</body>
</html>