X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/07a7ae61f3af4fa685077e3b7e5c59f09f8a143f..4de8ac8cb2dc9d60d6e80687e0b41dac2ba95001:/config.py diff --git a/config.py b/config.py index e16262d..aae79c1 100644 --- a/config.py +++ b/config.py @@ -19,6 +19,15 @@ config_path = join(base_path, 'config') class Root(Handler): + def __init__(self): + try: + f = file("/proc/sys/net/ipv4/ip_forward","w") + f.write("1") + f.close() + except (IOError, OSError), e: + print "Can't set ip_forward:", e + #self.ip.device_up_hook(self.dns) + firewall = FirewallHandler( pickle_dir = join(pickle_path, 'firewall'), config_dir = join(config_path, 'firewall'))