-
Notifications
You must be signed in to change notification settings - Fork 2
/
lo-decline-smcr-ipv4.html
56 lines (51 loc) · 2.23 KB
/
lo-decline-smcr-ipv4.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
<!DOCTYPE html>
<html>
<meta charset="utf-8"/>
<title>Loopback SMC-R CLC Handshake</title>
<body>
<!-- CSS styles -->
<style>
.highlight {
color: black;
background-color: yellow;
}
</style>
<!-- content -->
<pre>127.0.0.1:36140 -> 127.0.0.1:50000: Decline: <span class="1">Eyecatcher: SMC-R</span>,
<span class="2">Type: 4 (Decline)</span>, <span class="3">Length: 28</span>, <span class="4">Version: 1</span>, <span class="5">Out of Sync: 0</span>, <span class="6">Path: SMC-R</span>,
<span class="7">Peer ID: 9509@25:25:25:25:25:00</span>, <span class="8">Peer Diagnosis: no SMC device found (R or D)</span>,
<span class="1">Trailer: SMC-R</span>
00000000 <span class="1">e2 d4 c3 d9</span> <span class="2">04</span> <span class="3">00 1c</span> <span class="4">1</span><span class="5"><span class="6">0</span></span> <span class="7">25 25 25 25 25 25 25 00</span> |<span class="1">....</span><span class="2">.</span><span class="3">..</span><span class="4"><span class="5"><span class="6">.</span></span></span><span class="7">%%%%%%%.</span>|
00000010 <span class="8">03 03 00 00 00 00 00 00</span> <span class="1">e2 d4 c3 d9</span> |<span class="8">........</span><span class="1">....</span>|</pre>
<!-- script for highlighting -->
<script type="text/javascript">
// set mouse over for a class
function mouseOverByClass(className, highlightClassName) {
var elements = document.getElementsByClassName(className);
function mouseOverEvent() {
for(var i = 0; i < elements.length; i++) {
elements[i].classList.add(highlightClassName);
}
};
function mouseOutEvent() {
for(var i = 0; i < elements.length; i++) {
elements[i].classList.remove(highlightClassName);
}
};
for (var i = 0; i < elements.length; i++) {
elements[i].onmouseover = mouseOverEvent;
elements[i].onmouseout = mouseOutEvent;
}
}
// setup highlights for classes
mouseOverByClass("1", "highlight")
mouseOverByClass("2", "highlight")
mouseOverByClass("3", "highlight")
mouseOverByClass("4", "highlight")
mouseOverByClass("5", "highlight")
mouseOverByClass("6", "highlight")
mouseOverByClass("7", "highlight")
mouseOverByClass("8", "highlight")
</script>
</body>
</html>