コード例 #1
0
ファイル: mx.py プロジェクト: fredriclinder/sdcp
 def __str__(self):
     return Junos.__str__(self) + " Style:" + str(self._style)
コード例 #2
0
ファイル: mx.py プロジェクト: fredriclinder/sdcp
 def __init__(self, aIP, aID=None):
     Junos.__init__(self, aIP, aID)
     self._interfacenames = {}
コード例 #3
0
ファイル: mx.py プロジェクト: fredriclinder/sdcp
 def get_functions(cls):
     return Junos.get_functions()
コード例 #4
0
 def __str__(self):
     return Junos.__str__(self) + " Resolvers:" + str(
         self.dnslist) + " IP:" + self.dhcpip + " IPsec:" + str(
             self.tunnels)
コード例 #5
0
 def __init__(self, aIP, aID=None):
     Junos.__init__(self, aIP, aID)
     self.dnslist = []
     self.dhcpip = ""
     self.tunnels = 0
コード例 #6
0
ファイル: ex.py プロジェクト: fredriclinder/sdcp
 def get_functions(cls):
  widgets = ['switch_table']
  widgets.extend(Junos.get_functions())
  return widgets