]> git.llucax.com Git - z.facultad/75.74/practicos.git/commitdiff
Se agrega un test con 2 routers y el grafico de la red.
authorLeandro Lucarella <llucax@gmail.com>
Thu, 8 Jun 2006 22:25:46 +0000 (22:25 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 8 Jun 2006 22:25:46 +0000 (22:25 +0000)
practicas/pipi/src/test.sh
practicas/pipi/src/test2.sh [new file with mode: 0755]

index 4493a1992321e59d78f6d04b7b73f2120f27572c..dafb6d2d6879db7e72f477b9e3598c302f76d6fb 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
+#
+# 10.10.10.1 ----- 10.10.10.5 ------ 10.10.10.4 ----- 10.10.10.2
+#                       |
+#                       |
+#                  10.10.10.3
+#
 
 # Host 10.10.10.1
 ./test_ipin 10.10.10.5 25 1 1 &
diff --git a/practicas/pipi/src/test2.sh b/practicas/pipi/src/test2.sh
new file mode 100755 (executable)
index 0000000..bf18238
--- /dev/null
@@ -0,0 +1,34 @@
+#!/bin/sh
+#
+# 10.10.10.1 ----- 10.10.10.5 ------ 10.10.10.4 ----- 10.10.10.2
+#                       |
+#                       |
+#                  10.10.10.3
+#
+
+# Host 10.10.10.1
+./test_ipin 10.10.10.5 30 1 1 &
+echo 'Adios mundo cruel!!!' \
+       | ./test_ipout 10.10.10.1 10.10.10.2 30 \
+       ../rutas_ejemplo/route_10.10.10.1.txt
+
+# Router 10.10.10.5
+./test_ipin 10.10.10.5 30 1 1 &
+echo | ./test_ipout 10.10.10.5 10.10.10.1 27 \
+       ../rutas_ejemplo/route_10.10.10.5.txt
+
+# Router 10.10.10.4
+./test_ipin 10.10.10.4 27 1 1 &
+echo | ./test_ipout 10.10.10.4 10.10.10.1 25 \
+       ../rutas_ejemplo/route_10.10.10.4.txt
+
+# Host 10.10.10.2
+./test_ipin 10.10.10.2 25 0 0 &
+echo | ./test_ipout 10.10.10.2 10.10.10.1 25 \
+       ../rutas_ejemplo/route_10.10.10.2.txt
+
+# Limpio
+sleep 1
+killall test_ipin
+ipcrm -Q 0x1abcdef1
+ipcrm -Q 0x1abcdef2