Changeset 8281 in genesis for nodes/make-network-graph.py


Ignore:
Timestamp:
Aug 9, 2010, 8:30:18 PM (14 years ago)
Author:
rick
Message:

Exclude some ranges of machines actually not connected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • nodes/make-network-graph.py

    r8268 r8281  
    2424        l = datadump[iface_key]['ip']
    2525        addr, mask = l.split('/')
     26
     27        # Not parsing of these folks please
     28        if "192.168" in addr:
     29          continue
     30        if "0.0.0.0" in addr:
     31          continue
    2632
    2733        addr = gformat.parseaddr(addr)
Note: See TracChangeset for help on using the changeset viewer.