aboutsummaryrefslogtreecommitdiff
path: root/template/l2o/mile4.html.j2
blob: 5e7d3a1e9edc856ad6c6be0ccfa79455fa22257d (plain) (blame)
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
105
106
107
{% extends "common/base.j2" %}
{% block body_content %}
<article class="container">

  <header>
    <h1>{{ _("NGI Assure project: Layer-2-Overlay") }}</h1>
  </header>

  <div class="row">
    <div class="col-2 d-none d-lg-block"><!-- for large viewports show menu for better orientation -->
      <nav class="nav subnav position-fixed flex-column border-right" style="position:fixed">
      <a class="nav-link" href="index.html#idea">{{ _("Project main page") }}</a>
      </nav>
    </div>
    <div class="col">

      <h2>Implementation details milestone 4</h2><br/>

      <section>
        <h4><a name="netjail" class="subnav-anchor"></a>{{ _("TNG Service") }}</h4><br/>
        <p>
          {% trans %}
	  <ul>
		<li>Added caching for Core messages, if confirmed virtual link is missing.</li>
		<li>Addd caching for DV forwarding, if confirmed virtual link is missing.</li>
		<li>Fixed bugs in fragmentation logic.</li>
		<li>Fixed bugs in fragmentation logic.</li>
		<li>Fixed bugs in flow control logic.</li>
		<li>Fixed Bug with lifetime of DV learn message. (Validation against replay attack still missing.)</li>
		<li>Fixed Bug in rekeying logic of the TCP communicator</li>
	  </ul>
	  {% endtrans %}
        </p>
	<p>
	Even more details in commits fc99f54070e04c043c14f2244f85833ecf6b00c4, 95a1edacccd9b3bf769a144a12d41946d0ac25dc and 247230d737e3e4709392148bfabbde25871b6914
	</p>
      </section>

      <section>
        <h4><a name="netjail" class="subnav-anchor"></a>{{ _("Master Loop") }}</h4>
        <p>
          {% trans %}
	  <table width="100%">
		<tr>
			<td width="60%" style="vertical-align: top;">src/transport/test_transport_simple_send_dv_inverse.sh</td><td width="55%" style="vertical-align: top;">Added script to start the inverse distance vector test case.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">src/transport/test_transport_simple_send_dv_circle.sh</td><td width="55%" style="vertical-align: top;">Added script to start the circle distance vector test case.</td>
		<tr>
	  </table>
          {% endtrans %}
        </p>
	<h4><a name="netjail" class="subnav-anchor"></a>{{ _("Local Loop") }}</h4>
        <p>
          {% trans %}
	  <table width="100%">
	  	 <tr>
			<td width="60%" style="vertical-align: top;">src/transport/transport_api_cmd_connecting_peers.c</td><td width="40%" style="vertical-align: top;">Added logic to handle counting additonal connection per peer.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">src/transport/test_transport_plugin_cmd_simple_send_dv.c</td><td width="40%" style="vertical-align: top;">Added plugin which creates the commands for the distance vector test cases.</td>
		<tr>
	  </table>
          {% endtrans %}
        </p>
	<h4><a name="netjail" class="subnav-anchor"></a>{{ _("Configuration") }}</h4>
        <p>
          {% trans %}
	  <table width="100%">
	  	 <tr>
			<td width="60%" style="vertical-align: top;">src/transport/test_transport_distance_vector_inverse_topo.conf</td><td width="40%" style="vertical-align: top;">Configuration for the DV inverse path test case.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">src/transport/test_transport_distance_vector_circle_topo.conf</td><td width="40%" style="vertical-align: top;">Configuration for the DV circle path test case.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">src/testing/netjail_start.sh</td><td width="40%" style="vertical-align: top;">Enhanced port forwarding configuration to restrict port forwarding to specific source IPs.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">contrib/netjail/topo.sh</td><td width="40%" style="vertical-align: top;">Make specific nodes configurable as source node for IP forwarding.</td>
		<tr>
			<td></td><td> </td>
		</tr>
		<tr>
			<td width="60%" style="vertical-align: top;">src/testing/testing.c</td><td width="40%" style="vertical-align: top;">Helper methods to retrieve the number of additional connections globally and per peer, and which peer is allowed as source for IP forwarding.</td>
		<tr>
	  </table>
          {% endtrans %}
        </p>
      </section>

      
    </div>
  </div>

</article>
{% endblock body_content %}