Delete the OVSTunnel to use the UdpTunnel instead. Just need to fix an issue with...
[nepi.git] / src / nepi / resources / linux / tunnel.py
index 8c7402a..8e0760d 100644 (file)
@@ -86,6 +86,7 @@ class LinuxTunnel(LinuxApplication):
         self.endpoint1.node.mkdir(self.run_home(self.endpoint1))
         self.endpoint2.node.mkdir(self.run_home(self.endpoint2))
 
+        self.debug("Initiate the connection")
         # Start 2 step connection
         # Initiate connection from endpoint 1 to endpoint 2
         data1 = self.initiate_connection(self.endpoint1, self.endpoint2)
@@ -93,12 +94,14 @@ class LinuxTunnel(LinuxApplication):
         # Initiate connection from endpoint 2 to endpoint 1
         data2 = self.initiate_connection(self.endpoint2, self.endpoint1)
 
+        self.debug("Establish the connection")
         # Establish connection from endpoint 1 to endpoint 2
         self.establish_connection(self.endpoint1, self.endpoint2, data2)
         
         # Establish connection from endpoint 2 to endpoint 1
         self.establish_connection(self.endpoint2, self.endpoint1, data1)
 
+        self.debug("Verify the connection")
         # check if connection was successful on both sides
         self.verify_connection(self.endpoint1, self.endpoint2)
         self.verify_connection(self.endpoint2, self.endpoint1)
@@ -131,6 +134,7 @@ class LinuxTunnel(LinuxApplication):
     def do_stop(self):
         """ Stops application execution
         """
+
         if self.state == ResourceState.STARTED:
             self.info("Stopping tunnel")