Changeset 14408 in genesis


Ignore:
Timestamp:
Dec 16, 2019, 8:49:59 PM (5 years ago)
Author:
rick
Message:

Add extra devices in motd listing for quick access

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nodes/PVKerkDuif/wleiden.yaml

    r14061 r14408  
    2626
    2727iface_vr0:
    28   comment    : "Link naar switch PVKerkDuif Network, camera c4:d6:55:3e:19:3f at .66"
     28  comment    : "Link naar switch PVKerkDuif Network"
    2929  ip         : "172.17.13.65/28"
    3030  sdesc      : "2building"
     
    3333  status     : "up"
    3434
     35iface_vr0_extra0:
     36  comment    : "Parkeerplaats - Webcam"
     37  sdesc      : "webcam-buiten"
     38  type       : "eth"
     39  dhcp       : False
     40  status     : "up"
     41  bridge_type: "Foscam"
     42  ip         : "172.17.13.66/24"
     43  mac        : "c4:d6:55:3e:19:3f"
    3544
    3645iface_vr1:
     
    5160
    5261iface_vr2:
    53   comment    : "AccessPoint Sportvelden via NanoStation, peer 00:27:22:E2:53:DD 172.17.20.3"
     62  comment    : "AccessPoint Sportvelden"
    5463  ip         : "172.17.20.1/24"
    5564  sdesc      : "2sportvelden"
    5665  mode       : "ap-wds"
    5766  type       : "eth"
    58   channel    : "11"
     67  channel    : "1"
    5968  ssid       : "ap-ZTW-PVKerkDuif-Buiten"
    6069  dhcp       : "11-250"
     
    6473  status     : "up"
    6574
     75iface_vr2_extra0:
     76  comment    : "AccessPoint Veld11 Buiten"
     77  sdesc      : "veld11"
     78  type       : "eth"
     79  dhcp       : False
     80  status     : "up"
     81  bridge_type: "NanoStation M5"
     82  ip         : "172.17.20.3/24"
     83  mac        : "00:27:22:80:5a:b6"
    6684
     85iface_vr2_extra1:
     86  comment    : "AccessPoint Veld11 Binnen"
     87  sdesc      : "veld11"
     88  type       : "eth"
     89  dhcp       : False
     90  status     : "up"
     91  bridge_type: "Bullet2"
     92  ip         : "172.17.20.4/24"
     93  mac        : "00:27:22:f2:f1:f0"
     94
     95iface_vr2_extra2:
     96  comment    : "Veld11 - Webcam"
     97  sdesc      : "webcam-veld11"
     98  type       : "eth"
     99  dhcp       : False
     100  status     : "up"
     101  bridge_type: "airCam"
     102  ip         : "172.17.20.5/24"
     103  mac        : "00:27:22:60:43:da"
  • tools/gformat.py

    r14384 r14408  
    11151115    ifacedump = datadump[iface_key]
    11161116
    1117     if not 'ns_ip' in ifacedump:
     1117    if 'mac' in ifacedump:
     1118      x_ip = ifacedump['ip'].split('/')[0]
     1119      x_mode = 'active' if ifacedump.get('status') == 'up' else 'disabled'
     1120    elif 'ns_ip' in ifacedump:
     1121      x_ip = ifacedump['ns_ip'].split('/')[0]
     1122      x_mode = ifacedump.get('mode') or 'unknown'
     1123    else:
    11181124      continue
    11191125
    1120     x_ip = ifacedump['ns_ip'].split('/')[0]
    1121 
    1122     if 'mode' in ifacedump:
    1123       x_mode = ifacedump['mode']
    1124     else:
    1125       x_mode = 'unknown'
    1126 
    1127     if 'bridge_type' in ifacedump:
    1128       device_type = ifacedump['bridge_type']
    1129     else:
    1130       device_type = 'Unknown'
    1131 
    1132     table.append((ifacedump['autogen_iface'], x_mode, 'http://%s' % x_ip if url else x_ip, device_type))
     1126    device_type = ifacedump.get('bridge_type') or 'Unknown'
     1127    table.append((ifacedump['autogen_iface'], x_mode, 'http://%s' % x_ip if url else x_ip, "%s (%s)" % (device_type, ifacedump.get('comment',''))))
     1128
    11331129  return table
    11341130
     
    13771373    ('ns_mac', False),
    13781374    ('bullet2_mac', False),
     1375    ('mac', False),
    13791376    ('ns_type', False),
    13801377    ('bridge_type', False),
Note: See TracChangeset for help on using the changeset viewer.