From bceb298edbd6c09972628faf3c54ae800b22ae5d Mon Sep 17 00:00:00 2001 From: Brian O'Connor <bocon@onlab.us> Date: Tue, 16 Jul 2013 17:10:12 -0700 Subject: [PATCH] Adding NAT class Includes automatic NAT feature (mn --nat) and addNAT convenience method for topologies fixes #111 --- mininet/node.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mininet/node.py b/mininet/node.py index 17e153c4..f5729934 100644 --- a/mininet/node.py +++ b/mininet/node.py @@ -1307,3 +1307,4 @@ def terminate( self ): self.cmd( 'sysctl net.ipv4.ip_forward=0' ) super( NAT, self ).terminate() + -- GitLab