-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlo-accept-smcr-ipv4.html
73 lines (68 loc) · 3.65 KB
/
lo-accept-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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Loopback SMC-R CLC Handshake</title>
</head>
<body>
<!-- CSS styles -->
<style>
.highlight {
color: black;
background-color: yellow;
}
</style>
<!-- content -->
<pre>127.0.0.1:50000 -> 127.0.0.1:60294: Accept: <span class="1">Eyecatcher: SMC-R</span>,
<span class="2">Type: 2 (Accept)</span>, <span class="3">Length: 68</span>, <span class="4">Version: 1</span>, <span class="5">First Contact: 1</span>, <span class="6">Path: SMC-R</span>,
<span class="7">Peer ID: 45472@98:03:9b:ab:cd:ef</span>, <span class="8">SMC-R GID: fe80::9a03:9bff:feab:cdef</span>,
<span class="9">RoCE MAC: 98:03:9b:ab:cd:ef</span>, <span class="10">QP Number: 228</span>, <span class="11">RMB RKey: 5501</span>, <span class="12">RMBE Index: 1</span>,
<span class="13">RMBE Alert Token: 5</span>, <span class="14">RMBE Size: 2 (65536)</span>, <span class="15">QP MTU: 3 (1024)</span>,
<span class="16">RMB Virtual Address: 0xf0a60000</span>, <span class="17">Packet Sequence Number: 7534078</span>,
<span class="1">Trailer: SMC-R</span>
00000000 <span class="1">e2 d4 c3 d9</span> <span class="2">02</span> <span class="3">00 44</span> <span class="4">1</span><span class="5"><span class="6">8</span></span> <span class="7">b1 a0 98 03 9b ab cd ef</span> |<span class="1">....</span><span class="2">.</span><span class="3">.D</span><span class="4"><span class="5"><span class="6">.</span></span></span><span class="7">........</span>|
00000010 <span class="8">fe 80 00 00 00 00 00 00 9a 03 9b ff fe ab cd ef</span> |<span class="8">................</span>|
00000020 <span class="9">98 03 9b ab cd ef</span> <span class="10">00 00 e4</span> <span class="11">00 00 15 7d</span> <span class="12">01</span> <span class="13">00 00</span> |<span class="9">......</span><span class="10">...</span><span class="11">...}</span><span class="12">.</span><span class="13">..</span>|
00000030 <span class="13">00 05</span> <span class="14">2</span><span class="15">3</span> 00 <span class="16">00 00 00 00 f0 a6 00 00</span> 00 <span class="17">72 f5 fe</span> |<span class="13">..</span><span class="14"><span class="15">#</span></span>.<span class="16">........</span>.<span class="17">r..</span>|
00000040 <span class="1">e2 d4 c3 d9</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")
mouseOverByClass("9", "highlight")
mouseOverByClass("10", "highlight")
mouseOverByClass("11", "highlight")
mouseOverByClass("12", "highlight")
mouseOverByClass("13", "highlight")
mouseOverByClass("14", "highlight")
mouseOverByClass("15", "highlight")
mouseOverByClass("16", "highlight")
mouseOverByClass("17", "highlight")
</script>
</body>
</html>