-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (104 loc) · 3.44 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Capirca policy checker</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/custom.js"></script>
</head>
<body>
<h1>Capirca policy checker</h1>
<div id="selection">
<table>
<thead>
<tr>
<th>All policies</th>
<th>UTwente inbound-outbound</th>
</tr>
</thead>
<tr>
<td>
<form id="check_acl">
<table>
<tr>
<td><label for="policy_file">Policy file:</label></td>
<td><select id="policy_file"></select></td>
</tr>
<tr>
<td>Protocols:</td>
<td>
<input id="protocols_acl_tcp" class="protocols_acl" type="checkbox" value="tcp" checked="checked">
<label for="protocols_acl_tcp">TCP</label>
<input id="protocols_acl_udp" class="protocols_acl" type="checkbox" value="udp">
<label for="protocols_acl_udp">UDP</label>
<input id="protocols_acl_icmp" class="protocols_acl" type="checkbox" value="icmp">
<label for="protocols_acl_icmp">ICMP</label>
</td>
</tr>
<tr>
<td><label for="source_addresses">Source Host(s):</label></td>
<td><input id="source_addresses" type="text" value="any"></td>
</tr>
<tr>
<td><label for="source_ports">Source Port(s):</label></td>
<td><input id="source_ports" type="text" value="1025"></td>
</tr>
<tr>
<td><label for="destination_addresses">Destination Host(s):</label></td>
<td><input id="destination_addresses" type="text" value="200.1.1.1"></td>
</tr>
<tr>
<td><label for="destination_ports">Destination Port(s):</label></td>
<td><input id="destination_ports" type="text" value="80"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</td>
<td>
<form id="check_utnet">
<table>
<tr>
<td>Protocols:</td>
<td>
<input id="protocols_utnet_tcp" class="protocols_utnet" type="checkbox" value="tcp" checked="checked">
<label for="protocols_utnet_tcp">TCP</label>
<input id="protocols_utnet_udp" class="protocols_utnet" type="checkbox" value="udp">
<label for="protocols_utnet_udp">UDP</label>
<input id="protocols_utnet_icmp" class="protocols_utnet" type="checkbox" value="icmp">
<label for="protocols_utnet_icmp">ICMP</label>
</td>
</tr>
<tr>
<td><label for="addresses1">First Host(s):</label></td>
<td><input id="addresses1" type="text" value="130.89.1.1"></td>
</tr>
<tr>
<td><label for="ports1">First Port(s) 1:</label></td>
<td><input id="ports1" type="text" value="1025"></td>
</tr>
<tr>
<td><label for="addresses2">Second Host(s) 2:</label></td>
<td><input id="addresses2" type="text" value="200.1.1.1"></td>
</tr>
<tr>
<td><label for="ports2">Second Port(s) 2:</label></td>
<td><input id="ports2" type="text" value="80"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</div>
<div id="result"> </div>
</body>
</html>