Changeset 12479 in genesis


Ignore:
Timestamp:
Oct 18, 2013, 8:10:20 PM (11 years ago)
Author:
rick
Message:

Correcties om graph van nodes te maken.

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • nodes/HybridDrijfhuis/wleiden.yaml

    r11771 r12479  
    5656  mode       : "ap"
    5757  type       : "eth"
     58  extra_type : "eth2wifibridge"
    5859  channel    : "1"
    5960  ssid       : "ap-westeinder-drijfhuis-3"
     
    6162  ns_ip      : "172.17.0.194/26"
    6263  ns_mac     : ""
     64  bridge_type: "Bullet2"
    6365  status     : "down"
    6466
  • nodes/HybridHuub/wleiden.yaml

    r12442 r12479  
    4242  mode       : "ap"
    4343  type       : "eth"
     44  extra_type : "eth2wifibridge"
     45  ssid       : "ap-WirelessLeiden-Huub2"
    4446  dhcp       : "140-180"
    4547  ns_ip      : "172.17.16.130/26"
     
    5557  mode       : "ap"
    5658  type       : "eth"
     59  extra_type : "eth2wifibridge"
     60  ssid       : "ap-WirelessLeiden-Huub3"
    5761  dhcp       : "10-250"
    5862  ns_ip      : "172.17.65.2/24"
  • nodes/HybridRustdam/wleiden.yaml

    r12474 r12479  
    4747  mode       : "ap-wds"
    4848  type       : "eth"
     49  extra_type : "eth2wifibridge"
     50  ssid       : "il-o.rustdam.wleiden.net"
    4951  dhcp       : False
    5052  compass    : "z"
  • nodes/HybridUniGor2/wleiden.yaml

    r12478 r12479  
    4949  mode       : "ap-wds"
    5050  type       : "eth"
     51  extra_type : "eth2wifibridge"
    5152  channel    : "7"
    5253  ssid       : "n-o.unigor.wleiden.net"
     
    5556  ns_ip      : "172.16.16.130/29"
    5657  ns_mac     : "00:15:6d:e8:e6:9b"
     58  bridge_type: "NanoStation M5"
    5759  status     : "down"
    5860
  • tools/make-network-graph.py

    r11753 r12479  
    6666          link_data[addr] = 1
    6767          iface = datadump[iface_key]['autogen_ifname']
    68           print nodename, iface
    6968          INTERVAL = 60 * 10
    7069          if store['uptime'].has_key(nodename) and store['snmp'].has_key(nodename) and store['traffic'].has_key(nodename):
     
    7776              link_data[addr] = retval
    7877
    79           print "### %s [%s] is of type %s" % (gformat.showaddr(addr), iface_key, link_type[addr])
     78          print "### ... %s %s [%s] is of type %s" % (iface, gformat.showaddr(addr), iface_key, link_type[addr])
    8079  except (KeyError, ValueError), e:
    8180    print "[FOUT] in '%s' interface '%s'" % (host,iface_key)
     
    9594edge [ fontsize = 10, ]
    9695"""
    97   for node, datadump in nodes.iteritems():
     96  for node in sorted(nodes.keys()):
     97    datadump = nodes[node]
     98    print "# Processing node:", node
    9899    lines = [node]
    99100    for ik in datadump['autogen_iface_keys']:
     101      print "# .. ", ik
    100102      if 'alias' in ik or 'wlan' in datadump[ik]['autogen_ifname']:
    101103        continue
Note: See TracChangeset for help on using the changeset viewer.