disable setting route until we have consistent way to determine external ip address
diff --git a/plstackapi/core/api/subnets.py b/plstackapi/core/api/subnets.py
index f72595a..b62a7ef 100644
--- a/plstackapi/core/api/subnets.py
+++ b/plstackapi/core/api/subnets.py
@@ -43,7 +43,7 @@
     # add subnet as interface to slice's router
     try: driver.add_router_interface(subnet.slice.router_id, subnet.subnet_id)
     except: pass         
-    add_route = 'route add -net %s dev br-ex gw 10.100.0.5' % self.cidr
+    #add_route = 'route add -net %s dev br-ex gw 10.100.0.5' % self.cidr
     commands.getstatusoutput(add_route)    
     subnet.save()
     return subnet
@@ -58,7 +58,7 @@
         driver.delete_router_interface(subnet.slice.router_id, subnet.subnet_id)
         driver.delete_subnet(subnet.subnet_id) 
         subnet.delete()
-        del_route = 'route del -net %s' % subnet.cidr
+        #del_route = 'route del -net %s' % subnet.cidr
     commands.getstatusoutput(del_route)
     return 1