CommandNotFoundError
from pymin.seqtools import Sequence
-DEBUG = False
-#DEBUG = True
+#DEBUG = False
+DEBUG = True
__ALL__ = ('Error', 'ReturnNot0Error', 'ExecutionError', 'ItemError',
'ItemAlreadyExistsError', 'ItemNotFoundError', 'ContainerError',
self.name = name
self.mac = mac
self.ppp = ppp
+ self.active = True
self.addrs = dict()
self.routes = list()
def as_tuple(self):
- return (self.name, self.mac, self.addrs)
+ return (self.name, self.mac, self.active, self.addrs)
d[name].addrs[from_addr] = Address(from_addr,24, peer=to_addr)
except IndexError:
pass
-
return d
-
+
def get_peers():
p = subprocess.Popen(('ip', '-o', 'addr'), stdout=subprocess.PIPE,
close_fds=True)