--- a
+++ b/examples/SmallNetRouting/SmallNetRouting.ned
@@ -0,0 +1,59 @@
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+// 
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Lesser General Public License for more details.
+// 
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program.  If not, see http://www.gnu.org/licenses/.
+// 
+
+package rina.examples.SmallNetRouting;
+
+import rina.CS.*;
+import rina.DAF.IRM.ConnectionTable;
+
+
+network SmallNetRouting
+{
+    @display("bgb=975,618");
+
+    submodules:
+        host1: Host1AP {
+            @display("p=136,103");
+        }
+        host2: Host1AP {
+            @display("p=136,482");
+        }
+        host3: Host1AP {
+            @display("p=479,103");
+        }
+        host4: Host1AP {
+            @display("p=851,103");
+        }
+        host5: Host1AP {
+            @display("p=851,482");
+        }
+        router1: InteriorRouter3Int {
+            @display("p=255,296");
+        }
+        router2: InteriorRouter3Int {
+            @display("p=479,296");
+        }
+        router3: InteriorRouter3Int {
+            @display("p=703,296");
+        }
+    connections:
+        router1.medium[0] <--> host1.medium;
+        router1.medium[1] <--> host2.medium;
+        router1.medium[2] <--> router2.medium[0];
+        router2.medium[1] <--> router3.medium[0];
+        router2.medium[2] <--> host3.medium;
+        router3.medium[1] <--> host4.medium;
+        router3.medium[2] <--> host5.medium;
+}