├── .gitignore ├── README.md ├── bin ├── ieee_oui_parser.py └── macformat.py ├── default ├── app.conf ├── commands.conf ├── data │ └── ui │ │ ├── cidr_assets.xml │ │ ├── nav │ │ └── default.xml │ │ └── views │ │ ├── mac_lookup.xml │ │ └── overview.xml ├── logging.conf ├── macros.conf ├── props.conf ├── savedsearches.conf └── transforms.conf ├── lookups ├── cidr_network.csv ├── mac_vendor_lookup.csv ├── sample_cidr_network.csv ├── sample_vlan_inventory.csv └── subnet_to_cidr.csv ├── metadata └── default.meta └── static ├── appIcon.png ├── appIconAlt.png ├── appIconAlt_2x.png ├── appIcon_2x.png └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | local/ 4 | /var/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome 2 | This supporting add-on (SA) for Splunk enables lookup of *MAC* address field to IEEE registered vendor information and the ability to identify assets by subnet mask. Additional capabilities such as normalization of *MAC* address are also provided per Splunk Common Information model http://docs.splunk.com/Documentation/CIM/latest/User/NetworkTraffic. App comes with sample dashboards to showcase how to use both the mac normalization configuration and subnet conversion kit. Both can be safely hidden without impacting functionality; details on hiding an app are described at: http://docs.splunk.com/Documentation/Splunk/latest/AdvancedDev/ShareYourWork#Set_visibility 3 | 4 | Mapping information is obtained from IEEE, found at http://standards.ieee.org/regauth/oui/oui.txt. Additional detail can be found at http://standards.ieee.org/faqs/regauth.html 5 | 6 | This project is hosted on GitHub, see https://github.com/hire-vladimir/SA-NetOps 7 | 8 | # Install 9 | App installation is simple, and only needs to be present on the search head. Documentation around app installation can be found at http://docs.splunk.com/Documentation/AddOns/released/Overview/Singleserverinstall 10 | 11 | # Getting Started 12 | Lookup *mac_vendor_lookup* takes *mac* address an input argument; it performs a case insensitive "starts with" match on the *mac* field to determine vendor information. *mac* field is expected to be normalized per http://docs.splunk.com/Documentation/CIM/latest/User/NetworkTraffic, to help with this effort macro *normalize_mac_address* is provided. 13 | 14 | Lookup *subnet_to_cidr* takes another Lookup *vlan_inventory* as an input argument; it performs an exact match to determine the cidr_notation based on *subnet_mask*. The user should run the search to manually generate the *cidr_network* lookup once they have loaded all of thier subnet information into the vlan_inventory lookup. Once both steps are complated Splunk will automagically begin tagging all src_ip or dest_ip events with the matching environment information. 15 | 16 | ``` 17 | The TCP/IP layer 2 Media Access Control (MAC) address of a packet's source/destination, such as 06:10:9f:eb:8f:14. Note: Always force lower case on this field. Note: Always use colons instead of dashes, spaces, or no separator. 18 | ``` 19 | 20 | ### Populate cidr_network 21 | ``` 22 | | inputlookup vlan_inventory | lookup subnet_to_cidr subnet_mask OUTPUT cidr, binary_mask, host_count, usable_hosts | eval cidr_address= network+cidr | outputlookup cidr_network 23 | ``` 24 | 25 | **Note:** Lookup data is static, as in, it is refreshed every app release. It's possible to setup more frequent data refresh, by running the following: 26 | 27 | `splunk cmd python SA-NetOps/bin/ieee_oui_parser.py > SA-NetOps/lookups/mac_vendor_lookup.csv` 28 | 29 | ## Screenshot 30 | ![mac address to vendor lookup for Splunk ](https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/master/static/screenshot.png) 31 | 32 | ## System requirements 33 | The app was tested on Splunk 6.2+ on CentOS Linux 7.1, SUSE Linux Enterprise Server 11.4/12.3, and Ubuntu 16.04. 34 | 35 | ## Syntax 36 | ```... | `normalize_mac_address(mac)` | lookup mac_vendor_lookup mac OUTPUT mac_vendor, mac_vendor_address, mac_vendor_address2, mac_vendor_country | ...``` 37 | 38 | ### Command 39 | ```| makeresults | eval mac1="11-22-33-44-55-66", mac2="2233.455.6677" | macformat format=ieee inputs="mac1,mac2"``` 40 | 41 | Options for ```format``` are: ```cisco```, ```dash```, ```ieee```, and ```none```. 42 | 43 | The ```inputs``` option is a list of comma-delimited fields in the incoming data. It defaults to ```macadderss``` unless otherwise configured. 44 | 45 | #### Configuration 46 | 47 | ``` 48 | [macformat] 49 | format=none 50 | inputs=macaddress 51 | ``` 52 | 53 | ### Macro 54 | ```| localop | stats count | fields - count | eval src_mac="cc-20-e8-01-ab-3f" | `normalize_mac_address(src_mac)` | lookup mac_vendor_lookup mac AS src_mac OUTPUT mac_vendor, mac_vendor_address, mac_vendor_address2, mac_vendor_country``` 55 | 56 | 57 | # Legal 58 | * *Splunk* is a registered trademark of Splunk, Inc. 59 | -------------------------------------------------------------------------------- /bin/ieee_oui_parser.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | welcomeText = '''# 3 | # hire.vladimir@gmail.com 4 | # 5 | # takes in http://standards.ieee.org/regauth/oui/oui.txt dataset, makes it pretty csv 6 | # 7 | # rev. history 8 | # 9/28/15 1.0 initial write 9 | # 10 | ''' 11 | import time, re 12 | import logging, logging.handlers 13 | from urllib2 import urlopen, Request, HTTPError 14 | import sys 15 | 16 | ####################################### 17 | # SCRIPT CONFIG 18 | ####################################### 19 | # set log level valid options are: (NOTSET will disable logging) 20 | # CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET 21 | LOG_LEVEL = logging.INFO 22 | OUI_DATASET_URL = "http://standards-oui.ieee.org/oui/oui.txt" 23 | 24 | 25 | def setup_logging(): # setup logging 26 | log_format = "%(asctime)s %(levelname)-s\t%(module)s[%(process)d]:%(lineno)d - %(message)s" 27 | logger = logging.getLogger('v') 28 | logger.setLevel(LOG_LEVEL) 29 | 30 | # ..and (optionally) output to console 31 | logH = logging.StreamHandler() 32 | logH.setFormatter(logging.Formatter(fmt=log_format)) 33 | logger.addHandler(logH) 34 | 35 | logger.propagate = False 36 | return logger 37 | 38 | 39 | def die(msg): 40 | logger.error(msg) 41 | exit(msg) 42 | 43 | 44 | def getDataPayload(uri): 45 | logger.debug("Request uri=\"%s\"" % uri) 46 | payload = "" 47 | try: 48 | payload = urlopen(Request(uri)).read() 49 | logger.debug('Received payload="%s"' % payload) 50 | except HTTPError, e: 51 | die('HTTP exception was thrown while making request for uri="%s", status_code=%s, e="%s"' % (uri, e.code, e)) 52 | 53 | logger.info('function="getDataPayload" action="success" request="%s", bytes_in="%s"' % (uri, len(payload))) 54 | return payload 55 | 56 | 57 | if __name__ == '__main__': 58 | logger = setup_logging() 59 | logger.info('starting..') 60 | eStart = time.time() 61 | wspace = re.compile('\\s+') 62 | try: 63 | data = "" 64 | logger.debug("calling args_count=\"%d\" args=\"%s\"" % (len(sys.argv), str(sys.argv))) 65 | if len(sys.argv) > 1: 66 | filename = sys.argv[1] 67 | if filename[0:1] is not "/": 68 | filename = "./%s" % filename 69 | 70 | with open(filename, "r") as oui: 71 | data = oui.read() 72 | else: 73 | data = getDataPayload(OUI_DATASET_URL) 74 | 75 | pattern = "(?P\w{6})\s+\(base\s16\)\s+(?:(?P[^\n]+)\n)(?:\s+(?P[^\n\r]+)\n)?(?:\s+(?P[^\n]+)\n)?(?:\s+(?P\w{2}))?\n" 76 | ma = re.findall(pattern, data.replace("\r", "")) 77 | 78 | logger.debug("there are %d matches" % len(ma)) 79 | 80 | print('mac,mac_vendor,mac_vendor_address,mac_vendor_address2,mac_vendor_country') 81 | ma.sort() 82 | for mac, mac_vendor, mac_vendor_address, mac_vendor_address2, mac_vendor_country in ma: 83 | # per http://docs.splunk.com/Documentation/CIM/latest/User/NetworkTraffic 84 | normalized_mac = "%s:%s:%s" % (mac[0:2], mac[2:4], mac[4:6]) 85 | print('"%s*","%s","%s","%s","%s"' % (normalized_mac.lower(), mac_vendor, 86 | ' '.join(wspace.split(mac_vendor_address)), 87 | ' '.join(wspace.split(mac_vendor_address2)), mac_vendor_country)) 88 | except Exception, e: 89 | logger.error('error while processing events, exception="%s"' % e) 90 | # raise Exception(e) 91 | finally: 92 | logger.info('exiting, execution duration=%s seconds' % (time.time() - eStart)) 93 | -------------------------------------------------------------------------------- /bin/macformat.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ## 3 | ## This program is licensed under the GPL v3.0, which is found at the URL below: 4 | ## http://opensource.org/licenses/gpl-3.0.html 5 | ## 6 | ## Copyright (c) 2012, ww@9Rivers.com. All rights reserved. 7 | 8 | import re, sys 9 | from os import path 10 | from splunk.clilib import cli_common as cli 11 | from splunklib.searchcommands import dispatch, StreamingCommand, Configuration, Option, validators 12 | 13 | 14 | delims = re.compile("[^0-9a-f]") 15 | 16 | 17 | class InvalidMACAddress(Exception): 18 | '''Exception for invalid MAC address. 19 | ''' 20 | def __init__(self, value): 21 | self.value = value 22 | 23 | def __str__(self): 24 | return 'Invalid MAC address: {0}'.format(self.value) 25 | 26 | 27 | def split(mac, seg=2): 28 | '''To handle missing leading 0's in the given MAC address. 29 | ''' 30 | x = _none(mac) 31 | return [ x[i:i+seg] for i in range(0, 12, seg) ] 32 | 33 | def _cisco(mac): 34 | ''' 1122.3344.5566 ''' 35 | return '.'.join(split(mac, 4)) 36 | 37 | def _dash(mac): 38 | ''' 11-22-33-44-55-66 ''' 39 | return '-'.join(split(mac)) 40 | 41 | def _ieee(mac): 42 | ''' 11:22:33:44:55:66 ''' 43 | return ':'.join(split(mac)) 44 | 45 | def _none(mac): 46 | ''' 112233445566 ''' 47 | x = delims.split(mac.strip().lower()) 48 | if len(x) == 6: 49 | return ''.join([('00'+xe)[-2:] for xe in x]) 50 | if len(x) == 3: 51 | return ''.join([('0000'+xe)[-4:] for xe in x ]) 52 | if len(x) == 1: 53 | return ('0'*12+x[0])[-12:] 54 | raise InvalidMACAddress(mac) 55 | 56 | 57 | @Configuration() 58 | class MACFormatCommand(StreamingCommand): 59 | """ Convert a given MAC address field to specified format. 60 | 61 | ##Syntax 62 | 63 | .. code-block:: 64 | | macformat input=field-list output=field-list format=[cisco|dash|ieee|none] 65 | 66 | ## Description 67 | 68 | Convert the fields in the `input` field list to the ones in the `output` list; Both lists are 69 | optional. The `input` list defaults to `macaddress`. The`output` list is filled with fields in 70 | the `input` list it the `output` list is shorter than the `input`. 71 | 72 | The `format` option is one of [cisco|dash|ieee|none]. The default is `none`. 73 | 74 | Raises a ValueError exception if the MAC address is invalid. 75 | """ 76 | format = Option( 77 | doc=''' 78 | **Syntax:** **format=**`[cisco|dash|ieee|none]` 79 | **Description:** Format of the output MAC address. Defaults to `none`.''', 80 | require=False, validate=validators.Set('cisco', 'dash', 'ieee', 'none') 81 | ) 82 | 83 | inputs = Option( 84 | doc=''' 85 | **Syntax:** **inputs=**** 86 | **Description:** A comma-delimited list of input fields to convert. Defaults to `macaddress`.''', 87 | require=False, validate=validators.List() 88 | ) 89 | 90 | outputs = Option( 91 | doc=''' 92 | **Syntax:** **outputs=**** 93 | **Description:** A comma-delimited list of fields for the results. Defaults to `inputs`.''', 94 | require=False, validate=validators.List() 95 | ) 96 | 97 | def prepare(self): 98 | """ Prepare the options. 99 | 100 | :return: :const:`None` 101 | :rtype: NoneType 102 | """ 103 | self.toform = globals()['_'+(self.format or self.def_format)] 104 | inputs = self.inputs 105 | if inputs is None: 106 | self.inputs = inputs = self.def_inputs 107 | outputs = self.outputs 108 | if outputs is None: 109 | outputs = inputs 110 | elif len(outputs) < len(inputs): 111 | outputs += inputs[len(outputs):] 112 | self.outputs = outputs 113 | self.logger.debug('MACFormatCommand.prepare: inputs = %s, outputs = %s', self.inputs, outputs) 114 | 115 | def stream(self, records): 116 | toform = self.toform 117 | inputs = self.inputs 118 | outputs = self.outputs 119 | if outputs is None: 120 | outputs = inputs 121 | elif len(outputs) < len(inputs): 122 | outputs += inputs[len(outputs):] 123 | for record in records: 124 | self.logger.debug('MACFormatCommand: record = %s', record) 125 | for i in range(len(inputs)): 126 | mac = record.get(inputs[i]) 127 | if mac != None: 128 | try: 129 | record[outputs[i]] = toform(mac) 130 | except Exception as err: 131 | record[outputs[i]] = mac 132 | self.logger.error('(input=%s) %s', inputs[i], err.message) 133 | yield record 134 | 135 | def __init__(self): 136 | StreamingCommand.__init__(self) 137 | appdir = path.dirname(path.dirname(__file__)) 138 | defconfpath = path.join(appdir, "default", "app.conf") 139 | defconf = cli.readConfFile(defconfpath).get('macformat') or {} 140 | localconfpath = path.join(appdir, "local", "app.conf") 141 | localconf = (cli.readConfFile(localconfpath).get('macformat') or {}) if path.exists(localconfpath) else {} 142 | self.def_format = localconf.get('format') or defconf.get('format') or 'none' 143 | inputs = localconf.get('inputs') or defconf.get('inputs') 144 | self.def_inputs = re.split('[\s,]', inputs) if inputs else ['macaddress'] 145 | 146 | dispatch(MACFormatCommand, sys.argv, sys.stdin, sys.stdout, __name__) 147 | -------------------------------------------------------------------------------- /default/app.conf: -------------------------------------------------------------------------------- 1 | [install] 2 | is_configured = 1 3 | build = 1.4 4 | 5 | [ui] 6 | is_visible = 1 7 | label = SA-NetOps 8 | 9 | [launcher] 10 | author = hire.vladimir@gmail.com, atellez@splunk.com 11 | description = lookup allows for mapping mac address to vendor, conversion of subnet assets to cidr notation. 12 | version = 1.4.0 13 | 14 | [package] 15 | id = SA-NetOps 16 | check_for_updates = 0 17 | -------------------------------------------------------------------------------- /default/commands.conf: -------------------------------------------------------------------------------- 1 | # macformat command: 2 | # Usage: 3 | # macformat [format={cisco|dash|ieee|none}] [inputs=field-list] [outputs=field-list] 4 | 5 | [macformat] 6 | filename = macformat.py 7 | enableheader = true 8 | outputheader = true 9 | requires_srinfo = true 10 | supports_getinfo = true 11 | supports_multivalues = true 12 | supports_rawargs = true 13 | -------------------------------------------------------------------------------- /default/data/ui/cidr_assets.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |

7 | Introduction 8 |

9 |

10 | This feature is designed to help users identify assets by subnet mask. Most users cannot easily convert subnets to CIDRs withouth some python tool or external scripts. 11 | The application ships with sample lookup files and blank template lookup files for the user to populate. Using a similiar syntax below, the customer can delineate subnets in an automatic lookup to run against all data sources. 12 | An automatic lookup is preferred because it helps to indentify netwrok traffic trends in various logs. For example, infected assets in a DMZ subnet may not be as high of a priority as infected assets in a PCI subnet. 13 |
14 |

15 |

16 | Creating the automatic lookup: 17 |

18 |

This is an example search for creating the sample_cidr_network lookup. You should update the vlan_inventory lookup with your specific network information.

19 | examples: 20 |
21 | sample search: | inputlookup sample_vlan_inventory | lookup subnet_to_cidr subnet_mask OUTPUT cidr, binary_mask, host_count, usable_hosts | eval cidr_address= network+cidr | outputlookup sample_cidr_network
22 | 
23 | production search: | inputlookup vlan_inventory | lookup subnet_to_cidr subnet_mask OUTPUT cidr, binary_mask, host_count, usable_hosts | eval cidr_address= network+cidr  | outputlookup cidr_network
24 | 
25 |
26 |

Once the cidr_network lookup has been created Splunk will create the following fields automagically:

27 |
28 | network
29 | physical_address
30 | priority
31 | remarks
32 | segment
33 | subnet_mask
34 | zone
35 |           
36 | # Other fields you can add:
37 | # lat
38 | # lon
39 | # cidr_address
40 | # usable_hosts
41 | # binary_mask
42 |           
43 | Alternatively, you can override these to prefix them with src_ or dest_ by overriding props.conf in local.
44 |           
45 | LOOKUP-subnet-intelligence_src = cidr_network cidr_address AS src_ip OUTPUT network AS src_network physical_address AS src_physical_address priority AS src_priority remarks AS src_remarks segment AS src_segment subnet_mask AS src_subnet_mask zone AS src_zone
46 | 
47 | LOOKUP-subnet-intelligence_dest = cidr_network cidr_address AS dest_ip OUTPUT network AS dest_network physical_address AS dest_physical_address priority AS dest_priority remarks AS dest_remarks segment AS dest_segment subnet_mask AS dest_subnet_mask zone AS dest_zone
48 | 
49 |       
50 | 51 |
52 | 53 | 54 | Sample Inventory - | inputlookup sample_vlan_inventory 55 | 56 | | inputlookup sample_vlan_inventory 57 | 0 58 | 59 | 60 | 61 | 62 | 63 |
64 |
65 | 66 |
67 | 68 | 69 | 70 | This lookup is used to convert subnet masks to CIDR notation - | lookup subnet_to_cidr 71 | 72 | | inputlookup subnet_to_cidr 73 | 0 74 | 75 | 76 | 77 | 78 | 79 | 80 |
81 |
82 | 83 | 84 | Here is an example of what the transformed vlan inventory should look like: 85 | 86 | | inputlookup sample_cidr_network 87 | 0 88 | 89 | 90 | 91 | 92 | 93 | 94 |
95 |
96 |
97 |
98 | -------------------------------------------------------------------------------- /default/data/ui/nav/default.xml: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /default/data/ui/views/mac_lookup.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | Matches 12 | 13 | | localop | stats count | eval mac="$mac$" | fields - count | lookup mac_vendor_lookup mac 14 | 0 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |
25 |
-------------------------------------------------------------------------------- /default/data/ui/views/overview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Top vendors by country 7 | 8 | | top mac_vendor_country 9 | 0 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | Top vendors 38 | 39 | | top mac_vendor 40 | 0 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | Total entries 73 | 74 | | stats count 75 | 0 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | Data explorer 86 | 87 | | inputlookup mac_vendor_lookup 88 | 0 89 | 90 | 91 | 92 | 93 | 94 |
95 |
96 |
97 |
-------------------------------------------------------------------------------- /default/logging.conf: -------------------------------------------------------------------------------- 1 | [loggers] 2 | keys = root, MACFormatCommand 3 | 4 | [logger_root] 5 | # level = WARNING 6 | level = WARNING 7 | handlers = MACFormatLog 8 | 9 | [logger_MACFormatCommand] 10 | qualname = MACFormatCommand 11 | level = WARNING 12 | handlers = MACFormatLog 13 | propagate = 0 14 | 15 | [handlers] 16 | keys = MACFormatLog 17 | 18 | [handler_MACFormatLog] 19 | # Logs events to $SPLUNK_HOME/var/log/splunk/SA-ldapsearch{.n}.log 20 | args = ('%(SPLUNK_HOME)s/var/log/splunk/SA-NetOps.log', 'a', 20971520, 9, 'utf-8', True) 21 | class = logging.handlers.RotatingFileHandler 22 | formatter = search_command 23 | level = WARNING 24 | 25 | [formatters] 26 | keys = search_command 27 | 28 | [formatter_search_command] 29 | format = %(asctime)s, Level=%(levelname)s, Pid=%(process)s, File=%(filename)s, Line=%(lineno)s, %(message)s 30 | -------------------------------------------------------------------------------- /default/macros.conf: -------------------------------------------------------------------------------- 1 | [normalize_mac_address(1)] 2 | args = mac 3 | definition = eval $mac$=lower(case(match($mac$, "^\w{12}$"), rtrim(replace($mac$, "^(\w{2})", "\1:"), ":"), 1==1, replace($mac$, "\-|\.|\s", ":"))) 4 | -------------------------------------------------------------------------------- /default/props.conf: -------------------------------------------------------------------------------- 1 | #applies to all sourcetypes! 2 | [(?::){0}*] 3 | LOOKUP-subnet-intelligence_src = cidr_network cidr_address AS src_ip OUTPUT network physical_address priority remarks segment subnet_mask zone 4 | LOOKUP-subnet-intelligence_dest = cidr_network cidr_address AS dest_ip OUTPUT network physical_address priority remarks segment subnet_mask zone 5 | 6 | # Use this version to prefix the fields with src_|dest_ 7 | #LOOKUP-subnet-intelligence_src = cidr_network cidr_address AS src_ip OUTPUT network AS src_network physical_address AS src_physical_address priority AS src_priority remarks AS src_remarks segment AS src_segment subnet_mask AS src_subnet_mask zone AS src_zone 8 | #LOOKUP-subnet-intelligence_dest = cidr_network cidr_address AS dest_ip OUTPUT network AS dest_network physical_address AS dest_physical_address priority AS dest_priority remarks AS dest_remarks segment AS dest_segment subnet_mask AS dest_subnet_mask zone AS dest_zone 9 | -------------------------------------------------------------------------------- /default/savedsearches.conf: -------------------------------------------------------------------------------- 1 | [update cidr network lookup] 2 | action.email.useNSSubject = 1 3 | alert.track = 0 4 | cron_schedule = 0 6 * * 1 5 | dispatch.earliest_time = -24h 6 | dispatch.latest_time = now 7 | display.events.fields = ["host","source","sourcetype","x_virus_id","log_level","splunk_server"] 8 | display.general.type = statistics 9 | display.page.search.mode = verbose 10 | display.page.search.tab = statistics 11 | display.visualizations.charting.chart = area 12 | display.visualizations.show = 0 13 | display.visualizations.type = mapping 14 | enableSched = 1 15 | request.ui_dispatch_app = search 16 | request.ui_dispatch_view = search 17 | search = | inputlookup vlan_inventory | lookup subnet_to_cidr subnet_mask OUTPUT cidr, binary_mask, usable_hosts | sort usable_hosts | eval cidr_address=network+cidr | outputlookup cidr_network 18 | 19 | [update cidr network lookup - sample] 20 | action.email.useNSSubject = 1 21 | alert.track = 0 22 | cron_schedule = 0 6 * * 1 23 | dispatch.earliest_time = -24h 24 | dispatch.latest_time = now 25 | display.events.fields = ["host","source","sourcetype","x_virus_id","log_level","splunk_server"] 26 | display.general.type = statistics 27 | display.page.search.mode = verbose 28 | display.page.search.tab = statistics 29 | display.visualizations.charting.chart = area 30 | display.visualizations.show = 0 31 | display.visualizations.type = mapping 32 | enableSched = 1 33 | request.ui_dispatch_app = search 34 | request.ui_dispatch_view = search 35 | search = | inputlookup sample_vlan_inventory | lookup subnet_to_cidr subnet_mask OUTPUT cidr, binary_mask, usable_hosts | sort usable_hosts | eval cidr_address=network+cidr | outputlookup sample_cidr_network 36 | -------------------------------------------------------------------------------- /default/transforms.conf: -------------------------------------------------------------------------------- 1 | [mac_vendor_lookup] 2 | filename = mac_vendor_lookup.csv 3 | min_matches = 1 4 | max_matches = 1 5 | default_match = unknown 6 | case_sensitive_match = f 7 | match_type = WILDCARD(mac) 8 | 9 | [subnet_to_cidr] 10 | filename = subnet_to_cidr.csv 11 | default_match = unknown 12 | case_sensitive_match = f 13 | min_matches = 1 14 | max_matches = 1 15 | match_type = exact 16 | 17 | [cidr_network] 18 | filename = cidr_network.csv 19 | match_type = CIDR(cidr_address) 20 | default_match = unknown 21 | max_matches = 1 22 | min_matches = 1 23 | 24 | [vlan_inventory] 25 | filename = vlan_inventory.csv 26 | case_sensitive_match = f 27 | min_matches = 1 28 | max_matches = 1 29 | match_type = exact 30 | 31 | [sample_cidr_network] 32 | filename = sample_cidr_network.csv 33 | match_type = CIDR(cidr_address) 34 | default_match = unknown 35 | max_matches = 1 36 | min_matches = 1 37 | 38 | [sample_vlan_inventory] 39 | filename = sample_vlan_inventory.csv 40 | case_sensitive_match = f 41 | min_matches = 1 42 | max_matches = 1 43 | match_type = exact 44 | -------------------------------------------------------------------------------- /lookups/cidr_network.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/lookups/cidr_network.csv -------------------------------------------------------------------------------- /lookups/sample_cidr_network.csv: -------------------------------------------------------------------------------- 1 | "binary_mask",cidr,"cidr_address",city,country,lat,lon,network,"physical_address",priority,remarks,segment,"subnet_mask","usable_hosts",zone 2 | "11111111.11111111.11111111.11111111","/32","10.8.33.12/32",Plano,"United States","33.0742362","-96.811603","10.8.33.12","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.255","-1",TX 3 | "11111111.11111111.11111111.11111111","/32","10.8.33.13/32",Plano,"United States","33.0742362","-96.811603","10.8.33.13","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.255","-1",TX 4 | "11111111.11111111.11111111.11111100","/30","10.50.136.192/30","San Francisco","United States","37.7830522","-122.3932187","10.50.136.192","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.252",2,HQ 5 | "11111111.11111111.11111111.11111100","/30","10.51.127.28/30",McLean,"United States","38.9195157","-77.2195776","10.51.127.28","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.252",2,DC 6 | "11111111.11111111.11111111.11111100","/30","10.51.255.4/30",McLean,"United States","38.9195157","-77.2195776","10.51.255.4","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.252",2,DC 7 | "11111111.11111111.11111111.11111100","/30","10.8.62.0/30",Plano,"United States","33.0742362","-96.811603","10.8.62.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.252",2,TX 8 | "11111111.11111111.11111111.11000000","/26","10.52.25.0/26",McLean,"United States","38.9195157","-77.2195776","10.52.25.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.192",62,DC 9 | "11111111.11111111.11111111.11000000","/26","10.9.74.0/26",Plano,"United States","33.0742362","-96.811603","10.9.74.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.192",62,TX 10 | "11111111.11111111.11111111.11000000","/26","10.9.79.0/26",Plano,"United States","33.0742362","-96.811603","10.9.79.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.192",62,TX 11 | "11111111.11111111.11111111.10000000","/25","10.51.225.0/25",McLean,"United States","38.9195157","-77.2195776","10.51.225.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.128",126,DC 12 | "11111111.11111111.11111111.10000000","/25","10.9.225.0/25",Plano,"United States","33.0742362","-96.811603","10.9.225.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.128",126,TX 13 | "11111111.11111111.11111111.00000000","/24","10.1.1.0/24","San Francisco","United States","33.0742362","-96.811603","10.1.1.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 14 | "11111111.11111111.11111111.00000000","/24","10.1.2.0/24","San Francisco","United States","33.0742362","-96.811603","10.1.2.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 15 | "11111111.11111111.11111111.00000000","/24","10.24.110.0/24","San Francisco","United States","33.0742362","-96.811603","10.24.110.0","5360 Legacy Place",Critical,,"mgmt interfaces for switches","255.255.255.0",254,TX 16 | "11111111.11111111.11111111.00000000","/24","10.50.10.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.10.0","250 Brannan",High,,"SSL VPN","255.255.255.0",254,HQ 17 | "11111111.11111111.11111111.00000000","/24","10.50.11.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.11.0","250 Brannan",High,,"SSL VPN","255.255.255.0",254,HQ 18 | "11111111.11111111.11111111.00000000","/24","10.50.126.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.126.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 19 | "11111111.11111111.11111111.00000000","/24","10.50.127.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.127.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 20 | "11111111.11111111.11111111.00000000","/24","10.50.128.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.128.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 21 | "11111111.11111111.11111111.00000000","/24","10.50.129.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.129.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 22 | "11111111.11111111.11111111.00000000","/24","10.50.130.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.130.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 23 | "11111111.11111111.11111111.00000000","/24","10.50.131.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.131.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 24 | "11111111.11111111.11111111.00000000","/24","10.50.132.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.132.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 25 | "11111111.11111111.11111111.00000000","/24","10.50.133.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.133.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 26 | "11111111.11111111.11111111.00000000","/24","10.50.18.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.18.0","250 Brannan",Low,,DMZ,"255.255.255.0",254,HQ 27 | "11111111.11111111.11111111.00000000","/24","10.50.19.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.19.0","250 Brannan",Low,,DMZ,"255.255.255.0",254,HQ 28 | "11111111.11111111.11111111.00000000","/24","10.50.24.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.24.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 29 | "11111111.11111111.11111111.00000000","/24","10.50.25.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.25.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 30 | "11111111.11111111.11111111.00000000","/24","10.50.48.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.48.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 31 | "11111111.11111111.11111111.00000000","/24","10.50.49.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.49.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 32 | "11111111.11111111.11111111.00000000","/24","10.50.54.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.54.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 33 | "11111111.11111111.11111111.00000000","/24","10.50.55.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.55.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 34 | "11111111.11111111.11111111.00000000","/24","10.50.60.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.60.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 35 | "11111111.11111111.11111111.00000000","/24","10.50.61.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.61.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 36 | "11111111.11111111.11111111.00000000","/24","10.50.72.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.72.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 37 | "11111111.11111111.11111111.00000000","/24","10.50.73.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.73.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 38 | "11111111.11111111.11111111.00000000","/24","10.50.74.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.74.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 39 | "11111111.11111111.11111111.00000000","/24","10.50.75.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.75.0","250 Brannan",Medium,,"HQ Server Farms","255.255.255.0",254,HQ 40 | "11111111.11111111.11111111.00000000","/24","10.50.76.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.76.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 41 | "11111111.11111111.11111111.00000000","/24","10.50.78.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.78.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 42 | "11111111.11111111.11111111.00000000","/24","10.50.79.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.79.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 43 | "11111111.11111111.11111111.00000000","/24","10.50.90.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.90.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 44 | "11111111.11111111.11111111.00000000","/24","10.50.91.0/24","San Francisco","United States","37.7830522","-122.3932187","10.50.91.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 45 | "11111111.11111111.11111111.00000000","/24","10.50.96.0/24",McLean,"United States","37.7830522","-122.3932187","10.50.96.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 46 | "11111111.11111111.11111111.00000000","/24","10.50.97.0/24",McLean,"United States","37.7830522","-122.3932187","10.50.97.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 47 | "11111111.11111111.11111111.00000000","/24","10.50.99.0/24",McLean,"United States","37.7830522","-122.3932187","10.50.99.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.255.0",254,HQ 48 | "11111111.11111111.11111111.00000000","/24","10.51.54.0/24",McLean,"United States","38.9195157","-77.2195776","10.51.54.0","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 49 | "11111111.11111111.11111111.00000000","/24","10.51.98.53/24",McLean,"United States","38.9195157","-77.2195776","10.51.98.53","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 50 | "11111111.11111111.11111111.00000000","/24","10.52.1.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.1.0","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 51 | "11111111.11111111.11111111.00000000","/24","10.52.1.103/24",McLean,"United States","38.9195157","-77.2195776","10.52.1.103","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 52 | "11111111.11111111.11111111.00000000","/24","10.52.1.94/24",McLean,"United States","38.9195157","-77.2195776","10.52.1.94","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 53 | "11111111.11111111.11111111.00000000","/24","10.52.11.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.11.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 54 | "11111111.11111111.11111111.00000000","/24","10.52.14.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.14.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 55 | "11111111.11111111.11111111.00000000","/24","10.52.16.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.16.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 56 | "11111111.11111111.11111111.00000000","/24","10.52.17.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.17.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 57 | "11111111.11111111.11111111.00000000","/24","10.52.18.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.18.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 58 | "11111111.11111111.11111111.00000000","/24","10.52.2.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.2.0","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 59 | "11111111.11111111.11111111.00000000","/24","10.52.20.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.20.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 60 | "11111111.11111111.11111111.00000000","/24","10.52.24.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.24.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 61 | "11111111.11111111.11111111.00000000","/24","10.52.27.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.27.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 62 | "11111111.11111111.11111111.00000000","/24","10.52.3.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.3.0","7900 Tysons One Place",Medium,,"DC Server Farms","255.255.255.0",254,DC 63 | "11111111.11111111.11111111.00000000","/24","10.52.4.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.4.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 64 | "11111111.11111111.11111111.00000000","/24","10.52.50.0/24",McLean,"United States","38.9195157","-77.2195776","10.52.50.0","7900 Tysons One Place",Critical,,"mgmt interfaces for switches","255.255.255.0",254,DC 65 | "11111111.11111111.11111111.00000000","/24","10.52.7.0/24",Plano,"United States","38.9195157","-77.2195776","10.52.7.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 66 | "11111111.11111111.11111111.00000000","/24","10.52.8.0/24",Plano,"United States","38.9195157","-77.2195776","10.52.8.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 67 | "11111111.11111111.11111111.00000000","/24","10.52.9.0/24",Plano,"United States","38.9195157","-77.2195776","10.52.9.0","7900 Tysons One Place",Medium,,"DC BACKBONE","255.255.255.0",254,DC 68 | "11111111.11111111.11111111.00000000","/24","10.8.33.0/24",Plano,"United States","33.0742362","-96.811603","10.8.33.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 69 | "11111111.11111111.11111111.00000000","/24","10.8.34.0/24",Plano,"United States","33.0742362","-96.811603","10.8.34.0","5360 Legacy Place",High,,"SSL VPN","255.255.255.0",254,TX 70 | "11111111.11111111.11111111.00000000","/24","10.8.37.0/24",Plano,"United States","33.0742362","-96.811603","10.8.37.0","5360 Legacy Place",High,,"SSL VPN","255.255.255.0",254,TX 71 | "11111111.11111111.11111111.00000000","/24","10.8.45.0/24",Plano,"United States","33.0742362","-96.811603","10.8.45.0","5360 Legacy Place",High,,"SSL VPN","255.255.255.0",254,TX 72 | "11111111.11111111.11111111.00000000","/24","10.8.52.0/24",Plano,"United States","33.0742362","-96.811603","10.8.52.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 73 | "11111111.11111111.11111111.00000000","/24","10.8.56.0/24",Plano,"United States","33.0742362","-96.811603","10.8.56.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 74 | "11111111.11111111.11111111.00000000","/24","10.8.57.0/24",Plano,"United States","33.0742362","-96.811603","10.8.57.0","5360 Legacy Place",High,,"SSL VPN","255.255.255.0",254,TX 75 | "11111111.11111111.11111111.00000000","/24","10.8.58.0/24",Plano,"United States","33.0742362","-96.811603","10.8.58.0","5360 Legacy Place",Low,,DMZ,"255.255.255.0",254,TX 76 | "11111111.11111111.11111111.00000000","/24","10.8.59.0/24",Plano,"United States","33.0742362","-96.811603","10.8.59.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 77 | "11111111.11111111.11111111.00000000","/24","10.8.8.0/24",Plano,"United States","33.0742362","-96.811603","10.8.8.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 78 | "11111111.11111111.11111111.00000000","/24","10.8.85.0/24",Plano,"United States","33.0742362","-96.811603","10.8.85.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 79 | "11111111.11111111.11111111.00000000","/24","10.8.86.0/24",Plano,"United States","33.0742362","-96.811603","10.8.86.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 80 | "11111111.11111111.11111111.00000000","/24","10.9.106.0/24",Plano,"United States","33.0742362","-96.811603","10.9.106.0","5360 Legacy Place",Critical,,"Security Vlan","255.255.255.0",254,TX 81 | "11111111.11111111.11111111.00000000","/24","10.9.110.0/24",Plano,"United States","33.0742362","-96.811603","10.9.110.0","5360 Legacy Place",Critical,,"Security Vlan","255.255.255.0",254,TX 82 | "11111111.11111111.11111111.00000000","/24","10.9.12.0/24",Plano,"United States","33.0742362","-96.811603","10.9.12.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 83 | "11111111.11111111.11111111.00000000","/24","10.9.173.0/24",Plano,"United States","33.0742362","-96.811603","10.9.173.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 84 | "11111111.11111111.11111111.00000000","/24","10.9.176.0/24",Plano,"United States","33.0742362","-96.811603","10.9.176.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 85 | "11111111.11111111.11111111.00000000","/24","10.9.177.0/24",Plano,"United States","33.0742362","-96.811603","10.9.177.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 86 | "11111111.11111111.11111111.00000000","/24","10.9.18.0/24",Plano,"United States","33.0742362","-96.811603","10.9.18.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 87 | "11111111.11111111.11111111.00000000","/24","10.9.19.0/24",Plano,"United States","33.0742362","-96.811603","10.9.19.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 88 | "11111111.11111111.11111111.00000000","/24","10.9.207.0/24",Plano,"United States","33.0742362","-96.811603","10.9.207.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 89 | "11111111.11111111.11111111.00000000","/24","10.9.23.0/24",Plano,"United States","33.0742362","-96.811603","10.9.23.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 90 | "11111111.11111111.11111111.00000000","/24","10.9.23.0/24",Plano,"United States","33.0742362","-96.811603","10.9.23.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 91 | "11111111.11111111.11111111.00000000","/24","10.9.24.0/24",Plano,"United States","33.0742362","-96.811603","10.9.24.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 92 | "11111111.11111111.11111111.00000000","/24","10.9.36.0/24",Plano,"United States","33.0742362","-96.811603","10.9.36.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 93 | "11111111.11111111.11111111.00000000","/24","10.9.72.0/24",Plano,"United States","33.0742362","-96.811603","10.9.72.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 94 | "11111111.11111111.11111111.00000000","/24","10.9.73.0/24",Plano,"United States","33.0742362","-96.811603","10.9.73.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 95 | "11111111.11111111.11111111.00000000","/24","10.9.75.0/24",Plano,"United States","33.0742362","-96.811603","10.9.75.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 96 | "11111111.11111111.11111111.00000000","/24","10.9.76.0/24",Plano,"United States","33.0742362","-96.811603","10.9.76.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 97 | "11111111.11111111.11111111.00000000","/24","10.9.77.0/24",Plano,"United States","33.0742362","-96.811603","10.9.77.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 98 | "11111111.11111111.11111111.00000000","/24","10.9.78.0/24",Plano,"United States","33.0742362","-96.811603","10.9.78.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 99 | "11111111.11111111.11111111.00000000","/24","10.9.80.0/24",Plano,"United States","33.0742362","-96.811603","10.9.80.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 100 | "11111111.11111111.11111111.00000000","/24","10.9.81.0/24",Plano,"United States","33.0742362","-96.811603","10.9.81.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 101 | "11111111.11111111.11111111.00000000","/24","10.9.82.0/24",Plano,"United States","33.0742362","-96.811603","10.9.82.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 102 | "11111111.11111111.11111111.00000000","/24","10.9.83.0/24",Plano,"United States","33.0742362","-96.811603","10.9.83.0","5360 Legacy Place",Medium,,"TX BACKBONE","255.255.255.0",254,TX 103 | "11111111.11111111.11111111.00000000","/24","10.9.91.0/24",Plano,"United States","33.0742362","-96.811603","10.9.91.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 104 | "11111111.11111111.11111111.00000000","/24","10.9.95.0/24",Plano,"United States","33.0742362","-96.811603","10.9.95.0","5360 Legacy Place",Medium,,"TX Server Farms","255.255.255.0",254,TX 105 | "11111111.11111111.11111111.00000000","/24","172.21.0.0/24",Seattle,"United States","39.9086276","116.4155","172.21.0.0","1 East Chang An Avenue",Low,,DMZ,"255.255.255.0",254,CN 106 | "11111111.11111111.11111111.00000000","/24","172.21.1.0/24",Seattle,"United States","39.9086276","116.4155","172.21.1.0","1 East Chang An Avenue",Low,,DMZ,"255.255.255.0",254,CN 107 | "11111111.11111111.11111111.00000000","/24","172.21.10.0/24",Seattle,"United States","39.9086276","116.4155","172.21.10.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 108 | "11111111.11111111.11111111.00000000","/24","172.21.100.0/24",Seattle,"United States","51.5196482","-0.1828441","172.21.100.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 109 | "11111111.11111111.11111111.00000000","/24","172.21.101.0/24",Seattle,"United States","51.5196482","-0.1828441","172.21.101.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 110 | "11111111.11111111.11111111.00000000","/24","172.21.102.0/24",Seattle,"United States","51.5196482","-0.1828441","172.21.102.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 111 | "11111111.11111111.11111111.00000000","/24","172.21.103.0/24",Seattle,"United States","51.5196482","-0.1828441","172.21.103.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 112 | "11111111.11111111.11111111.00000000","/24","172.21.104.0/24",Seattle,"United States","51.5196482","-0.1828441","172.21.104.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 113 | "11111111.11111111.11111111.00000000","/24","172.21.105.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.105.0","3 Sheldon Square",High,,Firewalls,"255.255.255.0",254,UK 114 | "11111111.11111111.11111111.00000000","/24","172.21.106.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.106.0","3 Sheldon Square",High,,Firewalls,"255.255.255.0",254,UK 115 | "11111111.11111111.11111111.00000000","/24","172.21.107.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.107.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 116 | "11111111.11111111.11111111.00000000","/24","172.21.108.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.108.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 117 | "11111111.11111111.11111111.00000000","/24","172.21.109.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.109.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 118 | "11111111.11111111.11111111.00000000","/24","172.21.11.0/24",Beijing,China,"39.9086276","116.4155","172.21.11.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 119 | "11111111.11111111.11111111.00000000","/24","172.21.110.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.110.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 120 | "11111111.11111111.11111111.00000000","/24","172.21.111.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.111.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 121 | "11111111.11111111.11111111.00000000","/24","172.21.112.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.112.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 122 | "11111111.11111111.11111111.00000000","/24","172.21.113.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.113.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 123 | "11111111.11111111.11111111.00000000","/24","172.21.114.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.114.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 124 | "11111111.11111111.11111111.00000000","/24","172.21.115.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.115.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 125 | "11111111.11111111.11111111.00000000","/24","172.21.116.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.116.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 126 | "11111111.11111111.11111111.00000000","/24","172.21.117.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.117.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 127 | "11111111.11111111.11111111.00000000","/24","172.21.118.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.118.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 128 | "11111111.11111111.11111111.00000000","/24","172.21.119.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.119.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 129 | "11111111.11111111.11111111.00000000","/24","172.21.12.0/24",Beijing,China,"39.9086276","116.4155","172.21.12.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 130 | "11111111.11111111.11111111.00000000","/24","172.21.120.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.120.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 131 | "11111111.11111111.11111111.00000000","/24","172.21.121.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.121.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 132 | "11111111.11111111.11111111.00000000","/24","172.21.122.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.122.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 133 | "11111111.11111111.11111111.00000000","/24","172.21.123.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.123.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 134 | "11111111.11111111.11111111.00000000","/24","172.21.124.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.124.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 135 | "11111111.11111111.11111111.00000000","/24","172.21.125.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.125.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 136 | "11111111.11111111.11111111.00000000","/24","172.21.126.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.126.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 137 | "11111111.11111111.11111111.00000000","/24","172.21.127.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.127.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 138 | "11111111.11111111.11111111.00000000","/24","172.21.128.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.128.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 139 | "11111111.11111111.11111111.00000000","/24","172.21.129.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.129.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 140 | "11111111.11111111.11111111.00000000","/24","172.21.13.0/24",Beijing,China,"39.9086276","116.4155","172.21.13.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 141 | "11111111.11111111.11111111.00000000","/24","172.21.130.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.130.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 142 | "11111111.11111111.11111111.00000000","/24","172.21.131.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.131.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 143 | "11111111.11111111.11111111.00000000","/24","172.21.132.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.132.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 144 | "11111111.11111111.11111111.00000000","/24","172.21.133.0/24",Beijing,China,"51.5196482","-0.1828441","172.21.133.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 145 | "11111111.11111111.11111111.00000000","/24","172.21.134.0/24",Paris,France,"51.5196482","-0.1828441","172.21.134.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 146 | "11111111.11111111.11111111.00000000","/24","172.21.135.0/24",Paris,France,"51.5196482","-0.1828441","172.21.135.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 147 | "11111111.11111111.11111111.00000000","/24","172.21.136.0/24",Paris,France,"51.5196482","-0.1828441","172.21.136.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 148 | "11111111.11111111.11111111.00000000","/24","172.21.137.0/24",Paris,France,"51.5196482","-0.1828441","172.21.137.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 149 | "11111111.11111111.11111111.00000000","/24","172.21.138.0/24",Paris,France,"51.5196482","-0.1828441","172.21.138.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 150 | "11111111.11111111.11111111.00000000","/24","172.21.139.0/24",Paris,France,"51.5196482","-0.1828441","172.21.139.0","3 Sheldon Square",Medium,,"UK Server Farm","255.255.255.0",254,UK 151 | "11111111.11111111.11111111.00000000","/24","172.21.14.0/24",Paris,France,"39.9086276","116.4155","172.21.14.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 152 | "11111111.11111111.11111111.00000000","/24","172.21.140.0/24",Paris,France,"51.5196482","-0.1828441","172.21.140.0","3 Sheldon Square",Low,,DMZ,"255.255.255.0",254,UK 153 | "11111111.11111111.11111111.00000000","/24","172.21.141.0/24",Paris,France,"51.5196482","-0.1828441","172.21.141.0","3 Sheldon Square",Low,,DMZ,"255.255.255.0",254,UK 154 | "11111111.11111111.11111111.00000000","/24","172.21.142.0/24",Paris,France,"51.5196482","-0.1828441","172.21.142.0","3 Sheldon Square",High,,"SSL VPN","255.255.255.0",254,UK 155 | "11111111.11111111.11111111.00000000","/24","172.21.143.0/24",Paris,France,"51.5196482","-0.1828441","172.21.143.0","3 Sheldon Square",High,,"SSL VPN","255.255.255.0",254,UK 156 | "11111111.11111111.11111111.00000000","/24","172.21.144.0/24",Paris,France,"51.5196482","-0.1828441","172.21.144.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 157 | "11111111.11111111.11111111.00000000","/24","172.21.145.0/24",Paris,France,"51.5196482","-0.1828441","172.21.145.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 158 | "11111111.11111111.11111111.00000000","/24","172.21.146.0/24",Paris,France,"51.5196482","-0.1828441","172.21.146.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 159 | "11111111.11111111.11111111.00000000","/24","172.21.147.0/24",Paris,France,"51.5196482","-0.1828441","172.21.147.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 160 | "11111111.11111111.11111111.00000000","/24","172.21.148.0/24",Paris,France,"51.5196482","-0.1828441","172.21.148.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 161 | "11111111.11111111.11111111.00000000","/24","172.21.149.0/24",Paris,France,"51.5196482","-0.1828441","172.21.149.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 162 | "11111111.11111111.11111111.00000000","/24","172.21.15.0/24",Paris,France,"39.9086276","116.4155","172.21.15.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 163 | "11111111.11111111.11111111.00000000","/24","172.21.150.0/24",Paris,France,"51.5196482","-0.1828441","172.21.150.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 164 | "11111111.11111111.11111111.00000000","/24","172.21.151.0/24",Paris,France,"51.5196482","-0.1828441","172.21.151.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 165 | "11111111.11111111.11111111.00000000","/24","172.21.152.0/24",Paris,France,"51.5196482","-0.1828441","172.21.152.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 166 | "11111111.11111111.11111111.00000000","/24","172.21.153.0/24",Paris,France,"51.5196482","-0.1828441","172.21.153.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 167 | "11111111.11111111.11111111.00000000","/24","172.21.154.0/24",Paris,France,"51.5196482","-0.1828441","172.21.154.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 168 | "11111111.11111111.11111111.00000000","/24","172.21.155.0/24",Paris,France,"51.5196482","-0.1828441","172.21.155.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 169 | "11111111.11111111.11111111.00000000","/24","172.21.156.0/24",Paris,France,"51.5196482","-0.1828441","172.21.156.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 170 | "11111111.11111111.11111111.00000000","/24","172.21.157.0/24",Paris,France,"51.5196482","-0.1828441","172.21.157.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 171 | "11111111.11111111.11111111.00000000","/24","172.21.158.0/24",Paris,France,"51.5196482","-0.1828441","172.21.158.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 172 | "11111111.11111111.11111111.00000000","/24","172.21.159.0/24",Paris,France,"51.5196482","-0.1828441","172.21.159.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 173 | "11111111.11111111.11111111.00000000","/24","172.21.16.0/24",Paris,France,"39.9086276","116.4155","172.21.16.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 174 | "11111111.11111111.11111111.00000000","/24","172.21.160.0/24",Paris,France,"51.5196482","-0.1828441","172.21.160.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 175 | "11111111.11111111.11111111.00000000","/24","172.21.161.0/24",Paris,France,"51.5196482","-0.1828441","172.21.161.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 176 | "11111111.11111111.11111111.00000000","/24","172.21.162.0/24",Paris,France,"51.5196482","-0.1828441","172.21.162.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 177 | "11111111.11111111.11111111.00000000","/24","172.21.163.0/24",Paris,France,"51.5196482","-0.1828441","172.21.163.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 178 | "11111111.11111111.11111111.00000000","/24","172.21.164.0/24",Paris,France,"51.5196482","-0.1828441","172.21.164.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 179 | "11111111.11111111.11111111.00000000","/24","172.21.165.0/24",Paris,France,"51.5196482","-0.1828441","172.21.165.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 180 | "11111111.11111111.11111111.00000000","/24","172.21.166.0/24",Paris,France,"51.5196482","-0.1828441","172.21.166.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 181 | "11111111.11111111.11111111.00000000","/24","172.21.167.0/24",Paris,France,"51.5196482","-0.1828441","172.21.167.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 182 | "11111111.11111111.11111111.00000000","/24","172.21.168.0/24",Paris,France,"51.5196482","-0.1828441","172.21.168.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 183 | "11111111.11111111.11111111.00000000","/24","172.21.169.0/24",Paris,France,"51.5196482","-0.1828441","172.21.169.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 184 | "11111111.11111111.11111111.00000000","/24","172.21.17.0/24",Paris,France,"39.9086276","116.4155","172.21.17.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 185 | "11111111.11111111.11111111.00000000","/24","172.21.170.0/24",Paris,France,"51.5196482","-0.1828441","172.21.170.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 186 | "11111111.11111111.11111111.00000000","/24","172.21.171.0/24",Paris,France,"51.5196482","-0.1828441","172.21.171.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 187 | "11111111.11111111.11111111.00000000","/24","172.21.172.0/24",Paris,France,"51.5196482","-0.1828441","172.21.172.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 188 | "11111111.11111111.11111111.00000000","/24","172.21.173.0/24",Paris,France,"51.5196482","-0.1828441","172.21.173.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 189 | "11111111.11111111.11111111.00000000","/24","172.21.174.0/24",Paris,France,"51.5196482","-0.1828441","172.21.174.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 190 | "11111111.11111111.11111111.00000000","/24","172.21.175.0/24",Paris,France,"51.5196482","-0.1828441","172.21.175.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 191 | "11111111.11111111.11111111.00000000","/24","172.21.176.0/24",Paris,France,"51.5196482","-0.1828441","172.21.176.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 192 | "11111111.11111111.11111111.00000000","/24","172.21.177.0/24",Paris,France,"51.5196482","-0.1828441","172.21.177.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 193 | "11111111.11111111.11111111.00000000","/24","172.21.178.0/24",Paris,France,"51.5196482","-0.1828441","172.21.178.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 194 | "11111111.11111111.11111111.00000000","/24","172.21.179.0/24",Paris,France,"51.5196482","-0.1828441","172.21.179.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 195 | "11111111.11111111.11111111.00000000","/24","172.21.18.0/24",Paris,France,"39.9086276","116.4155","172.21.18.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 196 | "11111111.11111111.11111111.00000000","/24","172.21.180.0/24",Paris,France,"51.5196482","-0.1828441","172.21.180.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 197 | "11111111.11111111.11111111.00000000","/24","172.21.181.0/24",Paris,France,"51.5196482","-0.1828441","172.21.181.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 198 | "11111111.11111111.11111111.00000000","/24","172.21.182.0/24",Paris,France,"51.5196482","-0.1828441","172.21.182.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 199 | "11111111.11111111.11111111.00000000","/24","172.21.183.0/24",Paris,France,"51.5196482","-0.1828441","172.21.183.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 200 | "11111111.11111111.11111111.00000000","/24","172.21.184.0/24",Paris,France,"51.5196482","-0.1828441","172.21.184.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 201 | "11111111.11111111.11111111.00000000","/24","172.21.185.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.185.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 202 | "11111111.11111111.11111111.00000000","/24","172.21.186.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.186.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 203 | "11111111.11111111.11111111.00000000","/24","172.21.187.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.187.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 204 | "11111111.11111111.11111111.00000000","/24","172.21.188.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.188.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 205 | "11111111.11111111.11111111.00000000","/24","172.21.189.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.189.0","3 Sheldon Square",Medium,,"UK BACKBONE","255.255.255.0",254,UK 206 | "11111111.11111111.11111111.00000000","/24","172.21.19.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.19.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 207 | "11111111.11111111.11111111.00000000","/24","172.21.190.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.190.0","3 Sheldon Square",Critical,,"mgmt interfaces for switches","255.255.255.0",254,UK 208 | "11111111.11111111.11111111.00000000","/24","172.21.191.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.191.0","3 Sheldon Square",Critical,,"mgmt interfaces for switches","255.255.255.0",254,UK 209 | "11111111.11111111.11111111.00000000","/24","172.21.192.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.192.0","3 Sheldon Square",Critical,,"Security Vlan","255.255.255.0",254,UK 210 | "11111111.11111111.11111111.00000000","/24","172.21.193.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.193.0","3 Sheldon Square",Critical,,"Security Vlan","255.255.255.0",254,UK 211 | "11111111.11111111.11111111.00000000","/24","172.21.2.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.2.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 212 | "11111111.11111111.11111111.00000000","/24","172.21.20.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.20.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 213 | "11111111.11111111.11111111.00000000","/24","172.21.21.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.21.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 214 | "11111111.11111111.11111111.00000000","/24","172.21.22.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.22.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 215 | "11111111.11111111.11111111.00000000","/24","172.21.23.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.23.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 216 | "11111111.11111111.11111111.00000000","/24","172.21.24.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.24.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 217 | "11111111.11111111.11111111.00000000","/24","172.21.25.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.25.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 218 | "11111111.11111111.11111111.00000000","/24","172.21.26.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.26.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 219 | "11111111.11111111.11111111.00000000","/24","172.21.27.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.27.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 220 | "11111111.11111111.11111111.00000000","/24","172.21.28.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.28.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 221 | "11111111.11111111.11111111.00000000","/24","172.21.29.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.29.0","1 East Chang An Avenue",Critical,,"mgmt interfaces for switches","255.255.255.0",254,CN 222 | "11111111.11111111.11111111.00000000","/24","172.21.3.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.3.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 223 | "11111111.11111111.11111111.00000000","/24","172.21.30.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.30.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 224 | "11111111.11111111.11111111.00000000","/24","172.21.31.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.31.0","1 East Chang An Avenue",Medium,,"CN Server Farms","255.255.255.0",254,CN 225 | "11111111.11111111.11111111.00000000","/24","172.21.32.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.32.0","15 rue Taitbout",Low,,DMZ,"255.255.255.0",254,FR 226 | "11111111.11111111.11111111.00000000","/24","172.21.33.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.33.0","15 rue Taitbout",Low,,DMZ,"255.255.255.0",254,FR 227 | "11111111.11111111.11111111.00000000","/24","172.21.34.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.34.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 228 | "11111111.11111111.11111111.00000000","/24","172.21.35.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.35.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 229 | "11111111.11111111.11111111.00000000","/24","172.21.36.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.36.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 230 | "11111111.11111111.11111111.00000000","/24","172.21.37.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.37.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 231 | "11111111.11111111.11111111.00000000","/24","172.21.38.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.38.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 232 | "11111111.11111111.11111111.00000000","/24","172.21.39.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.39.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 233 | "11111111.11111111.11111111.00000000","/24","172.21.4.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.4.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 234 | "11111111.11111111.11111111.00000000","/24","172.21.40.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.40.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 235 | "11111111.11111111.11111111.00000000","/24","172.21.41.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.41.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 236 | "11111111.11111111.11111111.00000000","/24","172.21.42.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.42.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 237 | "11111111.11111111.11111111.00000000","/24","172.21.43.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.43.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 238 | "11111111.11111111.11111111.00000000","/24","172.21.44.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.44.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 239 | "11111111.11111111.11111111.00000000","/24","172.21.45.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.45.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 240 | "11111111.11111111.11111111.00000000","/24","172.21.46.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.46.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 241 | "11111111.11111111.11111111.00000000","/24","172.21.47.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.47.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 242 | "11111111.11111111.11111111.00000000","/24","172.21.48.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.48.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 243 | "11111111.11111111.11111111.00000000","/24","172.21.49.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.49.0","15 rue Taitbout",Medium,,"FR BACKBONE","255.255.255.0",254,FR 244 | "11111111.11111111.11111111.00000000","/24","172.21.5.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.5.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 245 | "11111111.11111111.11111111.00000000","/24","172.21.50.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.50.0","15 rue Taitbout",High,,"SSL VPN","255.255.255.0",254,FR 246 | "11111111.11111111.11111111.00000000","/24","172.21.51.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.51.0","15 rue Taitbout",High,,"SSL VPN","255.255.255.0",254,FR 247 | "11111111.11111111.11111111.00000000","/24","172.21.52.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.52.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 248 | "11111111.11111111.11111111.00000000","/24","172.21.53.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.53.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 249 | "11111111.11111111.11111111.00000000","/24","172.21.54.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.54.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 250 | "11111111.11111111.11111111.00000000","/24","172.21.55.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.55.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 251 | "11111111.11111111.11111111.00000000","/24","172.21.56.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.56.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 252 | "11111111.11111111.11111111.00000000","/24","172.21.57.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.57.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 253 | "11111111.11111111.11111111.00000000","/24","172.21.58.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.58.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 254 | "11111111.11111111.11111111.00000000","/24","172.21.59.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.59.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 255 | "11111111.11111111.11111111.00000000","/24","172.21.6.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.6.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 256 | "11111111.11111111.11111111.00000000","/24","172.21.60.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.60.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 257 | "11111111.11111111.11111111.00000000","/24","172.21.61.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.61.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 258 | "11111111.11111111.11111111.00000000","/24","172.21.62.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.62.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 259 | "11111111.11111111.11111111.00000000","/24","172.21.63.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.63.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 260 | "11111111.11111111.11111111.00000000","/24","172.21.64.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.64.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 261 | "11111111.11111111.11111111.00000000","/24","172.21.65.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.65.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 262 | "11111111.11111111.11111111.00000000","/24","172.21.66.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.66.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 263 | "11111111.11111111.11111111.00000000","/24","172.21.67.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.67.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 264 | "11111111.11111111.11111111.00000000","/24","172.21.68.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.68.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 265 | "11111111.11111111.11111111.00000000","/24","172.21.69.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.69.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 266 | "11111111.11111111.11111111.00000000","/24","172.21.7.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.7.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 267 | "11111111.11111111.11111111.00000000","/24","172.21.70.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.70.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 268 | "11111111.11111111.11111111.00000000","/24","172.21.71.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.71.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 269 | "11111111.11111111.11111111.00000000","/24","172.21.72.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.72.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 270 | "11111111.11111111.11111111.00000000","/24","172.21.73.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.73.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 271 | "11111111.11111111.11111111.00000000","/24","172.21.74.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.74.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 272 | "11111111.11111111.11111111.00000000","/24","172.21.75.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.75.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 273 | "11111111.11111111.11111111.00000000","/24","172.21.76.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.76.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 274 | "11111111.11111111.11111111.00000000","/24","172.21.77.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.77.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 275 | "11111111.11111111.11111111.00000000","/24","172.21.78.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.78.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 276 | "11111111.11111111.11111111.00000000","/24","172.21.79.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.79.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 277 | "11111111.11111111.11111111.00000000","/24","172.21.8.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.8.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 278 | "11111111.11111111.11111111.00000000","/24","172.21.80.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.80.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 279 | "11111111.11111111.11111111.00000000","/24","172.21.81.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.81.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 280 | "11111111.11111111.11111111.00000000","/24","172.21.82.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.82.0","15 rue Taitbout",Critical,,"mgmt interfaces for switches","255.255.255.0",254,FR 281 | "11111111.11111111.11111111.00000000","/24","172.21.83.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.83.0","15 rue Taitbout",Critical,,"mgmt interfaces for switches","255.255.255.0",254,FR 282 | "11111111.11111111.11111111.00000000","/24","172.21.84.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.84.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 283 | "11111111.11111111.11111111.00000000","/24","172.21.85.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.85.0","15 rue Taitbout",Medium,,"FR Server Farms","255.255.255.0",254,FR 284 | "11111111.11111111.11111111.00000000","/24","172.21.86.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.86.0","15 rue Taitbout",Critical,,"Security Vlan","255.255.255.0",254,FR 285 | "11111111.11111111.11111111.00000000","/24","172.21.87.0/24",London,"United Kingdom","48.8722691","2.3335079","172.21.87.0","15 rue Taitbout",Critical,,"Security Vlan","255.255.255.0",254,FR 286 | "11111111.11111111.11111111.00000000","/24","172.21.88.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.88.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 287 | "11111111.11111111.11111111.00000000","/24","172.21.89.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.89.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 288 | "11111111.11111111.11111111.00000000","/24","172.21.9.0/24",London,"United Kingdom","39.9086276","116.4155","172.21.9.0","1 East Chang An Avenue",Medium,,"CN BACKBONE","255.255.255.0",254,CN 289 | "11111111.11111111.11111111.00000000","/24","172.21.90.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.90.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 290 | "11111111.11111111.11111111.00000000","/24","172.21.91.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.91.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 291 | "11111111.11111111.11111111.00000000","/24","172.21.92.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.92.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 292 | "11111111.11111111.11111111.00000000","/24","172.21.93.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.93.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 293 | "11111111.11111111.11111111.00000000","/24","172.21.94.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.94.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 294 | "11111111.11111111.11111111.00000000","/24","172.21.95.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.95.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 295 | "11111111.11111111.11111111.00000000","/24","172.21.96.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.96.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 296 | "11111111.11111111.11111111.00000000","/24","172.21.97.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.97.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 297 | "11111111.11111111.11111111.00000000","/24","172.21.98.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.98.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 298 | "11111111.11111111.11111111.00000000","/24","172.21.99.0/24",London,"United Kingdom","51.5196482","-0.1828441","172.21.99.0","3 Sheldon Square",Medium,,"Server Farms","255.255.255.0",254,UK 299 | "11111111.11111111.11111111.00000000","/24","172.28.107.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.107.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 300 | "11111111.11111111.11111111.00000000","/24","172.28.108.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.108.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 301 | "11111111.11111111.11111111.00000000","/24","172.28.109.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.109.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 302 | "11111111.11111111.11111111.00000000","/24","172.28.121.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.121.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 303 | "11111111.11111111.11111111.00000000","/24","172.28.21.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.21.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 304 | "11111111.11111111.11111111.00000000","/24","172.28.5.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.5.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 305 | "11111111.11111111.11111111.00000000","/24","172.28.6.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.6.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 306 | "11111111.11111111.11111111.00000000","/24","172.28.7.0/24",London,"United Kingdom","47.6168229","-122.3318311","172.28.7.0","1730 Minor Avenue",Medium,,"WA Server Farms","255.255.255.0",254,WA 307 | "11111111.11111111.11111110.00000000","/23","10.50.126.0/23","San Francisco","United States","37.7830522","-122.3932187","10.50.126.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.254.0",510,HQ 308 | "11111111.11111111.11111110.00000000","/23","10.50.90.0/23","San Francisco","United States","37.7830522","-122.3932187","10.50.90.0","250 Brannan",Medium,,"HQ BACKBONE","255.255.254.0",510,HQ 309 | -------------------------------------------------------------------------------- /lookups/sample_vlan_inventory.csv: -------------------------------------------------------------------------------- 1 | zone,physical_address,segment,network,subnet_mask,remarks,lat,lon,priority,city,country 2 | TX,5360 Legacy Place,TX Server Farms,10.1.1.0,255.255.255.0,,33.0742362,-96.811603,Medium,San Francisco,United States 3 | TX,5360 Legacy Place,TX Server Farms,10.1.2.0,255.255.255.0,,33.0742362,-96.811603,Medium,San Francisco,United States 4 | TX,5360 Legacy Place,mgmt interfaces for switches,10.24.110.0,255.255.255.0,,33.0742362,-96.811603,Critical,San Francisco,United States 5 | HQ,250 Brannan,SSL VPN,10.50.10.0,255.255.255.0,,37.7830522,-122.3932187,High,San Francisco,United States 6 | HQ,250 Brannan,SSL VPN,10.50.11.0,255.255.255.0,,37.7830522,-122.3932187,High,San Francisco,United States 7 | HQ,250 Brannan,HQ BACKBONE,10.50.126.0,255.255.254.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 8 | HQ,250 Brannan,HQ BACKBONE,10.50.126.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 9 | HQ,250 Brannan,HQ BACKBONE,10.50.127.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 10 | HQ,250 Brannan,HQ BACKBONE,10.50.128.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 11 | HQ,250 Brannan,HQ BACKBONE,10.50.129.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 12 | HQ,250 Brannan,HQ BACKBONE,10.50.130.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 13 | HQ,250 Brannan,HQ BACKBONE,10.50.131.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 14 | HQ,250 Brannan,HQ BACKBONE,10.50.132.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 15 | HQ,250 Brannan,HQ BACKBONE,10.50.133.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 16 | HQ,250 Brannan,HQ BACKBONE,10.50.136.192,255.255.255.252,,37.7830522,-122.3932187,Medium,San Francisco,United States 17 | HQ,250 Brannan,DMZ,10.50.18.0,255.255.255.0,,37.7830522,-122.3932187,Low,San Francisco,United States 18 | HQ,250 Brannan,DMZ,10.50.19.0,255.255.255.0,,37.7830522,-122.3932187,Low,San Francisco,United States 19 | HQ,250 Brannan,HQ Server Farms,10.50.24.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 20 | HQ,250 Brannan,HQ Server Farms,10.50.25.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 21 | HQ,250 Brannan,HQ Server Farms,10.50.48.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 22 | HQ,250 Brannan,HQ Server Farms,10.50.49.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 23 | HQ,250 Brannan,HQ Server Farms,10.50.54.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 24 | HQ,250 Brannan,HQ Server Farms,10.50.55.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 25 | HQ,250 Brannan,HQ Server Farms,10.50.60.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 26 | HQ,250 Brannan,HQ Server Farms,10.50.61.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 27 | HQ,250 Brannan,HQ Server Farms,10.50.72.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 28 | HQ,250 Brannan,HQ Server Farms,10.50.73.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 29 | HQ,250 Brannan,HQ Server Farms,10.50.74.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 30 | HQ,250 Brannan,HQ Server Farms,10.50.75.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 31 | HQ,250 Brannan,HQ BACKBONE,10.50.76.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 32 | HQ,250 Brannan,HQ BACKBONE,10.50.78.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 33 | HQ,250 Brannan,HQ BACKBONE,10.50.79.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 34 | HQ,250 Brannan,HQ BACKBONE,10.50.90.0,255.255.254.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 35 | HQ,250 Brannan,HQ BACKBONE,10.50.90.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 36 | HQ,250 Brannan,HQ BACKBONE,10.50.91.0,255.255.255.0,,37.7830522,-122.3932187,Medium,San Francisco,United States 37 | HQ,250 Brannan,HQ BACKBONE,10.50.96.0,255.255.255.0,,37.7830522,-122.3932187,Medium,McLean,United States 38 | HQ,250 Brannan,HQ BACKBONE,10.50.97.0,255.255.255.0,,37.7830522,-122.3932187,Medium,McLean,United States 39 | HQ,250 Brannan,HQ BACKBONE,10.50.99.0,255.255.255.0,,37.7830522,-122.3932187,Medium,McLean,United States 40 | DC,7900 Tysons One Place,DC Server Farms,10.51.127.28,255.255.255.252,,38.9195157,-77.2195776,Medium,McLean,United States 41 | DC,7900 Tysons One Place,DC BACKBONE,10.51.225.0,255.255.255.128,,38.9195157,-77.2195776,Medium,McLean,United States 42 | DC,7900 Tysons One Place,DC Server Farms,10.51.255.4,255.255.255.252,,38.9195157,-77.2195776,Medium,McLean,United States 43 | DC,7900 Tysons One Place,DC Server Farms,10.51.54.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 44 | DC,7900 Tysons One Place,DC Server Farms,10.51.98.53,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 45 | DC,7900 Tysons One Place,DC Server Farms,10.52.1.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 46 | DC,7900 Tysons One Place,DC Server Farms,10.52.1.103,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 47 | DC,7900 Tysons One Place,DC Server Farms,10.52.1.94,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 48 | DC,7900 Tysons One Place,DC BACKBONE,10.52.11.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 49 | DC,7900 Tysons One Place,DC BACKBONE,10.52.14.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 50 | DC,7900 Tysons One Place,DC BACKBONE,10.52.16.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 51 | DC,7900 Tysons One Place,DC BACKBONE,10.52.17.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 52 | DC,7900 Tysons One Place,DC BACKBONE,10.52.18.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 53 | DC,7900 Tysons One Place,DC Server Farms,10.52.2.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 54 | DC,7900 Tysons One Place,DC BACKBONE,10.52.20.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 55 | DC,7900 Tysons One Place,DC BACKBONE,10.52.24.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 56 | DC,7900 Tysons One Place,DC BACKBONE,10.52.25.0,255.255.255.192,,38.9195157,-77.2195776,Medium,McLean,United States 57 | DC,7900 Tysons One Place,DC BACKBONE,10.52.27.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 58 | DC,7900 Tysons One Place,DC Server Farms,10.52.3.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 59 | DC,7900 Tysons One Place,DC BACKBONE,10.52.4.0,255.255.255.0,,38.9195157,-77.2195776,Medium,McLean,United States 60 | DC,7900 Tysons One Place,mgmt interfaces for switches,10.52.50.0,255.255.255.0,,38.9195157,-77.2195776,Critical,McLean,United States 61 | DC,7900 Tysons One Place,DC BACKBONE,10.52.7.0,255.255.255.0,,38.9195157,-77.2195776,Medium,Plano,United States 62 | DC,7900 Tysons One Place,DC BACKBONE,10.52.8.0,255.255.255.0,,38.9195157,-77.2195776,Medium,Plano,United States 63 | DC,7900 Tysons One Place,DC BACKBONE,10.52.9.0,255.255.255.0,,38.9195157,-77.2195776,Medium,Plano,United States 64 | TX,5360 Legacy Place,TX Server Farms,10.8.33.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 65 | TX,5360 Legacy Place,TX Server Farms,10.8.33.12,255.255.255.255,,33.0742362,-96.811603,Medium,Plano,United States 66 | TX,5360 Legacy Place,TX Server Farms,10.8.33.13,255.255.255.255,,33.0742362,-96.811603,Medium,Plano,United States 67 | TX,5360 Legacy Place,SSL VPN,10.8.34.0,255.255.255.0,,33.0742362,-96.811603,High,Plano,United States 68 | TX,5360 Legacy Place,SSL VPN,10.8.37.0,255.255.255.0,,33.0742362,-96.811603,High,Plano,United States 69 | TX,5360 Legacy Place,SSL VPN,10.8.45.0,255.255.255.0,,33.0742362,-96.811603,High,Plano,United States 70 | TX,5360 Legacy Place,TX Server Farms,10.8.52.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 71 | TX,5360 Legacy Place,TX Server Farms,10.8.56.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 72 | TX,5360 Legacy Place,SSL VPN,10.8.57.0,255.255.255.0,,33.0742362,-96.811603,High,Plano,United States 73 | TX,5360 Legacy Place,DMZ,10.8.58.0,255.255.255.0,,33.0742362,-96.811603,Low,Plano,United States 74 | TX,5360 Legacy Place,TX Server Farms,10.8.59.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 75 | TX,5360 Legacy Place,TX Server Farms,10.8.62.0,255.255.255.252,,33.0742362,-96.811603,Medium,Plano,United States 76 | TX,5360 Legacy Place,TX Server Farms,10.8.8.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 77 | TX,5360 Legacy Place,TX Server Farms,10.8.85.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 78 | TX,5360 Legacy Place,TX Server Farms,10.8.86.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 79 | TX,5360 Legacy Place,Security Vlan,10.9.106.0,255.255.255.0,,33.0742362,-96.811603,Critical,Plano,United States 80 | TX,5360 Legacy Place,Security Vlan,10.9.110.0,255.255.255.0,,33.0742362,-96.811603,Critical,Plano,United States 81 | TX,5360 Legacy Place,TX Server Farms,10.9.12.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 82 | TX,5360 Legacy Place,TX BACKBONE,10.9.173.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 83 | TX,5360 Legacy Place,TX BACKBONE,10.9.176.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 84 | TX,5360 Legacy Place,TX BACKBONE,10.9.177.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 85 | TX,5360 Legacy Place,TX Server Farms,10.9.18.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 86 | TX,5360 Legacy Place,TX BACKBONE,10.9.19.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 87 | TX,5360 Legacy Place,TX BACKBONE,10.9.207.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 88 | TX,5360 Legacy Place,TX BACKBONE,10.9.225.0,255.255.255.128,,33.0742362,-96.811603,Medium,Plano,United States 89 | TX,5360 Legacy Place,TX Server Farms,10.9.23.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 90 | TX,5360 Legacy Place,TX BACKBONE,10.9.23.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 91 | TX,5360 Legacy Place,TX BACKBONE,10.9.24.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 92 | TX,5360 Legacy Place,TX Server Farms,10.9.36.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 93 | TX,5360 Legacy Place,TX BACKBONE,10.9.72.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 94 | TX,5360 Legacy Place,TX BACKBONE,10.9.73.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 95 | TX,5360 Legacy Place,TX BACKBONE,10.9.74.0,255.255.255.192,,33.0742362,-96.811603,Medium,Plano,United States 96 | TX,5360 Legacy Place,TX BACKBONE,10.9.75.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 97 | TX,5360 Legacy Place,TX BACKBONE,10.9.76.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 98 | TX,5360 Legacy Place,TX BACKBONE,10.9.77.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 99 | TX,5360 Legacy Place,TX BACKBONE,10.9.78.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 100 | TX,5360 Legacy Place,TX BACKBONE,10.9.79.0,255.255.255.192,,33.0742362,-96.811603,Medium,Plano,United States 101 | TX,5360 Legacy Place,TX BACKBONE,10.9.80.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 102 | TX,5360 Legacy Place,TX BACKBONE,10.9.81.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 103 | TX,5360 Legacy Place,TX BACKBONE,10.9.82.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 104 | TX,5360 Legacy Place,TX BACKBONE,10.9.83.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 105 | TX,5360 Legacy Place,TX Server Farms,10.9.91.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 106 | TX,5360 Legacy Place,TX Server Farms,10.9.95.0,255.255.255.0,,33.0742362,-96.811603,Medium,Plano,United States 107 | CN,1 East Chang An Avenue,DMZ,172.21.0.0,255.255.255.0,,39.9086276,116.4155,Low,Seattle,United States 108 | CN,1 East Chang An Avenue,DMZ,172.21.1.0,255.255.255.0,,39.9086276,116.4155,Low,Seattle,United States 109 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.10.0,255.255.255.0,,39.9086276,116.4155,Medium,Seattle,United States 110 | UK,3 Sheldon Square,Server Farms,172.21.100.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Seattle,United States 111 | UK,3 Sheldon Square,Server Farms,172.21.101.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Seattle,United States 112 | UK,3 Sheldon Square,Server Farms,172.21.102.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Seattle,United States 113 | UK,3 Sheldon Square,Server Farms,172.21.103.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Seattle,United States 114 | UK,3 Sheldon Square,Server Farms,172.21.104.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Seattle,United States 115 | UK,3 Sheldon Square,Firewalls,172.21.105.0,255.255.255.0,,51.5196482,-0.1828441,High,Beijing,China 116 | UK,3 Sheldon Square,Firewalls,172.21.106.0,255.255.255.0,,51.5196482,-0.1828441,High,Beijing,China 117 | UK,3 Sheldon Square,UK Server Farm,172.21.107.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 118 | UK,3 Sheldon Square,UK Server Farm,172.21.108.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 119 | UK,3 Sheldon Square,UK Server Farm,172.21.109.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 120 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.11.0,255.255.255.0,,39.9086276,116.4155,Medium,Beijing,China 121 | UK,3 Sheldon Square,UK Server Farm,172.21.110.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 122 | UK,3 Sheldon Square,UK Server Farm,172.21.111.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 123 | UK,3 Sheldon Square,UK Server Farm,172.21.112.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 124 | UK,3 Sheldon Square,UK Server Farm,172.21.113.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 125 | UK,3 Sheldon Square,UK Server Farm,172.21.114.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 126 | UK,3 Sheldon Square,UK Server Farm,172.21.115.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 127 | UK,3 Sheldon Square,UK Server Farm,172.21.116.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 128 | UK,3 Sheldon Square,UK Server Farm,172.21.117.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 129 | UK,3 Sheldon Square,UK Server Farm,172.21.118.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 130 | UK,3 Sheldon Square,UK Server Farm,172.21.119.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 131 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.12.0,255.255.255.0,,39.9086276,116.4155,Medium,Beijing,China 132 | UK,3 Sheldon Square,UK Server Farm,172.21.120.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 133 | UK,3 Sheldon Square,UK Server Farm,172.21.121.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 134 | UK,3 Sheldon Square,UK Server Farm,172.21.122.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 135 | UK,3 Sheldon Square,UK Server Farm,172.21.123.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 136 | UK,3 Sheldon Square,UK Server Farm,172.21.124.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 137 | UK,3 Sheldon Square,UK Server Farm,172.21.125.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 138 | UK,3 Sheldon Square,UK Server Farm,172.21.126.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 139 | UK,3 Sheldon Square,UK Server Farm,172.21.127.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 140 | UK,3 Sheldon Square,UK Server Farm,172.21.128.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 141 | UK,3 Sheldon Square,UK Server Farm,172.21.129.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 142 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.13.0,255.255.255.0,,39.9086276,116.4155,Medium,Beijing,China 143 | UK,3 Sheldon Square,UK Server Farm,172.21.130.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 144 | UK,3 Sheldon Square,UK Server Farm,172.21.131.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 145 | UK,3 Sheldon Square,UK Server Farm,172.21.132.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 146 | UK,3 Sheldon Square,UK Server Farm,172.21.133.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Beijing,China 147 | UK,3 Sheldon Square,UK Server Farm,172.21.134.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 148 | UK,3 Sheldon Square,UK Server Farm,172.21.135.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 149 | UK,3 Sheldon Square,UK Server Farm,172.21.136.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 150 | UK,3 Sheldon Square,UK Server Farm,172.21.137.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 151 | UK,3 Sheldon Square,UK Server Farm,172.21.138.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 152 | UK,3 Sheldon Square,UK Server Farm,172.21.139.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 153 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.14.0,255.255.255.0,,39.9086276,116.4155,Medium,Paris,France 154 | UK,3 Sheldon Square,DMZ,172.21.140.0,255.255.255.0,,51.5196482,-0.1828441,Low,Paris,France 155 | UK,3 Sheldon Square,DMZ,172.21.141.0,255.255.255.0,,51.5196482,-0.1828441,Low,Paris,France 156 | UK,3 Sheldon Square,SSL VPN,172.21.142.0,255.255.255.0,,51.5196482,-0.1828441,High,Paris,France 157 | UK,3 Sheldon Square,SSL VPN,172.21.143.0,255.255.255.0,,51.5196482,-0.1828441,High,Paris,France 158 | UK,3 Sheldon Square,UK BACKBONE,172.21.144.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 159 | UK,3 Sheldon Square,UK BACKBONE,172.21.145.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 160 | UK,3 Sheldon Square,UK BACKBONE,172.21.146.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 161 | UK,3 Sheldon Square,UK BACKBONE,172.21.147.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 162 | UK,3 Sheldon Square,UK BACKBONE,172.21.148.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 163 | UK,3 Sheldon Square,UK BACKBONE,172.21.149.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 164 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.15.0,255.255.255.0,,39.9086276,116.4155,Medium,Paris,France 165 | UK,3 Sheldon Square,UK BACKBONE,172.21.150.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 166 | UK,3 Sheldon Square,UK BACKBONE,172.21.151.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 167 | UK,3 Sheldon Square,UK BACKBONE,172.21.152.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 168 | UK,3 Sheldon Square,UK BACKBONE,172.21.153.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 169 | UK,3 Sheldon Square,UK BACKBONE,172.21.154.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 170 | UK,3 Sheldon Square,UK BACKBONE,172.21.155.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 171 | UK,3 Sheldon Square,UK BACKBONE,172.21.156.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 172 | UK,3 Sheldon Square,UK BACKBONE,172.21.157.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 173 | UK,3 Sheldon Square,UK BACKBONE,172.21.158.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 174 | UK,3 Sheldon Square,UK BACKBONE,172.21.159.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 175 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.16.0,255.255.255.0,,39.9086276,116.4155,Medium,Paris,France 176 | UK,3 Sheldon Square,UK BACKBONE,172.21.160.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 177 | UK,3 Sheldon Square,UK BACKBONE,172.21.161.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 178 | UK,3 Sheldon Square,UK BACKBONE,172.21.162.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 179 | UK,3 Sheldon Square,UK BACKBONE,172.21.163.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 180 | UK,3 Sheldon Square,UK BACKBONE,172.21.164.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 181 | UK,3 Sheldon Square,UK BACKBONE,172.21.165.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 182 | UK,3 Sheldon Square,UK BACKBONE,172.21.166.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 183 | UK,3 Sheldon Square,UK BACKBONE,172.21.167.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 184 | UK,3 Sheldon Square,UK BACKBONE,172.21.168.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 185 | UK,3 Sheldon Square,UK BACKBONE,172.21.169.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 186 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.17.0,255.255.255.0,,39.9086276,116.4155,Medium,Paris,France 187 | UK,3 Sheldon Square,UK BACKBONE,172.21.170.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 188 | UK,3 Sheldon Square,UK BACKBONE,172.21.171.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 189 | UK,3 Sheldon Square,UK BACKBONE,172.21.172.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 190 | UK,3 Sheldon Square,UK BACKBONE,172.21.173.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 191 | UK,3 Sheldon Square,UK BACKBONE,172.21.174.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 192 | UK,3 Sheldon Square,UK BACKBONE,172.21.175.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 193 | UK,3 Sheldon Square,UK BACKBONE,172.21.176.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 194 | UK,3 Sheldon Square,UK BACKBONE,172.21.177.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 195 | UK,3 Sheldon Square,UK BACKBONE,172.21.178.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 196 | UK,3 Sheldon Square,UK BACKBONE,172.21.179.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 197 | CN,1 East Chang An Avenue,CN Server Farms,172.21.18.0,255.255.255.0,,39.9086276,116.4155,Medium,Paris,France 198 | UK,3 Sheldon Square,UK BACKBONE,172.21.180.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 199 | UK,3 Sheldon Square,UK BACKBONE,172.21.181.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 200 | UK,3 Sheldon Square,UK BACKBONE,172.21.182.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 201 | UK,3 Sheldon Square,UK BACKBONE,172.21.183.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 202 | UK,3 Sheldon Square,UK BACKBONE,172.21.184.0,255.255.255.0,,51.5196482,-0.1828441,Medium,Paris,France 203 | UK,3 Sheldon Square,UK BACKBONE,172.21.185.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 204 | UK,3 Sheldon Square,UK BACKBONE,172.21.186.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 205 | UK,3 Sheldon Square,UK BACKBONE,172.21.187.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 206 | UK,3 Sheldon Square,UK BACKBONE,172.21.188.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 207 | UK,3 Sheldon Square,UK BACKBONE,172.21.189.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 208 | CN,1 East Chang An Avenue,CN Server Farms,172.21.19.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 209 | UK,3 Sheldon Square,mgmt interfaces for switches,172.21.190.0,255.255.255.0,,51.5196482,-0.1828441,Critical,London,United Kingdom 210 | UK,3 Sheldon Square,mgmt interfaces for switches,172.21.191.0,255.255.255.0,,51.5196482,-0.1828441,Critical,London,United Kingdom 211 | UK,3 Sheldon Square,Security Vlan,172.21.192.0,255.255.255.0,,51.5196482,-0.1828441,Critical,London,United Kingdom 212 | UK,3 Sheldon Square,Security Vlan,172.21.193.0,255.255.255.0,,51.5196482,-0.1828441,Critical,London,United Kingdom 213 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.2.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 214 | CN,1 East Chang An Avenue,CN Server Farms,172.21.20.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 215 | CN,1 East Chang An Avenue,CN Server Farms,172.21.21.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 216 | CN,1 East Chang An Avenue,CN Server Farms,172.21.22.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 217 | CN,1 East Chang An Avenue,CN Server Farms,172.21.23.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 218 | CN,1 East Chang An Avenue,CN Server Farms,172.21.24.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 219 | CN,1 East Chang An Avenue,CN Server Farms,172.21.25.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 220 | CN,1 East Chang An Avenue,CN Server Farms,172.21.26.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 221 | CN,1 East Chang An Avenue,CN Server Farms,172.21.27.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 222 | CN,1 East Chang An Avenue,CN Server Farms,172.21.28.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 223 | CN,1 East Chang An Avenue,mgmt interfaces for switches,172.21.29.0,255.255.255.0,,39.9086276,116.4155,Critical,London,United Kingdom 224 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.3.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 225 | CN,1 East Chang An Avenue,CN Server Farms,172.21.30.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 226 | CN,1 East Chang An Avenue,CN Server Farms,172.21.31.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 227 | FR,15 rue Taitbout,DMZ,172.21.32.0,255.255.255.0,,48.8722691,2.3335079,Low,London,United Kingdom 228 | FR,15 rue Taitbout,DMZ,172.21.33.0,255.255.255.0,,48.8722691,2.3335079,Low,London,United Kingdom 229 | FR,15 rue Taitbout,FR BACKBONE,172.21.34.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 230 | FR,15 rue Taitbout,FR BACKBONE,172.21.35.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 231 | FR,15 rue Taitbout,FR BACKBONE,172.21.36.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 232 | FR,15 rue Taitbout,FR BACKBONE,172.21.37.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 233 | FR,15 rue Taitbout,FR BACKBONE,172.21.38.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 234 | FR,15 rue Taitbout,FR BACKBONE,172.21.39.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 235 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.4.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 236 | FR,15 rue Taitbout,FR BACKBONE,172.21.40.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 237 | FR,15 rue Taitbout,FR BACKBONE,172.21.41.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 238 | FR,15 rue Taitbout,FR BACKBONE,172.21.42.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 239 | FR,15 rue Taitbout,FR BACKBONE,172.21.43.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 240 | FR,15 rue Taitbout,FR BACKBONE,172.21.44.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 241 | FR,15 rue Taitbout,FR BACKBONE,172.21.45.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 242 | FR,15 rue Taitbout,FR BACKBONE,172.21.46.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 243 | FR,15 rue Taitbout,FR BACKBONE,172.21.47.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 244 | FR,15 rue Taitbout,FR BACKBONE,172.21.48.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 245 | FR,15 rue Taitbout,FR BACKBONE,172.21.49.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 246 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.5.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 247 | FR,15 rue Taitbout,SSL VPN,172.21.50.0,255.255.255.0,,48.8722691,2.3335079,High,London,United Kingdom 248 | FR,15 rue Taitbout,SSL VPN,172.21.51.0,255.255.255.0,,48.8722691,2.3335079,High,London,United Kingdom 249 | FR,15 rue Taitbout,FR Server Farms,172.21.52.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 250 | FR,15 rue Taitbout,FR Server Farms,172.21.53.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 251 | FR,15 rue Taitbout,FR Server Farms,172.21.54.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 252 | FR,15 rue Taitbout,FR Server Farms,172.21.55.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 253 | FR,15 rue Taitbout,FR Server Farms,172.21.56.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 254 | FR,15 rue Taitbout,FR Server Farms,172.21.57.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 255 | FR,15 rue Taitbout,FR Server Farms,172.21.58.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 256 | FR,15 rue Taitbout,FR Server Farms,172.21.59.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 257 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.6.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 258 | FR,15 rue Taitbout,FR Server Farms,172.21.60.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 259 | FR,15 rue Taitbout,FR Server Farms,172.21.61.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 260 | FR,15 rue Taitbout,FR Server Farms,172.21.62.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 261 | FR,15 rue Taitbout,FR Server Farms,172.21.63.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 262 | FR,15 rue Taitbout,FR Server Farms,172.21.64.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 263 | FR,15 rue Taitbout,FR Server Farms,172.21.65.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 264 | FR,15 rue Taitbout,FR Server Farms,172.21.66.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 265 | FR,15 rue Taitbout,FR Server Farms,172.21.67.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 266 | FR,15 rue Taitbout,FR Server Farms,172.21.68.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 267 | FR,15 rue Taitbout,FR Server Farms,172.21.69.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 268 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.7.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 269 | FR,15 rue Taitbout,FR Server Farms,172.21.70.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 270 | FR,15 rue Taitbout,FR Server Farms,172.21.71.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 271 | FR,15 rue Taitbout,FR Server Farms,172.21.72.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 272 | FR,15 rue Taitbout,FR Server Farms,172.21.73.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 273 | FR,15 rue Taitbout,FR Server Farms,172.21.74.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 274 | FR,15 rue Taitbout,FR Server Farms,172.21.75.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 275 | FR,15 rue Taitbout,FR Server Farms,172.21.76.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 276 | FR,15 rue Taitbout,FR Server Farms,172.21.77.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 277 | FR,15 rue Taitbout,FR Server Farms,172.21.78.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 278 | FR,15 rue Taitbout,FR Server Farms,172.21.79.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 279 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.8.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 280 | FR,15 rue Taitbout,FR Server Farms,172.21.80.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 281 | FR,15 rue Taitbout,FR Server Farms,172.21.81.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 282 | FR,15 rue Taitbout,mgmt interfaces for switches,172.21.82.0,255.255.255.0,,48.8722691,2.3335079,Critical,London,United Kingdom 283 | FR,15 rue Taitbout,mgmt interfaces for switches,172.21.83.0,255.255.255.0,,48.8722691,2.3335079,Critical,London,United Kingdom 284 | FR,15 rue Taitbout,FR Server Farms,172.21.84.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 285 | FR,15 rue Taitbout,FR Server Farms,172.21.85.0,255.255.255.0,,48.8722691,2.3335079,Medium,London,United Kingdom 286 | FR,15 rue Taitbout,Security Vlan,172.21.86.0,255.255.255.0,,48.8722691,2.3335079,Critical,London,United Kingdom 287 | FR,15 rue Taitbout,Security Vlan,172.21.87.0,255.255.255.0,,48.8722691,2.3335079,Critical,London,United Kingdom 288 | UK,3 Sheldon Square,Server Farms,172.21.88.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 289 | UK,3 Sheldon Square,Server Farms,172.21.89.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 290 | CN,1 East Chang An Avenue,CN BACKBONE,172.21.9.0,255.255.255.0,,39.9086276,116.4155,Medium,London,United Kingdom 291 | UK,3 Sheldon Square,Server Farms,172.21.90.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 292 | UK,3 Sheldon Square,Server Farms,172.21.91.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 293 | UK,3 Sheldon Square,Server Farms,172.21.92.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 294 | UK,3 Sheldon Square,Server Farms,172.21.93.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 295 | UK,3 Sheldon Square,Server Farms,172.21.94.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 296 | UK,3 Sheldon Square,Server Farms,172.21.95.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 297 | UK,3 Sheldon Square,Server Farms,172.21.96.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 298 | UK,3 Sheldon Square,Server Farms,172.21.97.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 299 | UK,3 Sheldon Square,Server Farms,172.21.98.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 300 | UK,3 Sheldon Square,Server Farms,172.21.99.0,255.255.255.0,,51.5196482,-0.1828441,Medium,London,United Kingdom 301 | WA,1730 Minor Avenue,WA Server Farms,172.28.107.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 302 | WA,1730 Minor Avenue,WA Server Farms,172.28.108.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 303 | WA,1730 Minor Avenue,WA Server Farms,172.28.109.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 304 | WA,1730 Minor Avenue,WA Server Farms,172.28.121.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 305 | WA,1730 Minor Avenue,WA Server Farms,172.28.21.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 306 | WA,1730 Minor Avenue,WA Server Farms,172.28.5.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 307 | WA,1730 Minor Avenue,WA Server Farms,172.28.6.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 308 | WA,1730 Minor Avenue,WA Server Farms,172.28.7.0 ,255.255.255.0,,47.6168229,-122.3318311,Medium,London,United Kingdom 309 | -------------------------------------------------------------------------------- /lookups/subnet_to_cidr.csv: -------------------------------------------------------------------------------- 1 | "subnet_mask","binary_mask","cidr","host_count","usable_hosts" 2 | "255.255.255.255","11111111.11111111.11111111.11111111","/32","1","-1" 3 | "255.255.255.254","11111111.11111111.11111111.11111110","/31","2","0" 4 | "255.255.255.252","11111111.11111111.11111111.11111100","/30","4","2" 5 | "255.255.255.248","11111111.11111111.11111111.11111000","/29","8","6" 6 | "255.255.255.240","11111111.11111111.11111111.11110000","/28","16","14" 7 | "255.255.255.224","11111111.11111111.11111111.11100000","/27","32","30" 8 | "255.255.255.192","11111111.11111111.11111111.11000000","/26","64","62" 9 | "255.255.255.128","11111111.11111111.11111111.10000000","/25","128","126" 10 | "255.255.255.0","11111111.11111111.11111111.00000000","/24","256","254" 11 | "255.255.254.0","11111111.11111111.11111110.00000000","/23","512","510" 12 | "255.255.252.0","11111111.11111111.11111100.00000000","/22","1024","1022" 13 | "255.255.248.0","11111111.11111111.11111000.00000000","/21","2048","2046" 14 | "255.255.240.0","11111111.11111111.11110000.00000000","/20","4096","4094" 15 | "255.255.224.0","11111111.11111111.11100000.00000000","/19","8192","8190" 16 | "255.255.192.0","11111111.11111111.11000000.00000000","/18","16384","16382" 17 | "255.255.128.0","11111111.11111111.10000000.00000000","/17","32768","32766" 18 | "255.255.0.0","11111111.11111111.00000000.00000000","/16","65536","65534" 19 | "255.254.0.0","11111111.11111110.00000000.00000000","/15","131072","131070" 20 | "255.252.0.0","11111111.11111100.00000000.00000000","/14","262144","262142" 21 | "255.248.0.0","11111111.11111000.00000000.00000000","/13","524288","524286" 22 | "255.240.0.0","11111111.11110000.00000000.00000000","/12","1048576","1048574" 23 | "255.224.0.0","11111111.11100000.00000000.00000000","/11","2097152","2097150" 24 | "255.192.0.0","11111111.11000000.00000000.00000000","/10","4194304","4194302" 25 | "255.128.0.0","11111111.10000000.00000000.00000000","/9","8388608","8388606" 26 | "255.0.0.0","11111111.00000000.00000000.00000000","/8","16777216","16777214" 27 | "254.0.0.0","11111110.00000000.00000000.00000000","/7","33554432","33554430" 28 | "252.0.0.0","11111100.00000000.00000000.00000000","/6","67108864","67108862" 29 | "248.0.0.0","11111000.00000000.00000000.00000000","/5","134217728","134217726" 30 | "240.0.0.0","11110000.00000000.00000000.00000000","/4","268435456","268435454" 31 | "224.0.0.0","11100000.00000000.00000000.00000000","/3","536870912","536870910" 32 | "192.0.0.0","11000000.00000000.00000000.00000000","/2","1073741824","1073741822" 33 | "128.0.0.0","10000000.00000000.00000000.00000000","/1","2147483648","2147483646" 34 | "0.0.0.0","00000000.00000000.00000000.00000000","/0","IP space","IP space" -------------------------------------------------------------------------------- /metadata/default.meta: -------------------------------------------------------------------------------- 1 | [] 2 | access = read : [ * ], write : [ admin, power ] 3 | export = system 4 | -------------------------------------------------------------------------------- /static/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/static/appIcon.png -------------------------------------------------------------------------------- /static/appIconAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/static/appIconAlt.png -------------------------------------------------------------------------------- /static/appIconAlt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/static/appIconAlt_2x.png -------------------------------------------------------------------------------- /static/appIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/static/appIcon_2x.png -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hire-vladimir/SA-NetOps/d7b118d666e8069c8928e5b7cef96ff115761a07/static/screenshot.png --------------------------------------------------------------------------------