-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_structure.sql
More file actions
445 lines (386 loc) · 362 KB
/
db_structure.sql
File metadata and controls
445 lines (386 loc) · 362 KB
1
2
3
4
5
6
7
8
9
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
38
39
40
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
CREATE DATABASE IF NOT EXISTS `kfa_auto` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `kfa_auto`;
-- MySQL dump 10.13 Distrib 5.6.13, for Win32 (x86)
--
-- Host: 127.0.0.1 Database: kfa_auto
-- ------------------------------------------------------
-- Server version 5.6.10
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `device_group`
--
DROP TABLE IF EXISTS `device_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `device_group` (
`grp_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`grp_keyword` varchar(255) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`grp_id`),
UNIQUE KEY `grp_id_UNIQUE` (`grp_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `device_group`
--
LOCK TABLES `device_group` WRITE;
/*!40000 ALTER TABLE `device_group` DISABLE KEYS */;
INSERT INTO `device_group` VALUES (1,'sw-mgmt','Managment switches'),(2,'sw-core','Core switches'),(3,'rtr-brd','Border routers'),(4,'rtr-vpn','VPN routers'),(5,'rtr-fw','Firewalls'),(6,'lb-core','Load balancer');
/*!40000 ALTER TABLE `device_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `device_list`
--
DROP TABLE IF EXISTS `device_list`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `device_list` (
`dev_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`grp_id` int(11) NOT NULL,
`dev_host` varchar(255) DEFAULT NULL,
`loc_id` int(11) unsigned DEFAULT NULL,
`dev_name` varchar(255) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`dev_id`),
UNIQUE KEY `dev_id_UNIQUE` (`dev_id`),
KEY `location_id_idx` (`loc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `device_list`
--
LOCK TABLES `device_list` WRITE;
/*!40000 ALTER TABLE `device_list` DISABLE KEYS */;
INSERT INTO `device_list` VALUES (1,2,'10.3.5.11',1,'sw-core-01','Cisco Nexus 7000 Core Switch (LON5)'),(2,2,'10.3.5.13',1,'sw-core-02','Cisco Nexus 7000 Core Switch (LON5)'),(3,3,'10.3.5.15',1,'rtr-brd-01','Cisco ASR 9000 Border Router (LON5)'),(4,3,'10.3.5.18',1,'rtr-brd-02','Cisco ASR 9000 Border Router (LON5)'),(5,4,'10.3.5.21',1,'rtr-vpn-01','Cisco ASR 1000 VPN Router (LON5)'),(6,4,'10.3.5.22',1,'rtr-vpn-02','Cisco ASR 1000 VPN Router (LON5)'),(7,1,'10.3.5.23',1,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (LON5)'),(8,1,'10.3.5.24',1,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (LON5)'),(9,5,'10.3.5.31',1,'fw-brd-01','Cisco ASA-5585 Firewall (LON5)'),(10,5,'10.3.5.32',1,'fw-brd-02','Cisco ASA-5585 Firewall (LON5)'),(11,2,'10.3.69.11',2,'sw-core-01','Cisco Nexus 7000 Core Switch (FRA2)'),(12,2,'10.3.69.13',2,'sw-core-02','Cisco Nexus 7000 Core Switch (FRA2)'),(13,3,'10.3.69.15',2,'rtr-brd-01','Cisco ASR 9000 Border Router (FRA2)'),(14,3,'10.3.69.18',2,'rtr-brd-02','Cisco ASR 9000 Border Router (FRA2)'),(15,4,'10.3.69.21',2,'rtr-vpn-01','Cisco ASR 1000 VPN Router (FRA2)'),(16,4,'10.3.69.22',2,'rtr-vpn-02','Cisco ASR 1000 VPN Router (FRA2)'),(17,1,'10.3.69.23',2,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (FRA2)'),(18,1,'10.3.69.24',2,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (FRA2)'),(19,5,'10.3.69.31',2,'fw-brd-01','Cisco ASA-5585 Firewall (FRA2)'),(20,5,'10.3.69.32',2,'fw-brd-02','Cisco ASA-5585 Firewall (FRA2)'),(21,2,'10.3.101.11',3,'sw-core-01','Cisco Nexus 7000 Core Switch (AKL1)'),(22,2,'10.3.101.13',3,'sw-core-02','Cisco Nexus 7000 Core Switch (AKL1)'),(23,3,'10.3.101.15',3,'rtr-brd-01','Cisco ASR 9000 Border Router (AKL1)'),(24,3,'10.3.101.18',3,'rtr-brd-02','Cisco ASR 9000 Border Router (AKL1)'),(25,4,'10.3.101.21',3,'rtr-vpn-01','Cisco ASR 1000 VPN Router (AKL1)'),(26,4,'10.3.101.22',3,'rtr-vpn-02','Cisco ASR 1000 VPN Router (AKL1)'),(27,1,'10.3.101.23',3,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (AKL1)'),(28,1,'10.3.101.24',3,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (AKL1)'),(29,5,'10.3.101.241',3,'fw-brd-03','Cisco ASA-5585 Firewall (AKL1)'),(30,5,'10.3.101.242',3,'fw-brd-04','Cisco ASA-5585 Firewall (AKL1)'),(31,6,'10.3.101.92',3,'lb-core-01','A10 TH-6430 Load Balancer (AKL1)'),(32,6,'10.3.101.93',3,'lb-core-02','A10 TH-6430 Load Balancer (AKL1)'),(33,5,'10.3.101.31',3,'fw-brd-01','Cisco ASA-5585 Firewall (AKL1)'),(34,5,'10.3.101.32',3,'fw-brd-02','Cisco ASA-5585 Firewall (AKL1)'),(35,2,'10.3.133.11',4,'sw-core-01','Cisco Nexus 7000 Core Switch (SCS2)'),(36,2,'10.3.133.13',4,'sw-core-02','Cisco Nexus 7000 Core Switch (SCS2)'),(37,3,'10.3.133.15',4,'rtr-brd-01','Cisco ASR 9000 Border Router (SCS2)'),(38,3,'10.3.133.18',4,'rtr-brd-02','Cisco ASR 9000 Border Router (SCS2)'),(39,4,'10.3.133.21',4,'rtr-vpn-01','Cisco ASR 1000 VPN Router (SCS2)'),(40,4,'10.3.133.22',4,'rtr-vpn-02','Cisco ASR 1000 VPN Router (SCS2)'),(41,1,'10.3.133.23',4,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (SCS2)'),(42,1,'10.3.133.24',4,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (SCS2)'),(43,5,'10.3.133.241',4,'fw-brd-03','Cisco ASA-5585 Firewall (SCS2)'),(44,5,'10.3.133.242',4,'fw-brd-04','Cisco ASA-5585 Firewall (SCS2)'),(45,6,'10.3.133.92',4,'lb-core-01','A10 TH-6430 Load Balancer (SCS2)'),(46,6,'10.3.133.93',4,'lb-core-02','A10 TH-6430 Load Balancer (SCS2)'),(47,5,'10.3.133.31',4,'fw-brd-01','Cisco ASA-5585 Firewall (SCS2)'),(48,5,'10.3.133.32',4,'fw-brd-02','Cisco ASA-5585 Firewall (SCS2)'),(49,2,'10.3.165.11',5,'sw-core-01','Cisco Nexus 7000 Core Switch (DAL1)'),(50,2,'10.3.165.13',5,'sw-core-02','Cisco Nexus 7000 Core Switch (DAL1)'),(51,3,'10.3.165.15',5,'rtr-brd-01','Cisco ASR 9000 Border Router (DAL1)'),(52,3,'10.3.165.18',5,'rtr-brd-02','Cisco ASR 9000 Border Router (DAL1)'),(53,4,'10.3.165.21',5,'rtr-vpn-01','Cisco ASR 1000 VPN Router (DAL1)'),(54,4,'10.3.165.22',5,'rtr-vpn-02','Cisco ASR 1000 VPN Router (DAL1)'),(55,1,'10.3.165.23',5,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (DAL1)'),(56,1,'10.3.165.24',5,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (DAL1)'),(57,5,'10.3.165.241',5,'fw-brd-03','Cisco ASA-5585 Firewall (DAL1)'),(58,5,'10.3.165.242',5,'fw-brd-04','Cisco ASA-5585 Firewall (DAL1)'),(59,6,'10.3.165.92',5,'lb-core-01','A10 TH-6430 Load Balancer (DAL1)'),(60,6,'10.3.165.93',5,'lb-core-02','A10 TH-6430 Load Balancer (DAL1)'),(61,2,'10.4.5.11',6,'sw-core-01','Cisco Nexus 7000 Core Switch (SYD3)'),(62,2,'10.4.5.13',6,'sw-core-02','Cisco Nexus 7000 Core Switch (SYD3)'),(63,3,'10.4.5.15',6,'rtr-brd-01','Cisco ASR 9000 Border Router (SYD3)'),(64,3,'10.4.5.18',6,'rtr-brd-02','Cisco ASR 9000 Border Router (SYD3)'),(65,4,'10.4.5.21',6,'rtr-vpn-01','Cisco ASR 1000 VPN Router (SYD3)'),(66,4,'10.4.5.22',6,'rtr-vpn-02','Cisco ASR 1000 VPN Router (SYD3)'),(67,1,'10.4.5.23',6,'sw-mgmt-01','Cisco Nexus 3000 Management Switch (SYD3)'),(68,1,'10.4.5.24',6,'sw-mgmt-02','Cisco Nexus 3000 Management Switch (SYD3)'),(69,5,'10.4.5.241',6,'fw-brd-03','Cisco ASA-5585 Firewall (SYD3)'),(70,5,'10.4.5.242',6,'fw-brd-04','Cisco ASA-5585 Firewall (SYD3)'),(71,6,'10.4.5.92',6,'lb-core-01','A10 TH-6430 Load Balancer (SYD3)'),(72,6,'10.4.5.93',6,'lb-core-02','A10 TH-6430 Load Balancer (SYD3)');
/*!40000 ALTER TABLE `device_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `host_group`
--
DROP TABLE IF EXISTS `host_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `host_group` (
`grp_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`host_keyword` varchar(255) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`grp_id`),
UNIQUE KEY `host_id_UNIQUE` (`grp_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `host_group`
--
LOCK TABLES `host_group` WRITE;
/*!40000 ALTER TABLE `host_group` DISABLE KEYS */;
INSERT INTO `host_group` VALUES (1,'ops-dns','OpsINF RDNS hosts'),(2,'ops-puppet','OpsINF Puppet hosts'),(3,'ops-rmq','OpsINF RabbitMQ hosts'),(4,'ops-logstash','OpsINF Logstash hosts'),(5,'ops-graphite','OpsINF Graphite hosts'),(6,'ops-collectd','OpsINF Collectd hosts'),(7,'ops-general','OpsINF Gnereal hosts (yum, smtp, etc)'),(8,'ucs-vm','PlatOPS vShere VMs'),(9,'ucs-blades','PlatOPS UCS Blades hosts'),(10,'mon-general','MonOPS hosts'),(11,'ops-cobbler','OpsINF Cobbler hosts');
/*!40000 ALTER TABLE `host_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `host_list`
--
DROP TABLE IF EXISTS `host_list`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `host_list` (
`host_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`grp_id` int(11) NOT NULL,
`host_hostname` varchar(255) DEFAULT NULL,
`host_shortname` varchar(255) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`host_id`),
UNIQUE KEY `host_id_UNIQUE` (`host_id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `host_list`
--
LOCK TABLES `host_list` WRITE;
/*!40000 ALTER TABLE `host_list` DISABLE KEYS */;
INSERT INTO `host_list` VALUES (1,1,'prod-ops-rdns1.<DC>.sco.cisco.com','prod-ops-rdns1',NULL),(2,1,'prod-ops-rdns2.<DC>.sco.cisco.com','prod-ops-rdns2',NULL),(3,1,'prod-ops-rdns3.<DC>.sco.cisco.com','prod-ops-rdns3',NULL),(4,1,'prod-ops-rdns4.<DC>.sco.cisco.com','prod-ops-rdns4',NULL),(5,2,'prod-puppet-www1.<DC>.sco.cisco.com','prod-puppet-www1',NULL),(6,2,'prod-puppet-www2.<DC>.sco.cisco.com','prod-puppet-www2',NULL),(7,2,'prod-puppet-www3.<DC>.sco.cisco.com','prod-puppet-www3',NULL),(8,3,'prod-ops-rmq1.<DC>.sco.cisco.com','prod-ops-rmq1',NULL),(9,3,'prod-ops-rmq2.<DC>.sco.cisco.com','prod-ops-rmq2',NULL),(10,4,'prod-logstash-app1.<DC>.sco.cisco.com','prod-logstash-app1',NULL),(11,4,'prod-logstash-app2.<DC>.sco.cisco.com','prod-logstash-app2',NULL),(12,5,'prod-graphite-proxy1.<DC>.sco.cisco.com','prod-graphite-proxy1',NULL),(13,5,'prod-graphite-proxy2.<DC>.sco.cisco.com','prod-graphite-proxy2',NULL),(14,6,'prod-collectd-app1.<DC>.sco.cisco.com','prod-collectd-app1',NULL),(15,6,'prod-collectd-app2.<DC>.sco.cisco.com','prod-collectd-app2',NULL),(16,11,'prod-cobbler-app1.<DC>.sco.cisco.com','prod-cobbler-app1',NULL),(17,11,'prod-cobbler-app2.<DC>.sco.cisco.com','prod-cobbler-app2',NULL);
/*!40000 ALTER TABLE `host_list` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location`
--
DROP TABLE IF EXISTS `location`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location` (
`loc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`loc_name` varchar(45) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`loc_id`),
UNIQUE KEY `loc_id_UNIQUE` (`loc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location`
--
LOCK TABLES `location` WRITE;
/*!40000 ALTER TABLE `location` DISABLE KEYS */;
INSERT INTO `location` VALUES (1,'LON5','London Khalifa DC'),(2,'FRA2','Frankfurt Khalifa DC'),(3,'AKL1','Auckland Khalifa DC'),(4,'SCS2','Secaucus Khalifa DC'),(5,'DAL1','Dallas Khalifa DC'),(6,'SYD3','Sydney Khalifa DC');
/*!40000 ALTER TABLE `location` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location_ip_range`
--
DROP TABLE IF EXISTS `location_ip_range`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_ip_range` (
`loc_ip_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`loc_id` int(11) unsigned DEFAULT NULL,
`loc_type_id` int(11) unsigned DEFAULT NULL,
`ip_range` varchar(45) DEFAULT NULL,
PRIMARY KEY (`loc_ip_id`),
UNIQUE KEY `loc_ip_id_UNIQUE` (`loc_ip_id`),
KEY `location_ip_type_idx` (`loc_type_id`),
KEY `location_id_idx` (`loc_id`),
CONSTRAINT `location_id` FOREIGN KEY (`loc_id`) REFERENCES `location` (`loc_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `location_ip_type` FOREIGN KEY (`loc_type_id`) REFERENCES `location_ip_type` (`loc_type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=183 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location_ip_range`
--
LOCK TABLES `location_ip_range` WRITE;
/*!40000 ALTER TABLE `location_ip_range` DISABLE KEYS */;
INSERT INTO `location_ip_range` VALUES (1,3,1,'10.3.101.0/24'),(2,3,2,'10.3.108.0/28'),(3,3,3,'10.3.104.0/27'),(4,3,4,'10.3.102.0/23'),(5,3,5,NULL),(6,3,6,'10.3.100.0/24'),(7,3,7,'210.55.186.0/30'),(8,3,8,'210.55.186.4/30'),(9,3,9,'210.55.186.8/30'),(10,3,10,'210.55.186.12/30'),(11,3,11,'208.90.63.173/30'),(12,3,12,'208.90.63.162/32'),(13,3,13,'208.90.63.163/32'),(14,3,14,'210.55.186.16/30'),(15,3,15,'210.55.186.32/28'),(16,3,16,'210.55.186.48/28'),(17,3,17,'210.55.186.64/29'),(18,3,18,'210.55.186.24/29'),(19,3,19,'10.3.104.64/27'),(20,3,20,'10.3.104.48/28'),(21,3,21,'10.3.104.32/28'),(22,3,22,'10.3.104.96/29'),(23,3,23,'10.3.104.104/29'),(24,3,24,'10.3.96.0/23'),(25,3,25,'10.3.105.0/24'),(26,3,26,'10.3.104.112/28'),(27,3,27,'10.3.112.0/22'),(28,3,28,'192.168.0.0/24'),(29,3,29,'10.3.98.0/23'),(30,4,1,'10.3.133.0/24'),(31,4,2,'10.3.140.0/28'),(32,4,3,'10.3.136.0/27'),(33,4,4,'10.3.134.0/23'),(34,4,5,NULL),(35,4,6,'10.3.132.0/24'),(36,4,7,'108.171.130.0/30'),(37,4,8,'108.171.130.4/30'),(38,4,9,'108.171.130.8/30'),(39,4,10,'108.171.130.12/30'),(40,4,11,'208.90.63.188/30'),(41,4,12,'208.90.63.154/32'),(42,4,13,'208.90.63.155/32'),(43,4,14,'108.171.130.16/30'),(44,4,15,'108.171.130.32/28'),(45,4,16,'108.171.130.48/28'),(46,4,17,'108.171.130.64/29'),(47,4,18,'108.171.130.24/29'),(48,4,19,'10.3.136.64/27'),(49,4,20,'10.3.136.48/28'),(50,4,21,'10.3.136.32/28'),(51,4,22,'10.3.136.96/29'),(52,4,23,'10.3.136.104/29'),(53,4,24,'10.3.128.0/23'),(54,4,25,'10.3.137.0/24'),(55,4,26,'10.3.136.112/28'),(56,4,27,'10.3.144.0/22'),(57,4,28,NULL),(58,4,29,'10.3.130.0/23'),(59,4,30,'2A00:9600:8000::/56'),(60,4,31,'2A00:9600:8000::/64'),(61,4,32,'2A00:9600:8000:1::/64'),(62,4,33,'2A00:9600:8000:2::/64'),(63,4,34,'2A00:9600:8000:3::/64'),(64,4,35,'2A00:9600:8000:4::/64'),(65,4,36,'2A00:9600:8000:A00::/64'),(66,4,37,'2A00:9600:8000:A01::/64'),(67,4,38,'2A00:9600:8000:A02::/64'),(68,4,39,'2A00:9600:8000:A03::/64'),(69,4,40,'2A00:9600:8000:A04::/64'),(70,4,41,'2A00:9600:8000:A00::/56'),(71,4,42,'2A00:9600:8000:B00::/56'),(72,4,43,'2A00:9600:8400::/56'),(73,4,44,'2A00:9600:8400::/126'),(74,4,45,'2A00:9600:8400:1::/126'),(75,4,46,'2A00:9600:8400:2::/126'),(76,4,47,'2A00:9600:8400:3::/126'),(77,4,48,'2A00:9600:8400:4::/126'),(78,4,49,'2A00:9600:8400:5::/64'),(79,4,50,'2A00:9600:8400:6::/64'),(80,4,51,'2A00:9600:8400:7::/64'),(81,5,1,'10.3.165.0/24'),(82,5,2,'10.3.172.0/28'),(83,5,3,'10.3.168.0/27'),(84,5,4,'10.3.166.0/23'),(85,5,5,NULL),(86,5,6,'10.3.164.0/24'),(87,5,7,'108.171.132.0/30'),(88,5,8,'108.171.132.4/30'),(89,5,9,'108.171.132.8/30'),(90,5,10,'108.171.132.12/30'),(91,5,11,'208.90.63.184/30'),(92,5,12,'208.90.63.156/32'),(93,5,13,'208.90.63.157/32'),(94,5,14,'108.171.132.16/30'),(95,5,15,'108.171.132.32/28'),(96,5,16,'108.171.132.48/28'),(97,5,17,'108.171.132.64/29'),(98,5,18,'108.171.132.24/29'),(99,5,19,'10.3.168.64/27'),(100,5,20,'10.3.168.48/28'),(101,5,21,'10.3.168.32/28'),(102,5,22,'10.3.168.96/29'),(103,5,23,'10.3.168.104/29'),(104,5,24,'10.3.160.0/23'),(105,5,25,'10.3.169.0/24'),(106,5,26,'10.3.168.112/28'),(107,5,27,'10.3.176.0/21'),(108,5,28,NULL),(109,5,29,'10.3.162.0/23'),(110,5,30,'2A00:9600:8020::/56'),(111,5,31,'2A00:9600:8020::/64'),(112,5,32,'2A00:9600:8020:1::/64'),(113,5,33,'2A00:9600:8020:2::/64'),(114,5,34,'2A00:9600:8020:3::/64'),(115,5,35,'2A00:9600:8020:4::/64'),(116,5,36,'2A00:9600:8020:A00::/64'),(117,5,37,'2A00:9600:8020:A01::/64'),(118,5,38,'2A00:9600:8020:A02::/64'),(119,5,39,'2A00:9600:8020:A03::/64'),(120,5,40,'2A00:9600:8020:A04::/64'),(121,5,41,'2A00:9600:8020:B00::/56'),(122,5,42,'2A00:9600:8020:B00::/64'),(123,5,43,'2A00:9600:8420::/56'),(124,5,44,'2A00:9600:8420::/126'),(125,5,45,'2A00:9600:8420:1::/126'),(126,5,46,'2A00:9600:8420:2::/126'),(127,5,47,'2A00:9600:8420:3::/126'),(128,5,48,'2A00:9600:8420:4::/126'),(129,5,49,'2A00:9600:8420:5::/64'),(130,5,50,'2A00:9600:8420:6::/64'),(131,5,51,'2A00:9600:8420:7::/64'),(132,6,1,'10.4.5.0/24'),(133,6,2,NULL),(134,6,3,'10.4.8.0/27'),(135,6,4,'10.4.6.0/23'),(136,6,5,NULL),(137,6,6,'10.4.4.0/24'),(138,6,7,NULL),(139,6,8,NULL),(140,6,9,NULL),(141,6,10,NULL),(142,6,11,NULL),(143,6,12,NULL),(144,6,13,NULL),(145,6,14,NULL),(146,6,15,NULL),(147,6,16,NULL),(148,6,17,NULL),(149,6,18,NULL),(150,6,19,'10.4.8.64/27'),(151,6,20,'10.4.8.48/28'),(152,6,21,'10.4.8.32/28'),(153,6,22,'10.4.8.96/29'),(154,6,23,'10.4.8.104/29'),(155,6,24,'10.4.0.0/23'),(156,6,25,'10.4.9.0/24'),(157,6,26,'10.4.8.112/28'),(158,6,27,NULL),(159,6,28,NULL),(160,6,29,'10.4.2.0/23'),(161,6,30,NULL),(162,6,31,NULL),(163,6,32,NULL),(164,6,33,NULL),(165,6,34,NULL),(166,6,35,NULL),(167,6,36,NULL),(168,6,37,NULL),(169,6,38,NULL),(170,6,39,NULL),(171,6,40,NULL),(172,6,41,NULL),(173,6,42,NULL),(174,6,43,NULL),(175,6,44,NULL),(176,6,45,NULL),(177,6,46,NULL),(178,6,47,NULL),(179,6,48,NULL),(180,6,49,NULL),(181,6,50,NULL),(182,6,51,NULL);
/*!40000 ALTER TABLE `location_ip_range` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location_ip_type`
--
DROP TABLE IF EXISTS `location_ip_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_ip_type` (
`loc_type_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`loc_type_name` varchar(45) DEFAULT NULL,
`loc_type_descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`loc_type_id`),
UNIQUE KEY `loc_type_id_UNIQUE` (`loc_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location_ip_type`
--
LOCK TABLES `location_ip_type` WRITE;
/*!40000 ALTER TABLE `location_ip_type` DISABLE KEYS */;
INSERT INTO `location_ip_type` VALUES (1,'priv_mgmt_ipv4','Management Network'),(2,'priv_lbsync_ipv4','LB Sync'),(3,'priv_fw_vpn_inside_all_ipv4','Network for VPN Interface of all Firewall Contexts and Inside interface of VPN routers'),(4,'priv_vmware_ipv4','Isolated NFS Network for VMware'),(5,'reserved_priv_fw_dmzad_infra_ipv4','[DEPR] ------ Private FW DMZ_AD interface network IPv4 range | Network between Scansafe ICS VRF on Core Switches and inside interface of Scansafe ICS Firewall Context'),(6,'priv_mon_ipv4','Common Services and Monitoring'),(7,'pub_brd_po1_ipv4','RTR-BRD-01 (Po1) to SW-CORE-01 (Po1)'),(8,'pub_brd_po2_ipv4','RTR-BRD-01 (Po2) to SW-CORE-02 (Po2)'),(9,'pub_brd_po3_ipv4','RTR-BRD-02 (Po3) to SW-CORE-01 (Po3)'),(10,'pub_brd_po4_ipv4','RTR-BRD-02 (Po4) to SW-CORE-02 (Po4)'),(11,'pub_brd_po5_ipv4','RTR-BRD-01 (Po5) to RTR-BRD-02 (Po5)'),(12,'pub_brd_1_lo0_ipv4','RTR-BRD-01 (lo0) for OSPF router-id'),(13,'pub_brd_2_lo0_ipv4','RTR-BRD-02 (lo0) for OSPF router-id'),(14,'pub_core_l3_ipv4','L3 X-connect between core switches - GRT'),(15,'pub_fw_outside_all_ipv4','VLAN between Core Switches GRT and Outside interface of all Firewall Contexts'),(16,'pub_vpn_po13_4_ipv4','VLAN between Core Switches GRT and Outside interface of VPN router'),(17,'pub_fw_nat_obj_ipv4','For NAT use in Firewall Infra Context'),(18,'pub_routerid_ipv4','Loopbacks on edge routers (Lo1) and core switches GRT'),(19,'priv_routerid_ipv4','Loopback / Router ID IPs'),(20,'priv_core_inside_ss_ipv4','Network between Scansafe ICS VRF on Core Switches and inside interface of Scansafe ICS Firewall Context.'),(21,'priv_core_inside_infra_ipv4','Network between Infrastructure ICS VRF on Core Switches and inside interface of Infrastructure ICS Firewall Context'),(22,'priv_core_dmzad_infra_ipv4','Network between Infrastructure AD VRF on Core Switches and dmz_ad interface of Infrastructure ICS Firewall Context'),(23,'priv_core_dmzcomsvc_infra_ipv4','Network between Infrastructure COMSVC VRF on Core Switches and dmz_comsvc interface of Infrastructure ICS Firewall Context'),(24,'priv_ucs_ipv4','UCS (KVM + Blades)'),(25,'priv_nfsmon_ipv4','Isolated NFS Network for ComSVCs and Misc VMs'),(26,'priv_sec_ipv4','Security Network'),(27,'priv_ss_mps_ipv4','ScanSafe - Cloud Web Security'),(28,'priv_vmotion_ipv4','Isolated VMotion Network'),(29,'priv_vcenter_ipv4','Hypervisors, Vcenter, MSSQL etc.'),(30,'priv_dc_core_vlans_ipv6','Private Data Center Core VLANs'),(31,'priv_fw_vpn_inside_all_ipv6','VPN interface of FW Contexts and Inside Interface of VPN routers'),(32,'priv_core_inside_infra_ipv6','Network between ICS VRF on Core Switches and Inside Interface of ICS FW Infra Context'),(33,'priv_core_inside_ss_ipv6','Network between ICS VRF on Core Switches and Inside Interface of ICS FW ScanSafe Context'),(34,'priv_routerid_ipv6','Loopback / Router ID IPs'),(35,'priv_local_ipv6','Local use IPv6 range'),(36,'priv_ucs_ipv6','UCS (KVM+Blades)'),(37,'priv_vcenter_ipv6','Hypervisors, vCenter, AD, MSSQL etc.'),(38,'priv_mon_ipv6','Common Services and Monitoring'),(39,'priv_mgmt_ipv6','Management Network'),(40,'priv_vmotion_ipv6','vMotion VLAN'),(41,'priv_tenant_vlans_ipv6','Infrastructure ICS / Tenant VLANs'),(42,'priv_ss_mps_ipv6','ScanSafe - Cloud Web Security '),(43,'pub_dc_core_vlans_ipv6','Data Center Core VLANs'),(44,'pub_brd_po1_ipv6','RTR-BRD-01 (Po1) to SW-CORE-01 (Po1)'),(45,'pub_brd_po2_ipv6','RTR-BRD-01 (Po2) to SW-CORE-02 (Po2)'),(46,'pub_brd_po3_ipv6','RTR-BRD-02 (Po3) to SW-CORE-01 (Po3)'),(47,'pub_brd_po4_ipv6','RTR-BRD-02 (Po4) to SW-CORE-02 (Po4)'),(48,'pub_brd_po5_ipv6','RTR-BRD-01 (Po5) to RTR-BRD-02 (Po5)'),(49,'pub_fw_outside_all_ipv6','VLAN between Core Switches GRT and Outside Interface of all FW Contexts'),(50,'pub_vpn_po13_4_ipv6','VLAN between Core Switches GRT and Outside Interface of VPN routers'),(51,'pub_routerid_ipv6','Loopback on edge routers (Lo1) and core switches GRT Loopbacks / Router IDs');
/*!40000 ALTER TABLE `location_ip_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location_isp_data`
--
DROP TABLE IF EXISTS `location_isp_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_isp_data` (
`loc_isp_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`loc_id` int(11) unsigned DEFAULT NULL,
`isp_as` varchar(45) DEFAULT NULL,
`isp_num` varchar(45) DEFAULT NULL,
`isp_name` varchar(45) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`loc_isp_id`),
UNIQUE KEY `loc_isp_id_UNIQUE` (`loc_isp_id`),
KEY `location_id_idx` (`loc_id`),
KEY `location_id_isp_idfx` (`loc_id`),
CONSTRAINT `location_id_isp` FOREIGN KEY (`loc_id`) REFERENCES `location` (`loc_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location_isp_data`
--
LOCK TABLES `location_isp_data` WRITE;
/*!40000 ALTER TABLE `location_isp_data` DISABLE KEYS */;
INSERT INTO `location_isp_data` VALUES (1,3,'4771','isp_1','telecom-nz','AKL1 Gen-i / Telecom New Zeland'),(2,4,'6461','isp_1','zayo','SCS2 Zayo'),(3,4,'3356','isp_2','level3','SCS2 Level3'),(4,5,'6461','isp_1','zayo','DAL1 Zayo'),(5,5,'3356','isp_2','level3','DAL Level3'),(6,6,'17819','isp_1','equinix','SYD3 Equinix'),(7,6,'17819','isp_2','equinix','SYD3 Equinix');
/*!40000 ALTER TABLE `location_isp_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location_tunnel_data`
--
DROP TABLE IF EXISTS `location_tunnel_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location_tunnel_data` (
`loc_tunnel_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`loc_id` int(10) unsigned DEFAULT NULL,
`tunnel_int` varchar(45) DEFAULT NULL,
`tunnel_num` varchar(45) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`loc_tunnel_id`),
UNIQUE KEY `loc_tunnel_id_UNIQUE` (`loc_tunnel_id`),
KEY `location_id_tunnel_idx` (`loc_id`),
CONSTRAINT `location_id_tunnel` FOREIGN KEY (`loc_id`) REFERENCES `location` (`loc_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location_tunnel_data`
--
LOCK TABLES `location_tunnel_data` WRITE;
/*!40000 ALTER TABLE `location_tunnel_data` DISABLE KEYS */;
INSERT INTO `location_tunnel_data` VALUES (1,3,'tun_1','1','AKL1 Tunnel 1'),(2,3,'tun_2','2','AKL1 Tunnel 2'),(3,4,'tun_1','1','SCS2 Tunnel 100'),(4,4,'tun_2','100','SCS2 Tunnel 1'),(5,5,'tun_1','2','DAL1 Tunnel 100'),(6,5,'tun_2','100','DAL1 Tunnel 2'),(7,6,'tun_1',NULL,'SYD3'),(8,6,'tun_2',NULL,'SYD3');
/*!40000 ALTER TABLE `location_tunnel_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testcase_data`
--
DROP TABLE IF EXISTS `testcase_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testcase_data` (
`tc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`grp_id` int(11) unsigned DEFAULT NULL,
`in_group` tinyint(1) NOT NULL,
`dev_name` varchar(255) DEFAULT NULL,
`setup_id` int(11) unsigned DEFAULT NULL,
`type_id` int(11) unsigned NOT NULL DEFAULT '1',
`input_data` text,
`output_data` text,
`tims_id` varchar(45) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`tc_id`),
UNIQUE KEY `tc_id_UNIQUE` (`tc_id`),
KEY `group_id_idx` (`grp_id`),
KEY `setup_id_idx` (`setup_id`),
KEY `type_id_idx` (`type_id`),
CONSTRAINT `group_id` FOREIGN KEY (`grp_id`) REFERENCES `device_group` (`grp_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `setup_id` FOREIGN KEY (`setup_id`) REFERENCES `testcase_setup` (`setup_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `type_id` FOREIGN KEY (`type_id`) REFERENCES `testcase_type` (`type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=9729 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testcase_data`
--
LOCK TABLES `testcase_data` WRITE;
/*!40000 ALTER TABLE `testcase_data` DISABLE KEYS */;
INSERT INTO `testcase_data` VALUES (9119,2,0,'sw-core-01',NULL,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.11/24#\"','Tvh696157c','SW-CORE-01: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (ADMIN-VDC)'),(9120,2,0,'sw-core-01',11,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.12/24#\"','Tvh696158c','SW-CORE-01: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC2-VDC)'),(9121,2,0,'sw-core-01',11,1,'\"show interface Lo2 | include \\\"Description|Internet Address\\\"\"','[\"Lo ss-main VRF\", \"#.*<priv_routerid_ipv4>\\\\.67/32#\"]','Tvh696161c','SW-CORE-01: Loopback: Verify that core switch \"Lo ss-main VRF\" port has configured IP according documentation (VDC2-VDC)'),(9122,2,0,'sw-core-01',11,1,'\"show interface Lo1 | include \\\"Description|Internet Address\\\"\"','[\"Lo infra-main VRF\", \"#.*<priv_routerid_ipv4>\\\\.66/32#\"]','Tvh696162c','SW-CORE-01: Loopback: Verify that core switch \"Lo infra-main VRF\" port has configured IP according documentation (VDC2-VDC)'),(9123,2,0,'sw-core-01',11,1,'\"show int vlan11 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_inside_ss_ipv4>\\\\.50/28#\"','Tvh696163c','SW-CORE-01: ss <-> int: Verify that core switch \"vlan11\" port has configured IP according documentation (VDC2-VDC)'),(9124,2,0,'sw-core-01',11,1,'\"show interface vlan6 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_inside_infra_ipv4>\\\\.34/28#\"','Tvh696164c','SW-CORE-01: infra <-> int: Verify that core switch \"vlan6\" port has configured IP according documentation (VDC2-VDC)'),(9125,2,0,'sw-core-01',11,1,'\"show interface vlan83 | include \\\"Internet Address\\\"\"','\"#.*<priv_mon_ipv4>\\\\.2/24#\"','Tvh696165c','SW-CORE-01: Monitoring: Verify that core switch \"vlan83\" port has configured IP according documentation (VDC2-VDC)'),(9126,2,0,'sw-core-01',11,1,'\"show interface vlan80 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.2/24#\"','Tvh696166c','SW-CORE-01: Management: Verify that core switch \"vlan80\" port has configured IP according documentation (VDC2-VDC)'),(9127,2,0,'sw-core-02',NULL,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.13/24#\"','Tvh715734c','SW-CORE-02: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (ADMIN-VDC)'),(9128,2,0,'sw-core-02',11,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.14/24#\"','Tvh715735c','SW-CORE-02: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC2-VDC)'),(9129,2,0,'sw-core-02',11,1,'\"show interface vlan80 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.3/24#\"','Tvh715736c','SW-CORE-02: Management: Verify that core switch \"vlan80\" port has configured IP according documentation (VDC2-VDC)'),(9130,2,0,'sw-core-02',11,1,'\"show interface Lo2 | include \\\"Description|Internet Address\\\"\"','[\"Lo ss-main VRF\", \"#.*<priv_routerid_ipv4>\\\\.69/32#\"]','Tvh715737c','SW-CORE-02: Loopback: Verify that core switch \"Lo ss-main VRF\" port has configured IP according documentation (VDC2-VDC)'),(9131,2,0,'sw-core-02',11,1,'\"show interface Lo1 | include \\\"Description|Internet Address\\\"\"','[\"Lo infra-main VRF\", \"#.*<priv_routerid_ipv4>\\\\.68/32#\"]','Tvh715738c','SW-CORE-02: Loopback: Verify that core switch \"Lo infra-main VRF\" port has configured IP according documentation (VDC2-VDC)'),(9132,2,0,'sw-core-02',11,1,'\"show int vlan11 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_inside_ss_ipv4>\\\\.51/28#\"','Tvh715739c','SW-CORE-02: ss <-> int: Verify that core switch \"vlan11\" port has configured IP according documentation (VDC2-VDC)'),(9133,2,0,'sw-core-02',11,1,'\"show interface vlan6 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_inside_infra_ipv4>\\\\.35/28#\"','Tvh715740c','SW-CORE-02: infra <-> int: Verify that core switch \"vlan6\" port has configured IP according documentation (VDC2-VDC)'),(9134,2,0,'sw-core-02',11,1,'\"show interface vlan83 | include \\\"Internet Address\\\"\"','\"#.*<priv_mon_ipv4>\\\\.3/24#\"','Tvh715741c','SW-CORE-02: Monitoring: Verify that core switch \"vlan83\" port has configured IP according documentation (VDC2-VDC)'),(9135,2,1,NULL,11,1,'\"show hsrp interface vlan80 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.1#\"','Tvh715742c','HSRP: Verify that core switch HSRP \"vlan80\" port has configured IP according documentation (VDC2-VDC)'),(9136,2,1,NULL,11,1,'\"show hsrp interface vlan83 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_mon_ipv4>\\\\.1#\"','Tvh715743c','HSRP: Verify that core switch HSRP \"vlan83\" port has configured IP according documentation (VDC2-VDC)'),(9137,2,1,NULL,11,1,'\"show hsrp interface vlan86 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.129#\"','Tvh715747c','HSRP: Verify that core switch HSRP \"vlan86\" port has configured IP according documentation (VDC2-VDC)'),(9138,2,0,'sw-core-01',11,1,'\"show interface vlan86 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.130/25#\"','Tvh715748c','SW-CORE-01: Monitoring: Verify that core switch \"vlan86\" port has configured IP according documentation (VDC2-VDC)'),(9139,2,0,'sw-core-02',11,1,'\"show interface vlan86 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.131/25#\"','Tvh715749c','SW-CORE-02: Monitoring: Verify that core switch \"vlan86\" port has configured IP according documentation (VDC2-VDC)'),(9140,2,1,NULL,11,1,'\"show hsrp interface vlan87 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_nfsmon_ipv4>\\\\.1#\"','Tvh715750c','HSRP: Verify that core switch HSRP \"vlan87\" port has configured IP according documentation (VDC2-VDC)'),(9141,2,0,'sw-core-01',11,1,'\"show run int vlan87 | include \\\"ip address\\\"\"','\"#.*<priv_nfsmon_ipv4>\\\\.2/24#\"','Tvh715751c','SW-CORE-01: Monitoring: Verify that core switch \"vlan87\" port has configured IP according documentation (VDC2-VDC)'),(9142,2,0,'sw-core-02',11,1,'\"show interface vlan87 | include \\\"Internet Address\\\" | cut -b 56-\"','\"#.*<priv_nfsmon_ipv4>\\\\.3/24#\"','Tvh715752c','SW-CORE-02: Monitoring: Verify that core switch \"vlan87\" port has configured IP according documentation (VDC2-VDC)'),(9143,2,1,NULL,11,1,'\"show hsrp interface vlan88 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_sec_ipv4>\\\\.113#\"','Tvh715754c','HSRP: Verify that core switch HSRP \"vlan88\" port has configured IP according documentation (VDC2-VDC)'),(9144,2,0,'sw-core-01',11,1,'\"show interface vlan88 | include \\\"Internet Address\\\"\"','\"#.*<priv_sec_ipv4>\\\\.114/28#\"','Tvh715755c','SW-CORE-01: Monitoring: Verify that core switch \"vlan88\" port has configured IP according documentation (VDC2-VDC)'),(9145,2,0,'sw-core-02',11,1,'\"show interface vlan88 | include \\\"Internet Address\\\"\"','\"#.*<priv_sec_ipv4>\\\\.115/28#\"','Tvh715756c','SW-CORE-02: Monitoring: Verify that core switch \"vlan88\" port has configured IP according documentation (VDC2-VDC)'),(9146,2,0,'sw-core-01',11,1,'\"show int vlan14 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.97/29#\"','Tvh715777c','SW-CORE-01: Verify that core switch \"vlan14\" port has configured IP according documentation (VDC2-VDC)'),(9147,2,0,'sw-core-02',11,1,'\"show int vlan14 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.98/29#\"','Tvh715778c','SW-CORE-02: Verify that core switch \"vlan14\" port has configured IP according documentation (VDC2-VDC)'),(9148,2,0,'sw-core-01',11,1,'\"show int vlan15 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.105/29#\"','Tvh715780c','SW-CORE-01: Verify that core switch \"vlan15\" port has configured IP according documentation (VDC2-VDC)'),(9149,2,0,'sw-core-02',11,1,'\"show int vlan15 | include \\\"Internet Address\\\"\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.106/29#\"','Tvh715781c','SW-CORE-02: Verify that core switch \"vlan15\" port has configured IP according documentation (VDC2-VDC)'),(9150,2,1,NULL,11,1,'\"show hsrp interface vlan150 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_ss_mps_ipv4>\\\\.1#\"','Tvh753585c','HSRP: Verify that core switch HSRP \"vlan150\" port has configured IP according documentation (VDC2-VDC)'),(9151,2,0,'sw-core-01',11,1,'\"show interface vlan150 | include \\\"Internet Address\\\"\"','\"#.*<priv_ss_mps_ipv4>\\\\.2/22#\"','Tvh753586c','SW-CORE-01: Monitoring: Verify that core switch \"vlan150\" port has configured IP according documentation (VDC2-VDC)'),(9152,2,0,'sw-core-02',11,1,'\"show interface vlan150 | include \\\"Internet Address\\\"\"','\"#.*<priv_ss_mps_ipv4>\\\\.3/22#\"','Tvh753587c','SW-CORE-02: Monitoring: Verify that core switch \"vlan150\" port has configured IP according documentation (VDC2-VDC)'),(9153,2,1,NULL,11,1,'\"show hsrp interface vlan81 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_ucs_ipv4>\\\\.1#\"','Tvh755193c','HSRP: Verify that core switch HSRP \"vlan81\" port has configured IP according documentation (VDC2-VDC)'),(9154,2,0,'sw-core-01',11,1,'\"show interface vlan81 | include \\\"Internet Address\\\"\"','\"#.*<priv_ucs_ipv4>\\\\.2/23#\"','Tvh755194c','SW-CORE-01: Management: Verify that core switch \"vlan81\" port has configured IP according documentation (VDC2-VDC)'),(9155,2,0,'sw-core-02',11,1,'\"show interface vlan81 | include \\\"Internet Address\\\"\"','\"#.*<priv_ucs_ipv4>\\\\.3/23#\"','Tvh755195c','SW-CORE-02: Management: Verify that core switch \"vlan81\" port has configured IP according documentation (VDC2-VDC)'),(9156,2,1,NULL,11,1,'\"show hsrp interface vlan82 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_vcenter_ipv4>\\\\.1#\"','Tvh755196c','HSRP: Verify that core switch HSRP \"vlan82\" port has configured IP according documentation (VDC2-VDC)'),(9157,2,0,'sw-core-01',11,1,'\"show interface vlan82 | include \\\"Internet Address\\\"\"','\"#.*<priv_vcenter_ipv4>\\\\.2/23#\"','Tvh755197c','SW-CORE-01: Management: Verify that core switch \"vlan82\" port has configured IP according documentation (VDC2-VDC)'),(9158,2,0,'sw-core-02',11,1,'\"show interface vlan82 | include \\\"Internet Address\\\"\"','\"#.*<priv_vcenter_ipv4>\\\\.3/23#\"','Tvh755198c','SW-CORE-02: Management: Verify that core switch \"vlan82\" port has configured IP according documentation (VDC2-VDC)'),(9159,2,1,NULL,11,1,'\"show hsrp interface vlan84 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<priv_vmware_ipv4>\\\\.1#\"','Tvh755199c','HSRP: Verify that core switch HSRP \"vlan84\" port has configured IP according documentation (VDC2-VDC)'),(9160,2,0,'sw-core-01',11,1,'\"show interface vlan84 | include \\\"Internet Address\\\"\"','\"#.*<priv_vmware_ipv4>\\\\.2/23#\"','Tvh755200c','SW-CORE-01: Management: Verify that core switch \"vlan84\" port has configured IP according documentation (VDC2-VDC)'),(9161,2,0,'sw-core-02',11,1,'\"show interface vlan84 | include \\\"Internet Address\\\"\"','\"#.*<priv_vmware_ipv4>\\\\.3/23#\"','Tvh755201c','SW-CORE-02: Management: Verify that core switch \"vlan84\" port has configured IP according documentation (VDC2-VDC)'),(9162,2,1,NULL,11,1,'\"sh run | section \\\"vrf context infra-dmz-ad\\\"\"','[\"vrf context infra-dmz-ad\", \"ip route 0.0.0.0/0 <priv_core_dmzad_infra_ipv4>.99\"]','Tvh758165c','VRF: Verify that \'infra-dmz-ad\' vrf context is configured according documentation (VDC2-VDC)'),(9163,2,1,NULL,11,1,'\"sh run | section \\\"vrf context infra-dmz-comsvc\\\"\"','[\"vrf context infra-dmz-comsvc\", \"ip route 0.0.0.0/0 <priv_core_dmzcomsvc_infra_ipv4>.107\"]','Tvh758166c','VRF: Verify that \'infra-dmz-comsvc\' vrf context is configured according documentation (VDC2-VDC)'),(9164,2,1,NULL,11,1,'\"sh run | section \\\"vrf context management\\\"\"','[\"vrf context management\", \"ip route 0.0.0.0/0 <priv_mgmt_ipv4>.1\"]','Tvh758167c','VRF: Verify that \'management\' vrf context is configured according documentation (VDC2-VDC)'),(9165,2,1,NULL,11,1,'\"sh run | section \\\"vrf context infra-main\\\"\"','[\"vrf context infra-main\", \"ip route 0.0.0.0/0 <priv_core_inside_infra_ipv4>.36\"]','Tvh758168c','VRF: Verify that \'infra-main\' vrf context is configured according documentation (VDC2-VDC)'),(9166,2,1,NULL,11,1,'\"sh run | section \\\"vrf context ss-main\\\"\"','[\"vrf context ss-main\", \"ip route 0.0.0.0/0 <priv_core_inside_ss_ipv4>.52\"]','Tvh758176c','VRF: Verify that \'ss-main\' vrf context is configured according documentation (VDC2-VDC)'),(9167,2,1,NULL,11,1,'\"sh run | section \\\"vrf context management\\\"\"','[\"vrf context management\", \"ip route 0.0.0.0/0 <priv_mgmt_ipv4>.1\"]','Tvh758278c','VRF: Verify that \'management\' vrf context is configured according documentation (ADMIN-VDC)'),(9168,2,0,'sw-core-01',19,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.249/24#\"','Tvh758357c','SW-CORE-01: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC3-VDC)'),(9169,2,0,'sw-core-02',19,1,'\"show interface mgmt0 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.250/24#\"','Tvh758358c','SW-CORE-02: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC3-VDC)'),(9170,2,1,NULL,19,1,'\"sh run | section \\\"vrf context management\\\"\"','[\"vrf context management\", \"ip route 0.0.0.0/0 <priv_mgmt_ipv4>.1\"]','Tvh758360c','VRF: Verify that \'management\' vrf context is configured according documentation (VDC3-VDC)'),(9171,2,0,'sw-core-01',NULL,1,'\"sh run interface Mgmt0 | include ipv6\"','\"#.*<priv_mgmt_ipv6>::11/64#\"','Tvh756836c','SW-CORE-01: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (ADMIN-VDC) IPv6'),(9172,2,0,'sw-core-01',11,1,'\"sh run interface Mgmt0 | include ipv6\"','\"#.*<priv_mgmt_ipv6>::12/64#\"','Tvh756838c','SW-CORE-01: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9173,2,0,'sw-core-02',NULL,1,'\"sh run interface Mgmt0 | include ipv6\"','\"#.*<priv_mgmt_ipv6>::13/64#\"','Tvh756839c','SW-CORE-02: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (ADMIN-VDC) IPv6'),(9174,2,0,'sw-core-02',11,1,'\"sh run interface Mgmt0 | include ipv6\"','\"#.*<priv_mgmt_ipv6>::14/64#\"','Tvh756840c','SW-CORE-02: Management: Verify that core switch \"mgmt0\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9175,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan80\\\" | section \\\"hsrp 61\\\"\"','\"#.*ip <priv_mgmt_ipv6>::1#\"','Tvh756841c','HSRP: Verify that core switch HSRP \"vlan80\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9176,2,0,'sw-core-01',11,1,'\"sh run interface Vlan80 | section \\\"ipv6 address\\\"\"','\"#.*<priv_mgmt_ipv6>::2/64#\"','Tvh756842c','SW-CORE-01: Management: Verify that core switch \"vlan80\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9177,2,0,'sw-core-02',11,1,'\"sh run interface Vlan80 | section \\\"ipv6 address\\\"\"','\"#.*<priv_mgmt_ipv6>::3/64#\"','Tvh756843c','SW-CORE-02: Management: Verify that core switch \"vlan80\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9178,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan83\\\" | section \\\"hsrp 61\\\"\"','\"#.*<priv_mon_ipv6>::1#\"','Tvh756844c','HSRP: Verify that core switch HSRP \"vlan83\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9179,2,0,'sw-core-01',11,1,'\"sh run interface Vlan83 | section \\\"ipv6 address\\\"\"','\"#.*<priv_mon_ipv6>::2/64#\"','Tvh756845c','SW-CORE-01: Monitoring: Verify that core switch \"vlan83\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9180,2,0,'sw-core-02',11,1,'\"sh run interface Vlan83 | section \\\"ipv6 address\\\"\"','\"#.*<priv_mon_ipv6>::3/64#\"','Tvh756846c','SW-CORE-02: Monitoring: Verify that core switch \"vlan83\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9181,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan150\\\" | section \\\"hsrp 61\\\"\"','\"#.*<priv_ss_mps_ipv6>::1#\"','Tvh757091c','HSRP: Verify that core switch HSRP \"vlan150\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9182,2,0,'sw-core-01',11,1,'\"sh run interface Vlan150 | section \\\"ipv6 address\\\"\"','\"#.*<priv_ss_mps_ipv6>::2/64#\"','Tvh757092c','SW-CORE-01: Monitoring: Verify that core switch \"vlan150\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9183,2,0,'sw-core-02',11,1,'\"sh run interface Vlan150 | section \\\"ipv6 address\\\"\"','\"#.*<priv_ss_mps_ipv6>::3/64#\"','Tvh757093c','SW-CORE-02: Monitoring: Verify that core switch \"vlan150\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9184,2,0,'sw-core-01',11,1,'\"sh run interface Lo1 | section \\\"ipv6 address\\\"\"','\"#.*<priv_routerid_ipv6>::3/64#\"','Tvh757098c','SW-CORE-01: Loopback: Verify that core switch \"Lo infra-main VRF\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9185,2,0,'sw-core-01',11,1,'\"sh run interface Lo2 | section \\\"ipv6 address\\\"\"','\"#.*<priv_routerid_ipv6>::4/64#\"','Tvh757099c','SW-CORE-01: Loopback: Verify that core switch \"Lo ss-main VRF\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9186,2,0,'sw-core-02',11,1,'\"sh run interface Lo1 | section \\\"ipv6 address\\\"\"','\"#.*<priv_routerid_ipv6>::5/64#\"','Tvh757100c','SW-CORE-02: Loopback: Verify that core switch \"Lo infra-main VRF\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9187,2,0,'sw-core-02',11,1,'\"sh run interface Lo2 | section \\\"ipv6 address\\\"\"','\"#.*<priv_routerid_ipv6>::6/64#\"','Tvh757101c','SW-CORE-02: Loopback: Verify that core switch \"Lo ss-main VRF\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9188,2,0,'sw-core-01',11,1,'\"sh run interface Vlan6 | section \\\"ipv6 address\\\"\"','\"#.*<priv_core_inside_infra_ipv6>::2/64#\"','Tvh757103c','SW-CORE-01: infra <-> int: Verify that core switch \"vlan6\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9189,2,0,'sw-core-01',11,1,'\"sh run interface Vlan11 | section \\\"ipv6 address\\\"\"','\"#.*<priv_core_inside_ss_ipv6>::2/64#\"','Tvh757104c','SW-CORE-01: ss <-> int: Verify that core switch \"vlan11\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9190,2,0,'sw-core-02',11,1,'\"sh run interface Vlan6 | section \\\"ipv6 address\\\"\"','\"#.*<priv_core_inside_infra_ipv6>::3/64#\"','Tvh757105c','SW-CORE-02: infra <-> int: Verify that core switch \"vlan6\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9191,2,0,'sw-core-02',11,1,'\"sh run interface Vlan11 | section \\\"ipv6 address\\\"\"','\"#.*<priv_core_inside_ss_ipv6>::3/64#\"','Tvh757106c','SW-CORE-02: ss <-> int: Verify that core switch \"vlan11\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9192,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan81\\\" | section \\\"hsrp 61\\\"\"','\"#.*<priv_ucs_ipv6>::1#\"','Tvh757107c','HSRP: Verify that core switch HSRP \"vlan81\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9193,2,0,'sw-core-01',11,1,'\"sh run interface Vlan81 | section \\\"ipv6 address\\\"\"','\"#.*<priv_ucs_ipv6>::2/64#\"','Tvh757108c','SW-CORE-01: Management: Verify that core switch \"vlan81\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9194,2,0,'sw-core-02',11,1,'\"sh run interface Vlan81 | section \\\"ipv6 address\\\"\"','\"#.*<priv_ucs_ipv6>::3/64#\"','Tvh757109c','SW-CORE-02: Management: Verify that core switch \"vlan81\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9195,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan82\\\" | section \\\"hsrp 61\\\"\"','\"#.*<priv_vcenter_ipv6>::1#\"','Tvh757110c','HSRP: Verify that core switch HSRP \"vlan82\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9196,2,0,'sw-core-01',11,1,'\"sh run interface Vlan82 | section \\\"ipv6 address\\\"\"','\"#.*<priv_vcenter_ipv6>::2/64#\"','Tvh757111c','SW-CORE-01: Management: Verify that core switch \"vlan82\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9197,2,0,'sw-core-02',11,1,'\"sh run interface Vlan82 | section \\\"ipv6 address\\\"\"','\"#.*<priv_vcenter_ipv6>::3/64#\"','Tvh757112c','SW-CORE-02: Management: Verify that core switch \"vlan82\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9198,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan84\\\" | section \\\"hsrp 61\\\"\"','\"#.*<priv_vmotion_ipv6>::1#\"','Tvh757113c','HSRP: Verify that core switch HSRP \"vlan84\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9199,2,0,'sw-core-01',11,1,'\"sh run interface Vlan84 | section \\\"ipv6 address\\\"\"','\"#.*<priv_vmotion_ipv6>::2/64#\"','Tvh757114c','SW-CORE-01: Management: Verify that core switch \"vlan84\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9200,2,0,'sw-core-02',11,1,'\"sh run interface Vlan84 | section \\\"ipv6 address\\\"\"','\"#.*<priv_vmotion_ipv6>::3/64#\"','Tvh757115c','SW-CORE-02: Management: Verify that core switch \"vlan84\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9201,2,1,NULL,11,1,'\"sh run | section \\\"vrf context infra-main\\\"\"','[\"vrf context infra-main\", \"ipv6 route 0::/0 <priv_core_inside_infra_ipv6>::4\"]','Tvh758178c','VRF: Verify that \'infra-main\' vrf context is configured according documentation (VDC2-VDC) IPv6'),(9202,2,1,NULL,11,1,'\"sh run | section \\\"vrf context ss-main\\\"\"','[\"vrf context ss-main\", \"ipv6 route 0::/0 <priv_core_inside_ss_ipv6>::4\"]','Tvh758179c','VRF: Verify that \'ss-main\' vrf context is configured according documentation (VDC2-VDC) IPv6'),(9203,5,0,'fw-brd-01',16,1,'\"show interface mgmt | include IP address\"','\"#.*<priv_mgmt_ipv4>\\\\.31#\"','Tvh715762c','FW-BRD-01: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context)'),(9204,5,0,'fw-brd-02',16,1,'\"show interface mgmt | include IP address\"','\"#.*<priv_mgmt_ipv4>\\\\.32#\"','Tvh715764c','FW-BRD-02: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context)'),(9205,5,0,'fw-brd-01',12,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.52#\"','Tvh715765c','FW-BRD-01: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context)'),(9206,5,0,'fw-brd-02',12,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.53#\"','Tvh715766c','FW-BRD-01: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context)'),(9207,5,0,'fw-brd-01',13,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.36#\"','Tvh715767c','FW-BRD-01: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context)'),(9208,5,0,'fw-brd-02',13,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.37#\"','Tvh715768c','FW-BRD-02: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context)'),(9209,5,0,'fw-brd-01',13,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.4#\"','Tvh715769c','FW-BRD-01: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context)'),(9210,5,0,'fw-brd-01',12,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.6#\"','Tvh715770c','FW-BRD-01: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context)'),(9211,5,0,'fw-brd-02',13,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.5#\"','Tvh715771c','FW-BRD-02: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context)'),(9212,5,0,'fw-brd-02',12,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.7#\"','Tvh715772c','FW-BRD-01: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context)'),(9213,5,0,'fw-brd-01',13,1,'\"show interface dmz_comsvc | include IP address\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.107#\"','Tvh715773c','FW-BRD-01: Verify that firewall \"dmz_comsvc\" port has configured IP according documentation (INFRA context)'),(9214,5,0,'fw-brd-02',13,1,'\"show interface dmz_comsvc | include IP address\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.108#\"','Tvh715774c','FW-BRD-02: Verify that firewall \"dmz_comsvc\" port has configured IP according documentation (INFRA context)'),(9215,5,0,'fw-brd-01',13,1,'\"show interface dmz_ad | include IP address\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.99#\"','Tvh715775c','FW-BRD-01: Verify that firewall \"dmz_ad\" port has configured IP according documentation (INFRA context)'),(9216,5,0,'fw-brd-02',13,1,'\"show interface dmz_ad | include IP address\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.100#\"','Tvh715776c','FW-BRD-02: Verify that firewall \"dmz_ad\" port has configured IP according documentation (INFRA context)'),(9217,5,0,'fw-brd-03',16,1,'\"show interface mgmt | include IP address\"','\"#.*<priv_mgmt_ipv4>\\\\.241#\"','Tvh754958c','FW-BRD-03: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context)'),(9218,5,0,'fw-brd-04',16,1,'\"show interface mgmt | include IP address\"','\"#.*<priv_mgmt_ipv4>\\\\.242#\"','Tvh754960c','FW-BRD-04: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context)'),(9219,5,0,'fw-brd-03',12,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.52#\"','Tvh754962c','FW-BRD-03: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context)'),(9220,5,0,'fw-brd-04',12,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.52#\"','Tvh754963c','FW-BRD-04: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context)'),(9221,5,0,'fw-brd-03',13,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.36#\"','Tvh754964c','FW-BRD-03: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context)'),(9222,5,0,'fw-brd-04',13,1,'\"show interface inside | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.36#\"','Tvh754965c','FW-BRD-04: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context)'),(9223,5,0,'fw-brd-03',12,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.6#\"','Tvh754966c','FW-BRD-03: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context)'),(9224,5,0,'fw-brd-04',12,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.6#\"','Tvh754967c','FW-BRD-04: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context)'),(9225,5,0,'fw-brd-03',13,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.4#\"','Tvh754968c','FW-BRD-03: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context)'),(9226,5,0,'fw-brd-04',13,1,'\"show interface vpn | include IP address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.4#\"','Tvh754969c','FW-BRD-04: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context)'),(9227,5,0,'fw-brd-03',13,1,'\"show interface dmz_comsvc | include IP address\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.107#\"','Tvh754970c','FW-BRD-03: Verify that firewall \"dmz_comsvc\" port has configured IP according documentation (INFRA context)'),(9228,5,0,'fw-brd-04',13,1,'\"show interface dmz_comsvc | include IP address\"','\"#.*<priv_core_dmzcomsvc_infra_ipv4>\\\\.107#\"','Tvh754972c','FW-BRD-04: Verify that firewall \"dmz_comsvc\" port has configured IP according documentation (INFRA context)'),(9229,5,0,'fw-brd-03',13,1,'\"show interface dmz_ad | include IP address\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.99#\"','Tvh754973c','FW-BRD-03: Verify that firewall \"dmz_ad\" port has configured IP according documentation (INFRA context)'),(9230,5,0,'fw-brd-04',13,1,'\"show interface dmz_ad | include IP address\"','\"#.*<priv_core_dmzad_infra_ipv4>\\\\.99#\"','Tvh754974c','FW-BRD-04: Verify that firewall \"dmz_ad\" port has configured IP according documentation (INFRA context)'),(9231,5,0,'fw-brd-03',16,1,'\"sh run interface Management0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::241/64#\"','Tvh757222c','FW-BRD-03: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context) IPv6'),(9232,5,0,'fw-brd-04',16,1,'\"sh run interface Management0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::241/64#\"','Tvh757223c','FW-BRD-04: Management: Verify that firewall \"mgmt\" port has configured IP according documentation (ADMIN context) IPv6'),(9233,5,0,'fw-brd-03',12,1,'\"sh run interface inside | inc ipv6\"','\"#.*<priv_core_inside_ss_ipv6>::4/64#\"','Tvh757224c','FW-BRD-03: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9234,5,0,'fw-brd-04',12,1,'\"sh run interface inside | inc ipv6\"','\"#.*<priv_core_inside_ss_ipv6>::4/64#\"','Tvh757225c','FW-BRD-04: Verify that firewall \"inside\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9235,5,0,'fw-brd-03',13,1,'\"sh run interface inside | inc ipv6\"','\"#.*<priv_core_inside_infra_ipv6>::4/64#\"','Tvh757228c','FW-BRD-03: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context) IPv6'),(9236,5,0,'fw-brd-04',13,1,'\"sh run interface inside | inc ipv6\"','\"#.*<priv_core_inside_infra_ipv6>::4/64#\"','Tvh757229c','FW-BRD-04: Verify that firewall \"inside\" port has configured IP according documentation (INFRA context) IPv6'),(9237,5,0,'fw-brd-03',12,1,'\"sh run interface vpn | inc ipv6\"','\"#.*<priv_fw_vpn_inside_all_ipv6>::6/64#\"','Tvh757232c','FW-BRD-03: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9238,5,0,'fw-brd-04',12,1,'\"sh run interface vpn | inc ipv6\"','\"#.*<priv_fw_vpn_inside_all_ipv6>::6/64#\"','Tvh757233c','FW-BRD-04: Verify that firewall \"vpn\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9239,5,0,'fw-brd-03',13,1,'\"sh run interface vpn | inc ipv6\"','\"#.*<priv_fw_vpn_inside_all_ipv6>::4/64#\"','Tvh757234c','FW-BRD-03: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context) IPv6'),(9240,5,0,'fw-brd-04',13,1,'\"sh run interface vpn | inc ipv6\"','\"#.*<priv_fw_vpn_inside_all_ipv6>::4/64#\"','Tvh757235c','FW-BRD-04: Verify that firewall \"vpn\" port has configured IP according documentation (INFRA context) IPv6'),(9241,1,0,'sw-mgmt-01',NULL,1,'\"sh run interface Vlan80 | inc \\\"ipv6 address\\\"\"','\"#.*<priv_mgmt_ipv6>::23/64#\"','Tvh757219c','SW-MGMT-01: Management: Verify that management switch \"Vlan80\" port has configured IP according documentation IPv6'),(9242,1,0,'sw-mgmt-02',NULL,1,'\"sh run interface Vlan80 | inc \\\"ipv6 address\\\"\"','\"#.*<priv_mgmt_ipv6>::24/64#\"','Tvh757220c','SW-MGMT-02: Management: Verify that management switch \"Vlan80\" port has configured IP according documentation IPv6'),(9243,2,1,NULL,11,1,'\"show run all | include \\\"lacp system-priority\\\"\"','\"lacp system-priority 2500\"','Tvh696344c','Verify that \"LACP System Priority\" has value 2500 (VDC2-VDC)'),(9244,2,1,NULL,19,1,'\"sh run int Po14,Po20,Po21 | i ^interface|lacp\"','[\"interface port-channel14\", \"no lacp graceful-convergence\", \"interface port-channel20\", \"no lacp graceful-convergence\", \"interface port-channel21\", \"no lacp graceful-convergence\"]','Tvh758355c','Verify that Port-Channels 14,20 and 21 have disabled \'lacp graceful-convergence\' (VDC3-VDC)'),(9245,2,1,NULL,19,1,'\"sh run int Eth3/20, Eth3/21 | i ^interface|lac\"','[\"interface Ethernet3/20\", \"lacp rate fast\", \"interface Ethernet3/21\", \"lacp rate fast\"]','Tvh758356c','Verify that Ethernet 3/20 and 3/21 have enabled \'lacp rate fast\' (VDC3-VDC)'),(9246,2,0,'sw-core-01',11,1,'\"show run hsrp | section \\\"interface\\\" | section \\\"interface|hsrp 41\\\" | i \\\"interface|priority\\\"\"','[\"interface Vlan3\", \"priority 110\", \"interface Vlan4\", \"priority 110\", \"interface Vlan80\", \"priority 110\", \"interface Vlan81\", \"priority 110\", \"interface Vlan82\", \"priority 110\", \"interface Vlan83\", \"priority 110\", \"interface Vlan84\", \"priority 110\", \"interface Vlan86\", \"priority 110\", \"interface Vlan87\", \"priority 110\", \"interface Vlan88\", \"priority 110\", \"interface Vlan150\", \"priority 110\"]','Tvh696416c','SW-CORE-01: Verify that HSRP Priority is \"110\" (IPv4)'),(9247,2,0,'sw-core-02',11,1,'\"show run hsrp | section \\\"interface\\\" | section \\\"interface|hsrp 41\\\" | i \\\"interface|priority\\\"\"','[\"interface Vlan3\", \"interface Vlan4\", \"interface Vlan80\", \"interface Vlan81\", \"interface Vlan82\", \"interface Vlan83\", \"interface Vlan84\", \"interface Vlan86\", \"interface Vlan87\", \"interface Vlan88\", \"interface Vlan150\"]','Tvh696417c','SW-CORE-02: Verify that HSRP Priority is default value \"100\" (IPv4)'),(9248,2,1,NULL,11,1,'\"show run hsrp | include \\\"hsrp version\\\"\"','[\"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\", \"hsrp version 2\"]','Tvh696418c','Verify that HSRP Version is \"2\"'),(9249,2,1,NULL,11,1,'\"show run all | include hsrp | include timers\"','\"no hsrp timers extended-hold\"','Tvh696419c','Verify that HSRP Timers uses default values'),(9250,2,1,NULL,11,1,'\"show run hsrp | include \\\"interface|hsrp [0-9]+ $\\\"\"','[\"interface Vlan3\", \"hsrp 41\", \"interface Vlan4\", \"hsrp 41\", \"interface Vlan80\", \"hsrp 41\", \"interface Vlan81\", \"hsrp 41\", \"interface Vlan82\", \"hsrp 41\", \"interface Vlan83\", \"hsrp 41\", \"interface Vlan84\", \"hsrp 41\", \"interface Vlan86\", \"hsrp 41\", \"interface Vlan87\", \"hsrp 41\", \"interface Vlan88\", \"hsrp 41\", \"interface Vlan150\", \"hsrp 41\"]','Tvh696493c','Verify that \"HSRP Group IDs\" are the same on both switches (IPv4'),(9251,2,1,NULL,11,1,'\"show run int Vlan2-6,Vlan9-79 | include \\\"^interface|(ip|ipv6) redirect\\\"\"','[\"interface Vlan3\", \"no ip redirects\", \"interface Vlan4\", \"no ip redirects\", \"interface Vlan6\", \"no ip redirects\", \"interface Vlan11\", \"no ip redirects\", \"interface Vlan14\", \"no ip redirects\", \"interface Vlan15\", \"no ip redirects\"]','Tvh696654c','Verify that IP REDIRECT is disabled for VPC peer-geteway exclude VLANs (IPv4)'),(9252,2,1,NULL,11,1,'\"show run hsrp | include \\\"interface|hsrp [0-9]+\\\" | no-more\"','[\"interface Vlan3\", \"hsrp 61 ipv6\", \"interface Vlan4\", \"hsrp 61 ipv6\", \"interface Vlan80\", \"hsrp 61 ipv6\", \"interface Vlan81\", \"hsrp 61 ipv6\", \"interface Vlan82\", \"hsrp 61 ipv6\", \"interface Vlan83\", \"hsrp 61 ipv6\", \"interface Vlan84\", \"hsrp 61 ipv6\", \"interface Vlan150\", \"hsrp 61 ipv6\"]','Tvh755179c','Verify that \"HSRP Group IDs\" are the same on both switches (IPv6)'),(9253,2,1,NULL,11,1,'\"show run int Vlan2-6,Vlan9-79 | include \\\"^interface|(ip|ipv6) redirect\\\"\"','[\"interface Vlan3\", \"no ipv6 redirects\", \"interface Vlan4\", \"no ipv6 redirects\", \"interface Vlan6\", \"no ipv6 redirects\", \"interface Vlan11\", \"no ipv6 redirects\", \"interface Vlan14\", \"interface Vlan15\"]','Tvh755180c','Verify that IP REDIRECT is disabled for VPC peer-geteway exclude VLANs (IPv6)'),(9254,2,0,'sw-core-01',11,1,'\"show run hsrp | section \\\"interface\\\" | i \\\"interface|hsrp [4,6]1|priority\\\" | section \\\"hsrp 61|interface\\\" | no-more\"','[\"interface Vlan3\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan4\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan80\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan81\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan82\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan83\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan84\", \"hsrp 61 ipv6\", \"priority 110\", \"interface Vlan86\", \"interface Vlan87\", \"interface Vlan88\", \"interface Vlan150\", \"hsrp 61 ipv6\", \"priority 110\"]','Tvh756404c','SW-CORE-01: Verify that HSRP Priority is \"110\" (IPv6)'),(9255,2,0,'sw-core-02',11,1,'\"show run hsrp | section \\\"interface\\\" | i \\\"interface|hsrp [4,6]1|priority\\\" | section \\\"hsrp 61|interface\\\" | no-more\"','[\"interface Vlan3\", \"hsrp 61 ipv6\", \"interface Vlan4\", \"hsrp 61 ipv6\", \"interface Vlan80\", \"hsrp 61 ipv6\", \"interface Vlan81\", \"hsrp 61 ipv6\", \"interface Vlan82\", \"hsrp 61 ipv6\", \"interface Vlan83\", \"hsrp 61 ipv6\", \"interface Vlan84\", \"hsrp 61 ipv6\", \"interface Vlan86\", \"interface Vlan87\", \"interface Vlan88\", \"interface Vlan150\", \"hsrp 61 ipv6\"]','Tvh756405c','SW-CORE-02: Verify that HSRP Priority is \"100\" (IPv6)'),(9256,2,1,NULL,11,1,'\"show run eigrp | include autonomous-system\"','[\"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\", \"autonomous-system 200\"]','Tvh696504c','Verify that EIGRP Autonomous-System value is \"200\"'),(9257,2,1,NULL,11,1,'\"show run eigrp | include \\\"authentication mode\\\"\"','[\"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\", \"authentication mode md5\"]','Tvh696505c','Verify that EIGRP Authentication Mode is \"MD5\"'),(9258,2,1,NULL,11,1,'\"show run eigrp | include \\\"authentication key-chain\\\"\"','[\"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\", \"authentication key-chain eigrp200keys\"]','Tvh696506c','Verify that EIGRP Authentication Key-Chain is \"eigrp200keys\"'),(9259,2,1,NULL,11,1,'\"show run eigrp | include default-metric\"','[\"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\", \"default-metric 100000 100 255 1 1500\"]','Tvh696507c','Verify that EIGRP Redistribution Default Metric has value \"100000 100 255 1 1500\"'),(9260,2,1,NULL,11,1,'\" show run eigrp | section \\\"router eigrp\\\" | i \\\"ip router eigrp|^router eigrp\\\"\"','[\"router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\", \"ip router eigrp <location_upper>\"]','Tvh696561c','Verify that EIGRP Instance Name is eual to DC name (IPv4)'),(9261,2,1,NULL,11,1,'\"show ip eigrp | include \\\"Max paths\\\"\"','\"Max paths: 8\"','Tvh696562c','Verify that EIGRP Equal Cost Path value is \"8\"'),(9262,2,0,'sw-core-01',11,1,'\"show run eigrp | section \\\"vrf\\\" | i \\\"vrf|address-family|router-id\\\"\"','[\"vrf infra-dmz-ad\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.97#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.97#\", \"vrf infra-dmz-comsvc\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.105#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.105#\", \"vrf infra-main\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.66#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.66#\", \"vrf ss-main\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.67#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.67#\"]','Tvh696565c','SW-CORE-01: Verify that EIGRP Router-ID is the same for IPv4 and IPv6 per VRF'),(9263,2,1,NULL,11,1,'\" show run eigrp | section \\\"router eigrp\\\" | i \\\"ipv6 router eigrp|^router eigrp\\\"\"','[\"router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\", \"ipv6 router eigrp <location_upper>\"]','Tvh756347c','Verify that EIGRP Instance Name is eual to DC name (IPv6)'),(9264,2,0,'sw-core-02',11,1,'\"show run eigrp | section \\\"vrf\\\" | i \\\"vrf|address-family|router-id\\\"\"','[\"vrf infra-dmz-ad\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.98#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.98#\", \"vrf infra-dmz-comsvc\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.106#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.106#\", \"vrf infra-main\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.68#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.68#\", \"vrf ss-main\", \"address-family ipv4 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.69#\", \"address-family ipv6 unicast\", \"#.*router-id <priv_routerid_ipv4>\\\\.69#\"]','Tvh756388c','SW-CORE-02: Verify that EIGRP Router-ID is the same for IPv4 and IPv6 per VRF'),(9265,2,1,NULL,NULL,1,'\"show ip access-lists mgmt-access | no-more\"','[\"#.*10 remark.*ScanSafe#\", \"20 permit ip 10.53.35.96/27 any\", \"30 permit ip 192.168.0.0/24 any\", \"40 permit ip 192.168.21.0/24 any\", \"#.*50 remark.*IronPort#\", \"60 permit ip 10.8.0.0/16 any\", \"70 permit ip 173.37.0.0/20 any\", \"#.*80 remark.*netops util servers#\", \"90 permit ip <priv_mon_ipv4>.38/32 any\", \"100 permit ip <priv_mon_ipv4>.39/32 any\", \"110 permit ip <priv_mon_ipv4>.40/32 any\", \"#.*120 remark.*ScanSafe OPS VPN 2nd Pool#\", \"130 permit ip 10.53.35.128/26 any\"]','Tvh696648c','Verify access-list \'mgmt-access\' configuration exists (ADMIN-VDC)'),(9266,2,1,NULL,NULL,1,'\"show running-config all | include mgmt-access prev 3\"','[\"session-limit 16\", \"exec-timeout 15\", \"access-class mgmt-access in\"]','Tvh696649c','Verify access-list \'mgmt-access\' is applied on \'line vty\' (ADMIN-VDC)'),(9267,2,1,NULL,NULL,1,'\"show ip access-lists snmp-access | no-more\"','[\"#.*10 remark.*snmp pollers#\", \"20 permit ip <priv_mon_ipv4>.49/32 any\", \"30 permit ip <priv_mon_ipv4>.50/32 any\", \"#.*40 remark.*<location> nagios pollers#\", \"50 permit ip <priv_mon_ipv4>.19/32 any\", \"60 permit ip <priv_mon_ipv4>.20/32 any\", \"70 permit ip <priv_mon_ipv4>.47/32 any\", \"80 permit ip <priv_mon_ipv4>.48/32 any\", \"#.*90 remark.*<location> NAM#\", \"100 permit ip <priv_mgmt_ipv4>.49/32 any\"]','Tvh696650c','Verify access-list \'snmp-access\' configuration exists (ADMIN-VDC)'),(9268,2,1,NULL,NULL,1,'\"show snmp community\"','\"#.*Zubr0wka.*network-operator.*snmp-access#\"','Tvh696651c','Verify access-list \'snmp-access\' is applied on snmp protocol (ADMIN-VDC)'),(9269,2,1,NULL,NULL,1,'\"sh run copp\"','\"copp profile strict\"','Tvh758280c','Verify that \'copp profile\' is strict (ADMIN-VDC)'),(9270,2,1,NULL,11,1,'\"show ip access-lists snmp-access | no-more\"','[\"#.*10 remark.*snmp pollers#\", \"20 permit ip <priv_mon_ipv4>.49/32 any\", \"30 permit ip <priv_mon_ipv4>.50/32 any\", \"#.*40 remark.*nagios pollers#\", \"50 permit ip <priv_mon_ipv4>.19/32 any\", \"60 permit ip <priv_mon_ipv4>.20/32 any\", \"70 permit ip <priv_mon_ipv4>.47/32 any\", \"80 permit ip <priv_mon_ipv4>.48/32 any\", \"#.*90 remark.*<location> NAM#\", \"100 permit ip <priv_mgmt_ipv4>.49/32 any\"]','Tvh758331c','Verify access-list \'snmp-access\' configuration exists (VDC2-VDC)'),(9271,2,1,NULL,11,1,'\"show snmp community\"','\"#.*Zubr0wka.*vdc-operator.*snmp-access#\"','Tvh758332c','Verify access-list \'snmp-access\' is applied on snmp protocol (VDC2-VDC)'),(9272,2,1,NULL,19,1,'\"show ip access-lists snmp-access | no-more\"','[\"#.*10 remark.*snmp pollers#\", \"20 permit ip <priv_mon_ipv4>.49/32 any\", \"30 permit ip <priv_mon_ipv4>.50/32 any\", \"#.*40 remark.*nagios pollers#\", \"50 permit ip <priv_mon_ipv4>.19/32 any\", \"60 permit ip <priv_mon_ipv4>.20/32 any\", \"70 permit ip <priv_mon_ipv4>.47/32 any\", \"80 permit ip <priv_mon_ipv4>.48/32 any\", \"#.*90 remark.*NAM.*#\", \"100 permit ip <priv_mgmt_ipv4>.49/32 any\"]','Tvh758333c','Verify access-list \'snmp-access\' configuration exists (VDC3-VDC)'),(9273,2,1,NULL,19,1,'\"show snmp community\"','\"#.*Zubr0wka.*vdc-operator.*snmp-access#\"','Tvh758334c','Verify access-list \'snmp-access\' is applied on snmp protocol (VDC3-VDC)'),(9274,2,1,NULL,11,1,'\"show ip access-lists mgmt-access | no-more\"','[\"#.*10 remark.*ScanSafe#\", \"20 permit ip 10.53.35.96/27 any\", \"30 permit ip 192.168.0.0/24 any\", \"40 permit ip 192.168.21.0/24 any\", \"#.*50 remark.*IronPort#\", \"60 permit ip 10.8.0.0/16 any\", \"70 permit ip 173.37.0.0/20 any\", \"#.*80 remark.*netops util servers#\", \"90 permit ip <priv_mon_ipv4>.38/32 any\", \"100 permit ip <priv_mon_ipv4>.39/32 any\", \"110 permit ip <priv_mon_ipv4>.40/32 any\", \"#.*120 remark.*ScanSafe OPS VPN 2nd Pool#\", \"130 permit ip 10.53.35.128/26 any\"]','Tvh758347c','Verify access-list \'mgmt-access\' configuration exists (VDC2-VDC)'),(9275,2,1,NULL,11,1,'\"show running-config all | include mgmt-access prev 3\"','[\"session-limit 16\", \"exec-timeout 15\", \"access-class mgmt-access in\"]','Tvh758348c','Verify access-list \'mgmt-access\' is applied on \'line vty\' (VDC2-VDC)'),(9276,2,1,NULL,NULL,1,'\"show version | include system:\"','\"system: version 6.1(2)\"','Tvh697207c','7.1.1.1 Verify that system image is version 6.1(2)'),(9277,2,1,NULL,NULL,1,'\"show version | include kickstart:\"','\"kickstart: version 6.1(2)\"','Tvh697208c','7.1.1.2 Verify that kickstart image is version 6.1(2)'),(9278,2,1,NULL,NULL,1,'\"show version | include \\\"system image file is:\\\"\"','\"system image file is: bootflash:///n7000-s2-dk9.6.1.2.bin\"','Tvh697209c','7.1.1.3 Verify that the system image file is n7000-s2-dk9.6.1.2.bin'),(9279,2,1,NULL,NULL,1,'\"show version | include \\\"kickstart image file is:\\\"\"','\"kickstart image file is: bootflash:///n7000-s2-kickstart.6.1.2.bin\"','Tvh697210c','7.1.1.4 Verify that the kickstart image file is n7000-s2-kickstart.6.1.2.bin'),(9280,2,1,NULL,NULL,1,'\"dir\"','\"n7000-s2-dk9.6.1.2.bin\"','Tvh697211c','7.1.1.5 Verify that system software firmware is available in the bootflash'),(9281,2,1,NULL,NULL,1,'\"dir\"','\"n7000-s2-kickstart.6.1.2.bin\"','Tvh697212c','7.1.1.6 Verify that kickstart software firmware is available in the bootflash'),(9282,2,1,NULL,NULL,1,'\"show running-config | include \\\"boot \\\"\"','[\"boot kickstart bootflash:/n7000-s2-kickstart.6.1.2.bin sup-1\", \"boot system bootflash:/n7000-s2-dk9.6.1.2.bin sup-1\", \"boot kickstart bootflash:/n7000-s2-kickstart.6.1.2.bin sup-2\", \"boot system bootflash:/n7000-s2-dk9.6.1.2.bin sup-2\"]','Tvh697213c','7.1.1.7 Verify that the boot system variable are configured for SUP 1 and SUP 2'),(9283,2,1,NULL,NULL,1,'\"show boot sup-1 | include \\\"kickstart|system\\\"\"','[\"kickstart variable = bootflash:/n7000-s2-kickstart.6.1.2.bin\", \"system variable = bootflash:/n7000-s2-dk9.6.1.2.bin\", \"kickstart variable = bootflash:/n7000-s2-kickstart.6.1.2.bin\", \"system variable = bootflash:/n7000-s2-dk9.6.1.2.bin\"]','Tvh697214c','7.1.1.8 Verify that the First Supervisor boot variable is configured with relevant software image'),(9284,2,1,NULL,NULL,1,'\"show boot sup-2 | include \\\"kickstart|system\\\"\"','[\"kickstart variable = bootflash:/n7000-s2-kickstart.6.1.2.bin\", \"system variable = bootflash:/n7000-s2-dk9.6.1.2.bin\", \"kickstart variable = bootflash:/n7000-s2-kickstart.6.1.2.bin\", \"system variable = bootflash:/n7000-s2-dk9.6.1.2.bin\"]','Tvh697215c','7.1.1.9 Verify that the Second Supervisor boot variable is configured with relevant software image'),(9285,2,1,NULL,NULL,1,'\"show inventory module\"','[\"NAME: \\\"Slot 1\\\", DESCR: \\\"Supervisor module-2\\\"\", \"NAME: \\\"Slot 2\\\", DESCR: \\\"Supervisor module-2\\\"\"]','Tvh697251c','7.16.1.1 Verify that TWO supervisor module are installed'),(9286,2,1,NULL,NULL,1,'\"show inventory module\"','[\"NAME: \\\"Slot 3\\\", DESCR: \\\"1/10 Gbps Ethernet Module\\\"\", \"PID: N7K-F248XP-25\", \"NAME: \\\"Slot 4\\\", DESCR: \\\"1/10 Gbps Ethernet Module\\\"\", \"PID: N7K-F248XP-25\"]','Tvh697312c','7.16.1.2 Verify that TWO linecards are installed'),(9287,2,1,NULL,NULL,1,'\"show inventory module\"','[\"NAME: \\\"Slot 1\\\", DESCR: \\\"Supervisor module-2\\\"\", \"PID: N7K-SUP2E\", \"NAME: \\\"Slot 2\\\", DESCR: \\\"Supervisor module-2\\\"\", \"PID: N7K-SUP2E\"]','Tvh697313c','7.16.1.3 Verify that BOTH supervisor modules have the same type'),(9288,2,1,NULL,NULL,1,'\"show module | include \\\"Supervisor\\\"\"','\"#Supervisor module-2.*N7K-SUP2E.*active#\"','Tvh697314c','7.16.4 Verify that one of supervisor modules is in active state'),(9289,2,1,NULL,NULL,1,'\"show module | include \\\"Supervisor\\\"\"','\"#Supervisor module-2.*N7K-SUP2E.*ha-standby#\"','Tvh697315c','7.16.5 Verify that one of supervisor modules is in ha-standby state'),(9290,2,1,NULL,NULL,1,'\"show module | include \\\"Ethernet\\\"\"','[\"#^3.*48.*1/10 Gbps Ethernet Module.*N7K-F248XP-25.*ok#\", \"#^4.*48.*1/10 Gbps Ethernet Module.*N7K-F248XP-25.*ok#\"]','Tvh697316c','7.16.1.6 Verify that both linecards have OK status'),(9291,2,1,NULL,NULL,1,'\"show module | include \\\"Fabric\\\"\"','[\"#^1.*0.*Fabric Module 2.*N7K-C7009-FAB-2.*ok#\", \"#^2.*0.*Fabric Module 2.*N7K-C7009-FAB-2.*ok#\", \"#^3.*0.*Fabric Module 2.*N7K-C7009-FAB-2.*ok#\", \"#^4.*0.*Fabric Module 2.*N7K-C7009-FAB-2.*ok#\", \"#^5.*0.*Fabric Module 2.*N7K-C7009-FAB-2.*ok#\"]','Tvh697317c','7.16.1.7 Verify that all fabric modules have OK status'),(9292,2,1,NULL,NULL,1,'\"show module | include \\\"Online Diag Status\\\" next 5\"','[\"#^1.*Pass#\", \"#^2.*Pass#\", \"#^3.*Pass#\", \"#^4.*Pass#\"]','Tvh697318c','7.16.1.8 Verify that all installed modules have passed online diagnostic'),(9293,2,1,NULL,NULL,1,'\"show environment | include KW\"','[\"#^1.* N7K-AC-6.0KW.* 6000 W.*Ok#\", \"#^2.* N7K-AC-6.0KW.* 6000 W.*Ok#\"]','Tvh697319c','7.16.1.9 Verify that TWO PSU are installed and have OK status'),(9294,2,1,NULL,NULL,1,'\"show environment\"','[\"#^1.*N7K-SUP2E.*265 W.*Powered-Up#\", \"#^2.*N7K-SUP2E.*265 W.*Powered-Up#\"]','Tvh697320c','7.16.1.10 Verify that Supervisor modules are Powered-Up'),(9295,2,1,NULL,NULL,1,'\"show environment | include N7K-F248XP\"','[\"#^3.*N7K-F248XP-25.*450 W.*Powered-Up#\", \"#^4.*N7K-F248XP-25.*450 W.*Powered-Up#\"]','Tvh697321c','7.16.1.11 Verify that Linecard modules are Powered-Up'),(9296,2,1,NULL,NULL,1,'\"show environment | include N7K-.*FAB\"','[\"#^Xb1.*N7K-C7009-FAB-2.*70 W.*Powered-Up#\", \"#^Xb2.*N7K-C7009-FAB-2.*70 W.*Powered-Up#\", \"#^Xb3.*N7K-C7009-FAB-2.*70 W.*Powered-Up#\", \"#^Xb4.*N7K-C7009-FAB-2.*70 W.*Powered-Up#\", \"#^Xb5.*N7K-C7009-FAB-2.*70 W.*Powered-Up#\"]','Tvh697322c','7.16.1.12 Verify that Fabric modules are Powered-Up'),(9297,2,1,NULL,NULL,1,'\"show environment | include N7K-.*FAN\"','[\"#^fan1.*N7K-C7009-FAN.*650 W.*Powered-Up#\", \"#^Fan1\\\\(sys_fan1\\\\).*N7K-C7009-FAN.*Ok#\"]','Tvh697323c','7.16.1.13 Verify that FAN module is Powered-Up'),(9298,2,1,NULL,NULL,1,'\"show environment | include \\\"Power Supply redundancy mode\\\"\"','[\"#^Power Supply redundancy mode \\\\(configured\\\\).*PS-Redundant#\", \"#^Power Supply redundancy mode \\\\(operational\\\\).*PS-Redundant#\"]','Tvh697324c','Verify that PSU are in the PS-Redundant mode'),(9299,2,1,NULL,NULL,1,'\"show environment\"','[\"#^1.*Inlet \\\\(s1\\\\).*Ok#\", \"#^1.*PMFPGA \\\\(s2\\\\).*Ok#\", \"#^1.*Crossbar\\\\(s3\\\\).*Ok#\", \"#^1.*L2L3Dev1\\\\(s4\\\\).*Ok#\", \"#^1.*Arbiter \\\\(s5\\\\).*Ok#\", \"#^1.*CPU1CORE1\\\\(s6\\\\).*Ok#\", \"#^1.*CPU1CORE2\\\\(s7\\\\).*Ok#\", \"#^1.*CPU1CORE3\\\\(s8\\\\).*Ok#\", \"#^1.*CPU1CORE4\\\\(s9\\\\).*Ok#\", \"#^1.*CPU2CORE1\\\\(s10\\\\).*Ok#\", \"#^1.*CPU2CORE2\\\\(s11\\\\).*Ok#\", \"#^1.*CPU2CORE3\\\\(s12\\\\).*Ok#\", \"#^1.*CPU2CORE4\\\\(s13\\\\).*Ok#\", \"#^1.*DDR3DIMM1\\\\(s14\\\\).*Ok#\", \"#^1.*DDR3DIMM2\\\\(s15\\\\).*Ok#\", \"#^1.*DDR3DIMM4\\\\(s17\\\\).*Ok#\", \"#^1.*DDR3DIMM5\\\\(s18\\\\).*Ok#\", \"#^2.*Inlet \\\\(s1\\\\).*Ok#\", \"#^2.*PMFPGA \\\\(s2\\\\).*Ok#\", \"#^2.*Crossbar\\\\(s3\\\\).*Ok#\", \"#^2.*L2L3Dev1\\\\(s4\\\\).*Ok#\", \"#^2.*Arbiter \\\\(s5\\\\).*Ok#\", \"#^2.*CPU1CORE1\\\\(s6\\\\).*Ok#\", \"#^2.*CPU1CORE2\\\\(s7\\\\).*Ok#\", \"#^2.*CPU1CORE3\\\\(s8\\\\).*Ok#\", \"#^2.*CPU1CORE4\\\\(s9\\\\).*Ok#\", \"#^2.*CPU2CORE1\\\\(s10\\\\).*Ok#\", \"#^2.*CPU2CORE2\\\\(s11\\\\).*Ok#\", \"#^2.*CPU2CORE3\\\\(s12\\\\).*Ok#\", \"#^2.*CPU2CORE4\\\\(s13\\\\).*Ok#\", \"#^2.*DDR3DIMM1\\\\(s14\\\\).*Ok#\", \"#^2.*DDR3DIMM2\\\\(s15\\\\).*Ok#\", \"#^2.*DDR3DIMM4\\\\(s17\\\\).*Ok#\", \"#^2.*DDR3DIMM5\\\\(s18\\\\).*Ok#\", \"#^3.*Crossbar\\\\(s1\\\\).*Ok#\", \"#^3.*Arb-mux \\\\(s2\\\\).*Ok#\", \"#^3.*L2L3Dev1\\\\(s4\\\\).*Ok#\", \"#^3.*L2L3Dev2\\\\(s5\\\\).*Ok#\", \"#^3.*L2L3Dev3\\\\(s6\\\\).*Ok#\", \"#^3.*L2L3Dev4\\\\(s7\\\\).*Ok#\", \"#^3.*L2L3Dev5\\\\(s8\\\\).*Ok#\", \"#^3.*L2L3Dev6\\\\(s9\\\\).*Ok#\", \"#^3.*L2L3Dev7\\\\(s10\\\\).*Ok#\", \"#^3.*L2L3Dev8\\\\(s11\\\\).*Ok#\", \"#^3.*L2L3Dev9\\\\(s12\\\\).*Ok#\", \"#^3.*L2L3Dev10\\\\(s13\\\\).*Ok#\", \"#^3.*L2L3Dev11\\\\(s14\\\\).*Ok#\", \"#^3.*L2L3Dev12\\\\(s15\\\\).*Ok#\", \"#^4.*Crossbar\\\\(s1\\\\).*Ok#\", \"#^4.*Arb-mux \\\\(s2\\\\).*Ok#\", \"#^4.*L2L3Dev1\\\\(s4\\\\).*Ok#\", \"#^4.*L2L3Dev2\\\\(s5\\\\).*Ok#\", \"#^4.*L2L3Dev3\\\\(s6\\\\).*Ok#\", \"#^4.*L2L3Dev4\\\\(s7\\\\).*Ok#\", \"#^4.*L2L3Dev5\\\\(s8\\\\).*Ok#\", \"#^4.*L2L3Dev6\\\\(s9\\\\).*Ok#\", \"#^4.*L2L3Dev7\\\\(s10\\\\).*Ok#\", \"#^4.*L2L3Dev8\\\\(s11\\\\).*Ok#\", \"#^4.*L2L3Dev9\\\\(s12\\\\).*Ok#\", \"#^4.*L2L3Dev10\\\\(s13\\\\).*Ok#\", \"#^4.*L2L3Dev11\\\\(s14\\\\).*Ok#\", \"#^4.*L2L3Dev12\\\\(s15\\\\).*Ok#\", \"#^xbar-1 Crossbar\\\\(s1\\\\).*Ok#\", \"#^xbar-2 Crossbar\\\\(s1\\\\).*Ok#\", \"#^xbar-3 Crossbar\\\\(s1\\\\).*Ok#\", \"#^xbar-4 Crossbar\\\\(s1\\\\).*Ok#\", \"#^xbar-5 Crossbar\\\\(s1\\\\).*Ok#\"]','Tvh697325c','7.16.1.15 Verify that Temperature are in OK state'),(9300,2,1,NULL,NULL,1,'\"show run | i \\\"feature tacacs\\\"\"','\"feature tacacs+\"','Tvh756786c','Verify that \'tacacs+\' feature is enabled (ADMIN-VDC)'),(9301,2,1,NULL,NULL,1,'\"show run tacacs\"','\"ip tacacs source-interface mgmt0\"','Tvh756787c','Verify that tacacs soure interface is Mgmt0 (ADMIN-VDC)'),(9302,2,1,NULL,NULL,1,'\"show run tacacs\"','\"#.*tacacs-server host <priv_mgmt_ipv4>\\\\.47 key 7.*timeout 10#\"','Tvh756788c','Verify that tacacs server IP is configured according documentation (ADMIN-VDC)'),(9303,2,1,NULL,NULL,1,'\"show run tacacs\"','[\"aaa group server tacacs+ <location_upper>\", \"server <priv_mgmt_ipv4>.47\", \"deadtime 60\", \"use-vrf management\", \"source-interface mgmt0\"]','Tvh756789c','Verify that AAA group for tacacs server is configured (ADMIN-VDC)'),(9304,2,1,NULL,NULL,1,'\"sh run | section aaa\"','[\"aaa authentication login default group <location_upper>\", \"aaa authorization config-commands default group <location_upper> local\", \"aaa authorization commands default group <location_upper> local\", \"aaa accounting default group <location_upper>\"]','Tvh758279c','Verify that AAA \'authentication\', \'authorization\' and \'accounting\' options are set (ADMIN-VDC)'),(9305,2,1,NULL,11,1,'\"show run tacacs\"','[\"aaa group server tacacs+ <location_upper>\", \"server <priv_mgmt_ipv4>.47\", \"deadtime 60\", \"use-vrf management\", \"source-interface mgmt0\"]','Tvh758294c','Verify that AAA group for tacacs server is configured (VDC2-VDC)'),(9306,2,1,NULL,11,1,'\"sh run | section aaa\"','[\"aaa authentication login default group <location_upper>\", \"aaa authorization config-commands default group <location_upper> local\", \"aaa authorization commands default group <location_upper> local\", \"aaa accounting default group <location_upper>\"]','Tvh758295c','Verify that AAA \'authentication\', \'authorization\' and \'accounting\' options are set (VDC2-VDC)'),(9307,2,1,NULL,19,1,'\"sh run | section aaa\"','[\"aaa authentication login default group <location_upper>\", \"aaa authorization config-commands default group <location_upper> local\", \"aaa authorization commands default group <location_upper> local\", \"aaa accounting default group <location_upper>\"]','Tvh758335c','Verify that AAA \'authentication\', \'authorization\' and \'accounting\' options are set (VDC3-VDC)'),(9308,2,1,NULL,19,1,'\"show run tacacs\"','[\"aaa group server tacacs+ <location_upper>\", \"server <priv_mgmt_ipv4>.47\", \"deadtime 60\", \"use-vrf management\", \"source-interface mgmt0\"]','Tvh758336c','Verify that AAA group for tacacs server is configured (VDC3-VDC)'),(9309,2,1,NULL,11,1,'\"show run tacacs\"','\"ip tacacs source-interface mgmt0\"','Tvh758337c','Verify that tacacs soure interface is Mgmt0 (VDC2-VDC)'),(9310,2,1,NULL,19,1,'\"show run tacacs\"','\"ip tacacs source-interface mgmt0\"','Tvh758338c','Verify that tacacs soure interface is Mgmt0 (VDC3-VDC)'),(9311,2,1,NULL,11,1,'\"show run tacacs\"','\"#.*tacacs-server host <priv_mgmt_ipv4>\\\\.47 key 7.*timeout 10#\"','Tvh758339c','Verify that tacacs server IP is configured according documentation (VDC2-VDC)'),(9312,2,1,NULL,19,1,'\"show run tacacs\"','\"#.*tacacs-server host <priv_mgmt_ipv4>\\\\.47 key 7.*timeout 10#\"','Tvh758344c','Verify that tacacs server IP is configured according documentation (VDC3-VDC)'),(9313,2,1,NULL,11,1,'\"show run int Po10,Po12 | include \\\"switchport mode\\\"\"','[\"switchport mode trunk\", \"switchport mode trunk\"]','Tvh696369c','Verify that Port-Channels \"10\" and \"12\" switchport mode is set to \"trunk\" (VDC2-VDC)'),(9314,2,1,NULL,11,1,'\"show run int Po11 | include \\\"switchport mode\\\"\"','\"#^sw-core-0.*# $#\"','Tvh696370c','Verify that Port-Channel \"11\" switchport mode is not set (VDC2-VDC)'),(9315,2,1,NULL,11,1,'\"show run int Po10 | include \\\"allowed vlan\\\"\"','\"switchport trunk allowed vlan 80-88,93,150,169\"','Tvh696371c','Verify that Port-Channel \"10\" has allowed VLANs : 80-88,93,150,169 (VDC2-VDC)'),(9316,2,1,NULL,11,1,'\"show run int Po12 | include \\\"allowed vlan\\\"\"','\"switchport trunk allowed vlan 3-6,11,14-15\"','Tvh696372c','Verify that Port-Channel \"12\" has allowed VLANs : 3-6,11,14-15 (VDC2-VDC)'),(9317,2,1,NULL,11,1,'\"show run int Po10,Po12 | include \\\"ip address|ipv6 address\\\"\"','\"#^sw-core-0.*# $#\"','Tvh696382c','Verify that Port-Channels \"10\" and \"12\" are configured as L2 ports (VDC2-VDC)'),(9318,2,0,'sw-core-01',11,1,'\"show run int Po1,Po3 | include \\\"ip address\\\"\"','[\"#.*ip address <pub_brd_po1_ipv4>\\\\.2/30#\", \"#.*ip address <pub_brd_po3_ipv4>\\\\.10/30#\"]','Tvh696385c','SW-CORE-01: Verify that Port-Channels \"1\" and \"3\" (between core-switch and border router) are configured as L3 ports (IPv4) (VDC2-VDC)'),(9319,2,0,'sw-core-02',11,1,'\"show run int Po2,Po4 | include \\\"ip address\\\"\"','[\"#.*ip address <pub_brd_po2_ipv4>\\\\.6/30#\", \"#.*ip address <pub_brd_po4_ipv4>\\\\.14/30#\"]','Tvh696386c','SW-CORE-02: Verify that Port-Channels \"2\" and \"4\" (between core-switch and border router) are configured as L3 ports (IPv4) (VDC2-VDC)'),(9320,2,0,'sw-core-01',11,1,'\"show run int Po1,Po3 | include \\\"ipv6 address\\\"\"','[\"ipv6 address\", \"ipv6 address\"]','Tvh755189c','SW-CORE-01: Verify that Port-Channels \"1\" and \"3\" (between core-switch and border router) are configured as L3 ports (IPv6) (VDC2-VDC)'),(9321,2,0,'sw-core-02',11,1,'\"show run int Po2,Po4 | include \\\"ipv6 address\\\"\"','[\"ipv6 address\", \"ipv6 address\"]','Tvh755190c','SW-CORE-02: Verify that Port-Channels \"2\" and \"4\" (between core-switch and border router) are configured as L3 ports (IPv6) (VDC2-VDC)'),(9322,5,1,NULL,12,1,'\"show run router ospf | include area\"','\"#network <pub_routerid_ipv4>\\\\.32 255.255.255.240 area 0#\"','Tvh697064c','Verify that OSPF Area is \"0\" (scansafe context)'),(9323,5,1,NULL,12,1,'\"show run router ospf | include router ospf\"','\"router ospf 2\"','Tvh697065c','Verify that OSPF Process ID value is \"2\" (scansafe context)'),(9324,5,1,NULL,12,1,'\"show run | include ospf priority\"','\"ospf priority 0\"','Tvh697068c','Verify that OSPF Priority value is \"0\" (scansafe context)'),(9325,5,1,NULL,12,1,'\"show run | include ospf authentication\"','\"ospf authentication message-digest\"','Tvh697069c','Verify that OSPF Authentication Mode is \"message-digest\" (scansafe context)'),(9326,5,1,NULL,12,1,'\"show run access-list | include inside-ingress\"','[\"access-list inside-ingress extended permit udp any any object-group traceroute-port \", \"access-list inside-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list inside-ingress remark cws context: inside => core(cws)\", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-easyid-hosts object-group https-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-activemq-hosts object-group activemq-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-svn-hosts object-group svn-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-svn-hosts object-group http-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-view-companies-hosts object-group http-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-updategw-hosts object-group updategw-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-embassy-hosts object-group embassy-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group cws-embassy-hosts object-group http-port \", \"access-list inside-ingress extended permit object-group couchdb-ports object <location>-cws-inside-net object-group cws-couchdb-hosts \", \"access-list inside-ingress extended permit object-group smtp-ports object <location>-cws-inside-net object-group cws-core-smtp-hosts \", \"access-list inside-ingress remark cws context: inside => comsvc(infra)\", \"access-list inside-ingress extended permit object-group www-ports object <location>-cws-inside-net object-group <location>-infra-comsvc-yum-hosts \", \"access-list inside-ingress extended permit object-group ntp-ports object <location>-cws-inside-net object-group infra-comsvc-ntp-hosts \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group infra-comsvc-puppet-vips object-group puppet-port \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group infra-comsvc-puppet-activemq-vips object-group puppet-activemq-port \", \"access-list inside-ingress extended permit object-group cobbler-ports object <location>-cws-inside-net object-group infra-comsvc-cobbler-vips \", \"access-list inside-ingress extended permit object-group smtp-ports object <location>-cws-inside-net object-group infra-comsvc-smtp-vips \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object-group allowed-src-ports object-group infra-comsvc-graphite-vips object-group graphite-port \", \"access-list inside-ingress extended permit object-group dns-ports object <location>-cws-inside-net any \", \"access-list inside-ingress extended permit object-group dns-ports object <location>-cws-inside-net object-group infra-comsvc-dns-vips \", \"access-list inside-ingress remark cws context: inside => vega\", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net object puppetreport.sco.cisco.com object-group http-port \", \"access-list inside-ingress remark cws context: inside => internet\", \"access-list inside-ingress extended deny ip object <location>-cws-inside-net object-group martians-net log \", \"access-list inside-ingress extended permit tcp object <location>-cws-inside-net any \", \"access-list inside-ingress extended deny ip any any log \"]','Tvh697094c','Verify that \"inside-ingress\" access-list configuration exists (scansafe context)'),(9327,5,1,NULL,12,1,'\"show run access-list | include outside-ingress\"','[\"access-list outside-ingress extended permit icmp any any object-group allowed-untrusted-icmp-ingress\", \"access-list outside-ingress extended permit object-group cws-lb-ports any object-group <location>-cws-inside-lb-vips\"]','Tvh697095c','Verify that \"outside-ingress\" access-list configuration exists (scansafe context)'),(9328,5,1,NULL,13,1,'\"show run access-list | include inside-ingress\"','[\"access-list inside-ingress extended permit udp any any object-group traceroute-port \", \"access-list inside-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list inside-ingress remark Infra context: inside => com_svc\", \"access-list inside-ingress extended permit object-group proxy-ports object-group <location>-infra-inside-net object-group <location>-infra-comsvc-wsa-hosts \", \"access-list inside-ingress extended permit object-group netflow-ports object-group <location>-infra-inside-nam-hosts object-group <location>-infra-comsvc-logstash-vips \", \"access-list inside-ingress extended permit udp object-group <location>-infra-inside-not-virt-net object-group allowed-src-ports object-group <location>-infra-comsvc-logstash-vips object-group trap-port \", \"access-list inside-ingress extended permit object-group syslog-ports object-group <location>-infra-inside-net object-group <location>-infra-comsvc-logstash-vips \", \"access-list inside-ingress extended permit udp object <location>-infra-inside-mgmt-net object-group allowed-src-ports object-group <location>-infra-comsvc-netops-hosts object-group tftp-port \", \"access-list inside-ingress extended permit object-group dns-ports object-group <location>-infra-inside-net object-group <location>-infra-comsvc-dns-vips \", \"access-list inside-ingress extended permit object-group smtp-ports object-group <location>-infra-inside-net object-group <location>-infra-comsvc-smtp-hosts \", \"access-list inside-ingress extended permit object-group cobbler-ports object-group <location>-infra-inside-virt-net object-group <location>-infra-comsvc-cobbler-vips \", \"access-list inside-ingress extended permit object-group ntp-ports object-group <location>-infra-inside-net object-group <location>-infra-ntp-hosts \", \"access-list inside-ingress extended permit object-group sw-collector-ports object-group <location>-infra-inside-sw-collector-hosts object-group nap5-cs-inside-sw-collector-hosts \", \"access-list inside-ingress remark Infra context: inside => vpn(vega)\", \"access-list inside-ingress extended permit object-group av-ports object <location>-infra-inside-cws-virt-net object-group nap5-cs-inside-av-hosts \", \"access-list inside-ingress extended permit object-group platops-mgmt-ports object-group <location>-infra-inside-vsv-hosts object-group las1-cs-inside-platops-util-hosts \", \"access-list inside-ingress extended permit object-group platops-mgmt-ports object-group <location>-infra-inside-vbu-hosts object-group las1-cs-inside-platops-util-hosts \", \"access-list inside-ingress extended permit object-group ucs-ports object-group <location>-infra-inside-ucsm-hosts object-group vega-cs-inside-ucs-central-hosts \", \"access-list inside-ingress remark Infra context: inside => outside\", \"access-list inside-ingress extended permit ip object-group <location>-infra-inside-acs-hosts object-group all-infra-inside-acs-hosts \", \"access-list inside-ingress extended permit object-group aaa-ports object-group <location>-infra-inside-acs-hosts object-group all-infra-inside-acs-hosts \", \"access-list inside-ingress extended permit object-group www-ports object-group <location>-infra-inside-vad-hosts any \", \"access-list inside-ingress remark Infra context: inside => dmz_ad\", \"access-list inside-ingress extended permit object-group www-ports object-group <location>-infra-inside-virt-net object-group <location>-infra-ad-wsus-hosts \", \"access-list inside-ingress extended permit object-group ad-ports object-group <location>-infra-inside-not-mgmt-net object-group <location>-infra-ad-dc-hosts \", \"access-list inside-ingress extended permit object-group ad-ports object-group <location>-infra-inside-acs-hosts object-group <location>-infra-ad-dc-hosts \", \"access-list inside-ingress extended deny ip any any log \"]','Tvh697096c','Verify that \"inside-ingress\" access-list configuration exists (infra context)'),(9329,5,1,NULL,13,1,'\"show run access-list | include outside-ingress\"','[\"access-list outside-ingress remark Infra context: outside => any\", \"access-list outside-ingress extended permit icmp any any object-group allowed-untrusted-icmp-ingress\", \"access-list outside-ingress extended deny ip any any log\"]','Tvh697097c','Verify that \"outside-ingress\" access-list configuration exists (infra context)'),(9330,5,1,NULL,12,1,'\"show run access-group | include inside\"','\"access-group inside-ingress in interface inside\"','Tvh697098c','Verify that \"inside-ingress\" access-list is applied to \"inside\" interface an direction is \"IN\" (scansafe context)'),(9331,5,1,NULL,12,1,'\"show run access-group | include outside\"','\"access-group outside-ingress in interface outside\"','Tvh697099c','Verify that \"outside-ingress\" access-list is applied to \"outside\" interface an direction is \"IN\" (scansafe context)'),(9332,5,1,NULL,13,1,'\"show run access-group | include inside\"','\"access-group inside-ingress in interface inside\"','Tvh697100c','Verify that \"inside-ingress\" access-list is applied to \"inside\" interface an direction is \"IN\" (infra context)'),(9333,5,1,NULL,13,1,'\"show run access-group | include outside\"','\"access-group outside-ingress in interface outside\"','Tvh697101c','Verify that \"outside-ingress\" access-list is applied to \"outside\" interface an direction is \"IN\" (infra context)'),(9334,5,1,NULL,13,1,'\"show run access-group | include dmz_comsvc\"','\"access-group dmz_comsvc-ingress in interface dmz_comsvc\"','Tvh697102c','Verify that \"dmz_comsvc-ingress\" access-list is applied to \"dmz_comsvc\" interface an direction is \"IN\" (infra context)'),(9335,5,1,NULL,13,1,'\"show run access-list | include dmz_comsvc-ingress\"','[\"access-list dmz_comsvc-ingress extended permit udp any any object-group traceroute-port \", \"access-list dmz_comsvc-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => any - netops util servers\", \"access-list dmz_comsvc-ingress extended permit object-group ssh-ports object-group <location>-infra-comsvc-netops-hosts object-group <location>-vpn-fw-hosts \", \"access-list dmz_comsvc-ingress extended permit object-group ssh-ports object-group <location>-infra-comsvc-netops-hosts object <location>-infra-inside-mgmt-net \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => inside\", \"access-list dmz_comsvc-ingress extended permit object-group collectd-ports object-group <location>-infra-comsvc-collectd-hosts object-group <location>-infra-inside-not-virt-net \", \"access-list dmz_comsvc-ingress extended permit object-group nagios-mon-ports object-group <location>-infra-comsvc-nagios-hosts object-group <location>-infra-inside-net \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => dmz_ad\", \"access-list dmz_comsvc-ingress extended permit object-group nagios-mon-ports object-group <location>-infra-comsvc-nagios-hosts object <location>-infra-ad-net \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => vpn(cws)\", \"access-list dmz_comsvc-ingress extended permit object-group nagios-out-mon-ports object-group <location>-infra-comsvc-nagios-hosts object-group <location>-vpn-fw-hosts \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => vpn(vega)\", \"access-list dmz_comsvc-ingress extended permit tcp object-group <location>-infra-comsvc-puppet-hosts object-group allowed-src-ports object-group vega-inside-cms-vips object-group web-ports \", \"access-list dmz_comsvc-ingress extended permit tcp object-group <location>-infra-comsvc-cobbler-vips object-group allowed-src-ports object-group vega-inside-cms-vips object-group web-ports \", \"access-list dmz_comsvc-ingress extended permit object-group ldap-ports object-group <location>-infra-comsvc-cobbler-vips object-group vega-cs-inside-ldap-hosts \", \"access-list dmz_comsvc-ingress extended permit object-group nagios-man-ports object-group <location>-infra-comsvc-nagios-hosts object-group vega-inside-nagios-vips \", \"access-list dmz_comsvc-ingress extended permit udp object-group <location>-infra-comsvc-logstash-hosts object-group allowed-src-ports object-group vega-inside-nagios-vips object-group trap-port \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => vpn(<location>-tenants-net)\", \"access-list dmz_comsvc-ingress extended permit object-group snmp-ports object-group <location>-infra-comsvc-collectd-hosts object-group <location>-vpn-fw-hosts \", \"access-list dmz_comsvc-ingress extended permit object-group nagios-mon-ports object-group <location>-infra-comsvc-nagios-hosts object-group <location>-tenants-net \", \"access-list dmz_comsvc-ingress remark Infra context: com_svc => outside\", \"access-list dmz_comsvc-ingress extended permit object-group www-ports object <location>-infra-comsvc-net any \", \"access-list dmz_comsvc-ingress extended permit object-group dns-ports object-group <location>-infra-comsvc-dns-hosts any \", \"access-list dmz_comsvc-ingress extended permit object-group smtp-ports object-group <location>-infra-comsvc-smtp-hosts any \", \"access-list dmz_comsvc-ingress extended deny ip any any log \"]','Tvh697103c','Verify that \"dmz_comsvc-ingress\" access-list configuration exists (infra context)'),(9336,5,1,NULL,12,1,'\"show run access-list | include vpn-ingress\"','[\"access-list vpn-ingress extended permit udp any any object-group traceroute-port \", \"access-list vpn-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list vpn-ingress extended permit object-group cws-client object-group prd-cdb-app-hosts object-group ccws-prd-lbs-hosts \", \"access-list vpn-ingress remark Scansafe context: mgmt => inside\", \"access-list vpn-ingress extended permit ip object-group <location>-mgmt-trusted-net object <location>-cws-inside-net \", \"access-list vpn-ingress extended permit tcp object-group cws-core-vertica-net object-group allowed-src-ports object <location>-cws-inside-net object-group detl-port \", \"access-list vpn-ingress remark Scansafe context: vpn => inside\", \"access-list vpn-ingress extended permit object-group nagios-mon-ports object-group <location>-infra-comsvc-nagios-hosts object <location>-cws-inside-net \", \"access-list vpn-ingress extended permit object-group cws-client object-group prod-cdb-app.las1-hosts object <location>-cws-inside-net \", \"access-list vpn-ingress extended permit object-group cws-client object-group vega-dev-hosts object <location>-cws-inside-net \", \"access-list vpn-ingress extended permit object-group cws-client object prod-ceh-app1.las1.sco.cisco.com object <location>-cws-inside-net \", \"access-list vpn-ingress extended permit object-group cws-client object-group cws-couchdb-monitoring-hosts object-group <location>-couchdb-hosts \", \"access-list vpn-ingress extended deny ip any any log \"]','Tvh716039c','Verify that \"vpn-ingress\" access-list configuration exists (scansafe context)'),(9337,5,1,NULL,13,1,'\"show run access-list | include dmz_ad-ingress\"','[\"access-list dmz_ad-ingress extended permit udp any any object-group traceroute-port \", \"access-list dmz_ad-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list dmz_ad-ingress remark Infra context: ad_dmz => com_svc\", \"access-list dmz_ad-ingress extended permit object-group proxy-ports object <location>-infra-ad-net object-group <location>-infra-comsvc-wsa-hosts \", \"access-list dmz_ad-ingress extended permit object-group dns-ports object <location>-infra-ad-net object-group <location>-infra-comsvc-dns-vips \", \"access-list dmz_ad-ingress extended permit object-group kvm-ports object-group <location>-infra-ad-trm-hosts object-group <location>-infra-comsvc-util-hosts \", \"access-list dmz_ad-ingress extended permit object-group platops-mgmt-ports object-group <location>-infra-ad-trm-hosts object-group <location>-infra-comsvc-util-hosts \", \"access-list dmz_ad-ingress remark Infra context: ad_dmz => outside\", \"access-list dmz_ad-ingress extended permit object-group ad-ports object-group <location>-infra-ad-dc-hosts object-group us-cs-inside-dc-hosts \", \"access-list dmz_ad-ingress extended permit tcp object-group <location>-infra-ad-wsus-hosts object-group allowed-src-ports any object-group web-ports \", \"access-list dmz_ad-ingress extended permit object-group ntp-ports object <location>-infra-ad-net object-group <location>-infra-ntp-hosts \", \"access-list dmz_ad-ingress remark Infra context: ad_dmz => inside\", \"access-list dmz_ad-ingress extended permit object-group smb-ports object <location>-infra-ad-net object-group <location>-infra-inside-vbu-hosts \", \"access-list dmz_ad-ingress extended permit object-group www-ports object-group <location>-infra-ad-vum-hosts object-group <location>-infra-inside-vsv-hosts \", \"access-list dmz_ad-ingress extended permit object-group vwc-ports object-group <location>-infra-ad-vsphere-hosts object-group <location>-infra-inside-vwc-hosts \", \"access-list dmz_ad-ingress extended permit object-group console-ports object-group <location>-infra-ad-vsphere-hosts object-group <location>-infra-inside-virt-net \", \"access-list dmz_ad-ingress extended permit object-group vsv-ports object-group <location>-infra-ad-vsphere-hosts object-group <location>-infra-inside-vsv-hosts \", \"access-list dmz_ad-ingress extended permit object-group vsphere-ports object-group <location>-infra-ad-trm-hosts object <location>-infra-inside-cws-virt-net \", \"access-list dmz_ad-ingress extended permit object-group kvm-ports object-group <location>-infra-ad-trm-hosts object-group <location>-infra-inside-ucs-net \", \"access-list dmz_ad-ingress extended permit object-group ucs-man-ports object-group <location>-infra-ad-trm-hosts object-group <location>-infra-inside-ucsm-hosts \", \"access-list dmz_ad-ingress extended permit object-group www-ports object-group <location>-infra-ad-trm-hosts object-group <location>-infra-inside-ucsm-hosts \", \"access-list dmz_ad-ingress extended permit object-group ad-ports object-group <location>-infra-ad-trm-hosts object-group vega-cs-inside-jumpbox-hosts \", \"access-list dmz_ad-ingress extended permit object-group platops-mgmt-ports object-group <location>-infra-ad-trm-hosts object-group las1-cs-inside-platops-util-hosts \", \"access-list dmz_ad-ingress remark Infra context: ad_dmz => vpn(all)\", \"access-list dmz_ad-ingress extended permit object-group av-ports object <location>-infra-ad-net object-group nap5-cs-inside-av-hosts \", \"access-list dmz_ad-ingress extended permit object-group www-ports object-group <location>-infra-ad-wsus-hosts object-group nap5-cs-inside-wsus-hosts \", \"access-list dmz_ad-ingress extended permit object-group ad-ports object-group <location>-infra-ad-dc-hosts object-group all-infra-ad-dc-hosts \", \"access-list dmz_ad-ingress extended permit object-group ad-ports object-group <location>-infra-ad-dc-hosts object-group vega-cs-inside-dc-hosts \", \"access-list dmz_ad-ingress extended deny ip any any log \"]','Tvh716040c','Verify that \"dmz_ad-ingress\" access-list configuration exists (infra context)'),(9338,5,1,NULL,13,1,'\"show run access-list | include vpn-ingress\"','[\"access-list vpn-ingress extended permit udp any any object-group traceroute-port \", \"access-list vpn-ingress extended permit icmp any any object-group allowed-trusted-icmp-ingress \", \"access-list vpn-ingress extended permit object-group www-ports object-group nap5-cs-inside-wsus-hosts object-group <location>-infra-ad-wsus-hosts \", \"access-list vpn-ingress extended permit object-group puppet-ports object las1-cs-mgmt-net object-group <location>-infra-comsvc-puppet-vips \", \"access-list vpn-ingress remark Infra context: vpn(tenants) => com_svc\", \"access-list vpn-ingress extended permit object-group ntp-ports object-group <location>-tenants-net object-group <location>-infra-ntp-hosts \", \"access-list vpn-ingress extended permit object-group dns-ports object-group <location>-tenants-net object-group <location>-infra-comsvc-dns-vips \", \"access-list vpn-ingress extended permit object-group cobbler-ports object-group <location>-tenants-net object-group <location>-infra-comsvc-cobbler-vips \", \"access-list vpn-ingress extended permit tcp object-group <location>-tenants-net object-group allowed-src-ports object-group <location>-infra-comsvc-graphite-vips object-group graphite-port \", \"access-list vpn-ingress extended permit tcp object-group <location>-tenants-net object-group allowed-src-ports object-group <location>-infra-comsvc-yum-hosts object-group web-ports \", \"access-list vpn-ingress extended permit tcp object-group <location>-tenants-net object-group allowed-src-ports object-group <location>-infra-comsvc-rabbitmq-vips object-group rabbitmq-port \", \"access-list vpn-ingress extended permit tcp object-group <location>-tenants-net object-group allowed-src-ports object-group <location>-infra-comsvc-puppet-vips object-group puppet-port \", \"access-list vpn-ingress extended permit tcp object-group <location>-tenants-net object-group allowed-src-ports object-group <location>-infra-comsvc-puppet-activemq-vips object-group puppet-activemq-port \", \"access-list vpn-ingress remark Infra context: vpn(tenants) => inside\", \"access-list vpn-ingress extended permit ip object-group <location>-vpn-fw-hosts object-group <location>-infra-inside-acs-hosts \", \"access-list vpn-ingress extended permit object-group aaa-ports object-group <location>-vpn-fw-hosts object-group <location>-infra-inside-acs-hosts \", \"access-list vpn-ingress extended permit ip object-group all-infra-inside-acs-hosts object-group <location>-infra-inside-acs-hosts \", \"access-list vpn-ingress extended permit object-group aaa-ports object-group all-infra-inside-acs-hosts object-group <location>-infra-inside-acs-hosts \", \"access-list vpn-ingress extended permit object-group netflow-ports object-group <location>-vpn-fw-hosts object-group <location>-infra-comsvc-logstash-vips \", \"access-list vpn-ingress extended permit object-group syslog-ports object-group <location>-vpn-fw-hosts object-group <location>-infra-comsvc-logstash-vips \", \"access-list vpn-ingress remark Infra context: vpn(mgmt) => com_svc\", \"access-list vpn-ingress extended permit ip object-group <location>-mgmt-trusted-net object <location>-all-net log \", \"access-list vpn-ingress extended permit object-group ssh-ports object-group vega-cs-inside-dns-hosts object-group <location>-infra-comsvc-dns-hosts \", \"access-list vpn-ingress remark Infra context: vpn(vega) => com_svc\", \"access-list vpn-ingress extended permit object-group ssh-ports object-group las1-cs-inside-repo-hosts object-group <location>-infra-comsvc-cobbler-vips \", \"access-list vpn-ingress extended permit object-group ssh-ports object-group las1-cs-inside-repo-hosts object-group <location>-infra-comsvc-puppet-vips \", \"access-list vpn-ingress extended permit object-group snmp-ports object-group vega-cs-inside-akeoas-hosts object-group <location>-infra-inside-nfs-netapp-hosts \", \"access-list vpn-ingress extended permit object-group ssh-ports object-group vega-cs-inside-nagios-hosts object-group <location>-infra-comsvc-nagios-hosts \", \"access-list vpn-ingress extended permit object-group ssh-ports object-group vega-cs-inside-akeoas-hosts object-group <location>-infra-comsvc-nagios-hosts \", \"access-list vpn-ingress extended permit tcp object-group vega-cs-inside-ceh-hosts object-group allowed-src-ports object-group <location>-infra-comsvc-cobbler-vips object-group web-ports \", \"access-list vpn-ingress extended permit tcp object-group vega-cs-inside-repo-hosts object-group allowed-src-ports object prod-puppet-www1.<location>.sco.cisco.com object-group ssh-port \", \"access-list vpn-ingress extended permit tcp object-group vega-cs-inside-ceh-hosts object-group allowed-src-ports object-group <location>-infra-comsvc-puppet-activemq-vips object-group puppet-activemq-port \", \"access-list vpn-ingress extended permit tcp object-group vega-inside-rabbitmq-vips object-group allowed-src-ports object-group <location>-infra-comsvc-rabbitmq-vips object-group rabbitmq-port \", \"access-list vpn-ingress remark Infra context: vpn(vega) => inside\", \"access-list vpn-ingress extended permit object-group www-ports object-group vega-cs-inside-ceh-hosts object-group <location>-infra-inside-vsv-hosts \", \"access-list vpn-ingress extended permit ip object-group vega-<location>-cs-inside-netapp-mgmt-hosts object-group <location>-infra-inside-netapp-hosts \", \"access-list vpn-ingress remark Infra context: vpn(vega) => inside\", \"access-list vpn-ingress extended permit object-group ucs-man-ports object-group vega-cs-inside-ucs-central-hosts object-group <location>-infra-inside-ucsm-hosts \", \"access-list vpn-ingress extended permit object-group platops-mgmt-ports object-group las1-cs-inside-platops-util-hosts object <location>-infra-ad-net \", \"access-list vpn-ingress remark Infra context: vpn(fra2) => dmz_ad\", \"access-list vpn-ingress extended permit object-group ad-ports object-group all-infra-ad-dc-hosts object-group <location>-infra-ad-dc-hosts \", \"access-list vpn-ingress remark Infra context: vpn(vega) => dmz_ad\", \"access-list vpn-ingress extended permit object-group ad-ports object-group us-cs-inside-dc-hosts object-group <location>-infra-ad-dc-hosts \", \"access-list vpn-ingress extended permit object-group ad-ports object-group vega-cs-inside-dc-hosts object-group <location>-infra-ad-dc-hosts \", \"access-list vpn-ingress remark Infra vpn(fra2) => comsvc\", \"access-list vpn-ingress extended deny ip any any log \"]','Tvh716041c','Verify that \"vpn-ingress\" access-list configuration exists (infra context)'),(9339,5,1,NULL,12,1,'\"show run access-group | include vpn\"','\"access-group vpn-ingress in interface vpn\"','Tvh716042c','Verify that \"vpn-ingress\" access-list is applied to \"vpn\" interface an direction is \"IN\" (scansafe context)'),(9340,5,1,NULL,13,1,'\"show run access-group | include dmz_ad\"','\"access-group dmz_ad-ingress in interface dmz_ad\"','Tvh716043c','Verify that \"dmz_ad-ingress\" access-list is applied to \"dmz_ad\" interface an direction is \"IN\" (infra context)'),(9341,5,1,NULL,13,1,'\"show run access-group | include vpn\"','\"access-group vpn-ingress in interface vpn\"','Tvh716044c','Verify that \"vpn-ingress\" access-list is applied to \"vpn\" interface an direction is \"IN\" (infra context)'),(9342,5,1,NULL,14,1,'\"show activation-key detail | include This platform has\"','\"This platform has an ASA5585-SSP-60 VPN Premium license\"','Tvh700565c','13.2.1.1 Verify that installed license is \"ASA5585-SSP-60 VPN Premium license\"'),(9343,5,1,NULL,14,1,'\"show activation-key detail | include Encryption\"','[\"#^Encryption-DES.*: Enabled.*perpetual#\", \"#^Encryption-3DES-AES.*: Enabled.*perpetual#\", \"#^Encryption-DES.*: Enabled.*perpetual#\", \"#^Encryption-3DES-AES.*: Enabled.*perpetual#\", \"#^Encryption-DES.*: Enabled.*perpetual#\", \"#^Encryption-3DES-AES.*: Enabled.*perpetual#\"]','Tvh700566c','13.2.1.(2-3) Verify that DES/3DES-AES Encryption feature is enabled'),(9344,5,1,NULL,14,1,'\"show activation-key detail | include Failover +\"','[\"#^Failover.*: Active/Active.*perpetual#\", \"#^Failover.*: Active/Active.*perpetual#\", \"#^Failover.*: Active/Active.*perpetual#\"]','Tvh700567c','13.2.1.3 Verify that Failover feature is enabled'),(9345,5,1,NULL,14,1,'\"show activation-key detail | include platform:|Security Contexts\"','[\"Licensed features for this platform\", \"#^Security Contexts.*: 10.*perpetual#\", \"Failover cluster licensed features for this platform\", \"#^Security Contexts.*: 20.*perpetual#\", \"Licensed permanent key features for this platform\", \"#^Security Contexts.*: 10.*perpetual#\"]','Tvh700568c','13.2.1.4 Verify that Security Contexts feature is enabled'),(9346,5,1,NULL,14,1,'\"show run ntp\"','[\"ntp server <priv_mgmt_ipv4>.2 source mgmt\", \"ntp server <priv_mgmt_ipv4>.3 source mgmt\"]','Tvh756772c','Verify that ntp server ip is \'sw-core\' VLAN80 interface ip'),(9347,5,0,'fw-brd-03',14,1,'\"show run cluster\"','[\"cluster group <location>\", \"enable\"]','Tvh758796c','FW-BRD-03: Verify that cluster feature is enabled (system context)'),(9348,5,0,'fw-brd-04',14,1,'\"show run cluster\"','[\"cluster group <location>\", \"enable\"]','Tvh758798c','FW-BRD-04: Verify that cluster feature is enabled (system context)'),(9349,5,0,'fw-brd-03',14,1,'\"sh run cluster | include priority\"','\"priority 1\"','Tvh758799c','FW-BRD-03: Verify that cluster \'priority\' is 1 (system context)'),(9350,5,0,'fw-brd-04',14,1,'\"sh run cluster | include priority\"','\"priority 2\"','Tvh758800c','FW-BRD-04: Verify that cluster \'priority\' is 1 (system context)'),(9351,5,0,'fw-brd-03',14,1,'\"sh run cluster | include local-unit\"','\"local-unit fw-brd-03-<location>\"','Tvh758801c','FW-BRD-03: Verify that cluster \'local-unit\' is fw-brd-03-LOCATION> (system context)'),(9352,5,0,'fw-brd-04',14,1,'\"sh run cluster | include local-unit\"','\"local-unit fw-brd-04-<location>\"','Tvh758802c','FW-BRD-04: Verify that cluster \'local-unit\' is fw-brd-04-LOCATION> (system context)'),(9353,5,0,'fw-brd-03',14,1,'\"sh run cluster | include cluster-interface\"','\"cluster-interface Port-channel20 ip 10.255.255.1 255.255.255.0\"','Tvh758803c','FW-BRD-03: Verify that cluster \'cluster-interface\' ip is 10.255.255.1 (system context)'),(9354,5,0,'fw-brd-04',14,1,'\"sh run cluster | include cluster-interface\"','\"cluster-interface Port-channel20 ip 10.255.255.2 255.255.255.0\"','Tvh758804c','FW-BRD-04: Verify that cluster \'cluster-interface\' ip is 10.255.255.2 (system context)'),(9355,5,0,'fw-brd-03',14,1,'\"sh run cluster\"','[\"cluster group\", \"local-unit\", \"cluster-interface\", \"priority\", \"console-replicate\", \"health-check holdtime 3\", \"clacp system-mac auto system-priority 1\", \"enable\"]','Tvh758805c','FW-BRD-03: Verify that \'cluster group\' is configured according documentation (system context)'),(9356,5,0,'fw-brd-04',14,1,'\"sh run cluster\"','[\"cluster group\", \"local-unit\", \"cluster-interface\", \"priority\", \"console-replicate\", \"health-check holdtime 3\", \"clacp system-mac auto system-priority 1\", \"enable\"]','Tvh758806c','FW-BRD-04: Verify that \'cluster group\' is configured according documentation (system context)'),(9357,5,0,'fw-brd-03',14,1,'\"sh run | include mtu\"','\"mtu cluster 9216\"','Tvh758808c','FW-BRD-03: Verify that \'mtu cluster\' is 9216 (system context)'),(9358,5,0,'fw-brd-04',14,1,'\"sh run | include mtu\"','\"mtu cluster 9216\"','Tvh758809c','FW-BRD-04: Verify that \'mtu cluster\' is 9216 (system context)'),(9359,5,1,NULL,14,1,'\"more disk0:/admin.cfg | i snmp\"','[\"snmp-server host mgmt <priv_mon_ipv4>.19 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.20 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.38 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.40 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.47 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.48 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.49 community H3nn3ssY version 2c\", \"snmp-server host mgmt <priv_mon_ipv4>.50 community H3nn3ssY version 2c\", \"snmp-server location <location>\", \"snmp-server contact netops-scansafe-alerts@cisco.com\", \"snmp-server community H3nn3ssY\", \"snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart\"]','Tvh768132c','Verify snmp-access list is configured in Admin Context'),(9360,5,1,NULL,14,1,'\"more disk0:/infra.cfg | i snmp\"','[\"snmp-server host dmz_comsvc <priv_mon_ipv4>.19 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.20 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.38 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.39 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.40 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.47 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.48 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.49 community H3nn3ssY version 2c\", \"snmp-server host dmz_comsvc <priv_mon_ipv4>.50 community H3nn3ssY version 2c\", \"snmp-server location <location>\", \"snmp-server contact netops-scansafe-alerts@cisco.com\", \"snmp-server community H3nn3ssY\"]','Tvh768138c','Verify snmp-access list is configured in Infra Context'),(9361,5,1,NULL,14,1,'\"more disk0:/scansafe.cfg | i snmp\"','[\"snmp-server host vpn <priv_mon_ipv4>.19 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.20 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.38 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.39 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.40 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.47 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.48 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.49 community H3nn3ssY version 2c\", \"snmp-server host vpn <priv_mon_ipv4>.50 community H3nn3ssY version 2c\", \"snmp-server location <location>\", \"snmp-server contact netops-scansafe-alerts@cisco.com\", \"snmp-server community H3nn3ssY\"]','Tvh768139c','Verify snmp-access list is configured in Scansafe Context'),(9362,1,1,NULL,NULL,1,'\"show license\"','\"FEATURE LAN_BASE_SERVICES_PKG\"','Tvh714939c','16.2.2 Verify package name LAN_BASE_SERVICES_PKG is mentioned in the license file content'),(9363,1,1,NULL,NULL,1,'\"show license usage\"','\"LAN_BASE_SERVICES_PKG Yes - Unused Never -\"','Tvh714940c','16.2.3 Verify installation status and expiry of license LAN_BASE_SERVICES_PKG'),(9364,1,1,NULL,NULL,1,'\"show license brief\"','\"#^license.*lic#\"','Tvh715170c','16.2.1 Verify license file is installed'),(9365,1,1,NULL,NULL,1,'\"show ip access-lists mgmt-access\"','[\"#.*10 remark.*ScanSafe#\", \"20 permit ip 10.53.35.96/27 any\", \"30 permit ip 192.168.0.0/24 any\", \"40 permit ip 192.168.21.0/24 any\", \"#.*50 remark.*IronPort#\", \"60 permit ip 10.8.0.0/16 any\", \"70 permit ip 173.37.0.0/20 any\", \"#.*80 remark.*netops util servers#\", \"90 permit ip <priv_mon_ipv4>.38/32 any\", \"100 permit ip <priv_mon_ipv4>.39/32 any\", \"110 permit ip <priv_mon_ipv4>.40/32 any\"]','Tvh696377c','Verify access-list \'mgmt-access\' configuration'),(9366,1,1,NULL,NULL,1,'\"show ip access-lists snmp-access\"','[\"#.*10 remark.*snmp pollers#\", \"20 permit ip <priv_mon_ipv4>.49/32 any\", \"30 permit ip <priv_mon_ipv4>.50/32 any\", \"#.*40 remark.*nagios pollers#\", \"50 permit ip <priv_mon_ipv4>.19/32 any\", \"60 permit ip <priv_mon_ipv4>.20/32 any\", \"70 permit ip <priv_mon_ipv4>.47/32 any\", \"80 permit ip <priv_mon_ipv4>.48/32 any\"]','Tvh696381c','Verify access-list \'snmp-access\' configuration'),(9367,1,1,NULL,NULL,1,'\"show running-config | include \\\"vty|access-class\\\"\"','[\"line vty\", \"access-class mgmt-access in\"]','Tvh696383c','Verify access-list \'mgmt-access\' is applied on \'line vty\''),(9368,1,1,NULL,NULL,1,'\"show snmp community\"','\"#.*Zubr0wka.*network-operator.*snmp-access#\"','Tvh696384c','Verify access-list \'snmp-access\' is applied on snmp protocol'),(9369,1,1,NULL,NULL,1,'\"show running-config | include \\\"lacp system\\\"\"','\"lacp system-priority 2500\"','Tvh696210c','Verify that LACP System Priority has default value (2500)'),(9370,1,1,NULL,NULL,1,'\"show running-config interface Eth1/49, Eth1/50 | exclude !\"','[\"switchport mode trunk\", \"channel-group 1 mode active\", \"switchport mode trunk\", \"channel-group 1 mode active\"]','Tvh696222c','Verify that 2 ports (Eth1/49, Eth1/50) are conigured as \'switchport mode trunk\' and \'mode active\''),(9371,1,1,NULL,NULL,1,'\"show run ntp\"','[\"ntp server <priv_mgmt_ipv4>.2 use-vrf mgmt\", \"ntp server <priv_mgmt_ipv4>.3 use-vrf mgmt\"]','Tvh756778c','Verify that ntp server ip is \'sw-core\' VLAN80 interface ip'),(9372,1,1,NULL,NULL,1,'\"show run ntp\"','\"ntp source-interface Vlan80\"','Tvh756779c','Verify that \'ntp source-interface \' interface is VLAN80'),(9373,1,1,NULL,NULL,1,'\"show run ntp\"','\"ntp logging\"','Tvh756780c','Verify that ntp logging is enabled'),(9374,5,0,'fw-brd-03',12,1,'\"sh run interface outside | inc ipv6\"','\"#.*<pub_fw_outside_all_ipv6>::6/64#\"','Tvh757239c','FW-BRD-03: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9375,5,0,'fw-brd-04',12,1,'\"sh run interface outside | inc ipv6\"','\"#.*<pub_fw_outside_all_ipv6>::6/64#\"','Tvh757240c','FW-BRD-04: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context) IPv6'),(9376,5,0,'fw-brd-03',13,1,'\"sh run interface outside | inc ipv6\"','\"#.*<pub_fw_outside_all_ipv6>::4/64#\"','Tvh757241c','FW-BRD-03: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context) IPv6'),(9377,5,0,'fw-brd-04',13,1,'\"sh run interface outside | inc ipv6\"','\"#.*<pub_fw_outside_all_ipv6>::4/64#\"','Tvh757242c','FW-BRD-04: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context) IPv6'),(9378,2,1,NULL,11,1,'\"show run spanning-tree | include pathcost\"','\"spanning-tree pathcost method long\"','Tvh696194c','Verify that STP path cost is globally configured as \"Long Path Cost\" (VDC2-VDC)'),(9379,2,1,NULL,11,1,'\"show run spanning-tree | include bpduguard\"','\"spanning-tree port type edge bpduguard default\"','Tvh696197c','Verify that STP BPDU Guard feature is enabled (VDC2-VDC)'),(9380,2,1,NULL,11,1,'\"show run spanning-tree | include \\\"interface|port type\\\"\"','[\"interface port-channel10\", \"spanning-tree port type network\"]','Tvh696201c','Verify that \"VPC Peer Link\" Port Channel has STP configured as \"network\" (VDC2-VDC)'),(9381,2,1,NULL,11,1,'\"show run spanning-tree | include \\\"interface|port type\\\"\"','[\"spanning-tree port type edge bpduguard default\", \"interface port-channel10\", \"spanning-tree port type network\", \"interface port-channel12\", \"spanning-tree port type network\", \"interface port-channel13\", \"spanning-tree port type edge trunk\", \"interface port-channel14\", \"spanning-tree port type edge trunk\", \"interface port-channel50\", \"spanning-tree port type edge trunk\", \"interface port-channel51\", \"spanning-tree port type edge trunk\", \"interface port-channel52\", \"spanning-tree port type network\", \"interface port-channel53\", \"spanning-tree port type network\", \"interface port-channel54\", \"spanning-tree port type edge\", \"interface port-channel55\", \"spanning-tree port type edge\", \"interface port-channel56\", \"spanning-tree port type edge trunk\"]','Tvh696202c','Verify that all ports has STP type \"edge\" except \"VPC Peer Link\" (VDC2-VDC)'),(9382,2,1,NULL,11,1,'\"show startup-config | include vlan | include priority\"','\"spanning-tree vlan 80-88,93,150,169 priority 4096\"','Tvh696206c','Verify that \"VPC VLANs\" have STP priority 4096 on both switches (VDC2-VDC)'),(9383,2,0,'sw-core-01',11,1,'\"show startup-config | include vlan | include priority\"','[\"spanning-tree vlan 3-6,11,14-15 priority 24576\", \"spanning-tree vlan 80-88,93,150,169 priority 4096\"]','Tvh696208c','Verify that sw-core-01 has STP priority 24576 except VPC VLANs (VDC2-VDC)'),(9384,2,0,'sw-core-02',11,1,'\"show startup-config | include vlan | include priority\"','[\"spanning-tree vlan 3-6,11,14-15 priority 28672\", \"spanning-tree vlan 80-88,93,150,169 priority 4096\"]','Tvh696209c','Verify that sw-core-02 has STP priority 28672 except VPC VLANs (VDC2-VDC)'),(9385,2,1,NULL,11,1,'\"show run spanning-tree all | include loopguard\"','\"no spanning-tree loopguard default\"','Tvh696219c','Verify that STP Loop Guard feature is disabled (VDC2-VDC)'),(9386,2,1,NULL,11,1,'\"sh run int | section \\\"^interface port-channel10$\\\"; sh run spanning-tree all | section \\\"^interface port-channel10$\\\"; sh run spanning-tree all | section \\\"bridge assurance|loopguard\\\"\"','[\"interface port-channel10\", \"switchport\", \"switchport mode trunk\", \"switchport trunk allowed vlan 80-88,93,150,169\", \"spanning-tree port type network\", \"vpc peer-link\", \"interface port-channel10\", \"spanning-tree port-priority 128\", \"spanning-tree cost auto\", \"spanning-tree link-type auto\", \"spanning-tree port type network\", \"no spanning-tree bpduguard\", \"no spanning-tree bpdufilter\", \"spanning-tree bridge assurance\", \"no spanning-tree loopguard default\"]','Tvh696221c','Verify that STP configuration for VPC Peer Link is the same on both switches (VDC2-VDC)'),(9387,2,1,NULL,19,1,'\"show run spanning-tree | include pathcost\"','\"spanning-tree pathcost method long\"','Tvh758354c','Verify that STP path cost is globally configured as \"Long Path Cost\" (VDC3-VDC)'),(9388,2,1,NULL,19,1,'\"show run spanning-tree all | include loopguard\"','\"no spanning-tree loopguard default\"','Tvh760538c','Verify that STP Loop Guard feature is disabled (VDC3-VDC)'),(9389,2,1,NULL,19,1,'\"show run spanning-tree | include \\\"interface|port type\\\"\"','[\"interface port-channel10\", \"spanning-tree port type network\"]','Tvh760539c','Verify that \"VPC Peer Link\" Port Channel has STP configured as \"network\" (VDC3-VDC)'),(9390,2,1,NULL,19,1,'\"sh run int | section \\\"^interface port-channel10$\\\"; sh run spanning-tree all | section \\\"^interface port-channel10$\\\"; sh run spanning-tree all | section \\\"bridge assurance|loopguard\\\"\"','[\"interface port-channel10\", \"switchport\", \"switchport mode trunk\", \"switchport trunk allowed vlan 3,5-6,11,14-15,1001\", \"spanning-tree port type network\", \"vpc peer-link\", \"interface port-channel10\", \"spanning-tree port-priority 128\", \"spanning-tree cost auto\", \"spanning-tree link-type auto\", \"spanning-tree port type network\", \"no spanning-tree bpduguard\", \"no spanning-tree bpdufilter\", \"spanning-tree bridge assurance\", \"no spanning-tree loopguard default\"]','Tvh760540c','Verify that STP configuration for VPC Peer Link is the same on both switches (VDC3-VDC)'),(9391,2,1,NULL,11,1,'\"show vrf default\"','[\"#^VRF-Name.*VRF-ID.*State.*Reason#\", \"#^default.*1.*Up.*--#\"]','Tvh696496c','Verify that \"default VRF\" is configured (VDC2-VDC)'),(9392,2,1,NULL,11,1,'\"show vrf peer-keepalive\"','[\"#^VRF-Name.*VRF-ID.*State.*Reason#\", \"#^peer-keepalive.*[0-9]+.*Up.*--#\"]','Tvh696498c','Verify that \"peer-keepalive VRF\" is configured (VDC2-VDC)'),(9393,2,1,NULL,11,1,'\"show vrf | include ss-main|infra-main|management\"','[\"#^infra-main.*4.*Up.*--#\", \"#^management.*2.*Up.*--#\", \"#^ss-main.*3.*Up.*--#\"]','Tvh696500c','Verify that \"ss-main, infra-main, management VRF\" are configured (VDC2-VDC)'),(9394,2,1,NULL,11,1,'\"show vrf | include infra-dmz-ad|nfra-dmz-comsvc\"','[\"#^infra-dmz-ad.*[0-9]+.*Up.*--#\", \"#^infra-dmz-comsvc .*[0-9]+.*Up.*--#\"]','Tvh758162c','Verify that \'infra-dmz-ad, infra-dmz-comsvc VRF\' are configured (VDC2-VDC)'),(9395,2,1,NULL,19,1,'\"show vrf default\"','[\"#^VRF-Name.*VRF-ID.*State.*Reason#\", \"#^default.*1.*Up.*--#\"]','Tvh758361c','Verify that \"default VRF\" is configured (VDC3-VDC)'),(9396,2,1,NULL,19,1,'\"show vrf peer-keepalive\"','[\"#^VRF-Name.*VRF-ID.*State.*Reason#\", \"#^peer-keepalive.*3.*Up.*--#\"]','Tvh758362c','Verify that \"peer-keepalive VRF\" is configured (VDC3-VDC)'),(9397,2,1,NULL,19,1,'\"show vrf | i management\"','\"#^management.*2.*Up.*--#\"','Tvh758363c','Verify that \"ss-main, infra-main, management VRF\" are configured (VDC3-VDC)'),(9398,2,1,NULL,NULL,1,'\"show vdc\"','\"#1.*Admin#\"','Tvh696784c','Verify that ADMIN VDC is configured'),(9399,2,1,NULL,NULL,1,'\"show vdc\"','\"#.*2.*vdc2.*Ethernet#\"','Tvh696785c','Verify that VDC2 VDC is configured'),(9400,2,1,NULL,NULL,1,'\"show run vdc | include \\\"vdc|allocate interface\\\"\"','[\"vdc vdc2 id 2\", \"allocate interface Ethernet3/1-16,Ethernet3/25-48\", \"allocate interface Ethernet4/1-16,Ethernet4/25-48\"]','Tvh696786c','Verify that VDC2 allocates all ports in range Eth3/1-16, Eth3/25-48,th4/1-16, Eth4/25-48'),(9401,2,1,NULL,NULL,1,'\"show run vdc | include \\\"vdc|allocate interface\\\"\"','[\"vdc vdc3 id 3\", \"allocate interface Ethernet3/17-24\", \"allocate interface Ethernet4/17-24\"]','Tvh753580c','Verify that VDC3 allocates all ports in range Eth3/17-24, Eth4/17-24'),(9402,2,1,NULL,NULL,1,'\"show vdc\"','\"#.*3.*vdc3.*Ethernet#\"','Tvh758128c','Verify that VDC3 VDC is configured'),(9403,2,0,'sw-core-01',NULL,1,'\"sh run | section \\\"vdc sw-core-01-<location>\\\"\"','[\"vdc sw-core-01-<location> id 1\", \"cpu-share 5\", \"limit-resource vlan minimum 16 maximum 4094\", \"limit-resource monitor-session minimum 0 maximum 2\", \"limit-resource monitor-session-erspan-dst minimum 0 maximum 23\", \"limit-resource vrf minimum 2 maximum 4096\", \"limit-resource port-channel minimum 0 maximum 768\", \"limit-resource u4route-mem minimum 96 maximum 96\", \"limit-resource u6route-mem minimum 24 maximum 24\", \"limit-resource m4route-mem minimum 58 maximum 58\", \"limit-resource m6route-mem minimum 8 maximum 8\", \"limit-resource monitor-session-inband-src minimum 0 maximum\"]','Tvh758129c','SW-CORE-01: Verify that ADMIN VDC is configured acoording documentation'),(9404,2,0,'sw-core-02',NULL,1,'\"sh run | section \\\"vdc sw-core-02-<location>\\\"\"','[\"vdc sw-core-02-<location> id 1\", \"cpu-share 5\", \"limit-resource vlan minimum 16 maximum 4094\", \"limit-resource monitor-session minimum 0 maximum 2\", \"limit-resource monitor-session-erspan-dst minimum 0 maximum 23\", \"limit-resource vrf minimum 2 maximum 4096\", \"limit-resource port-channel minimum 0 maximum 768\", \"limit-resource u4route-mem minimum 96 maximum 96\", \"limit-resource u6route-mem minimum 24 maximum 24\", \"limit-resource m4route-mem minimum 58 maximum 58\", \"limit-resource m6route-mem minimum 8 maximum 8\", \"limit-resource monitor-session-inband-src minimum 0 maximum 1\"]','Tvh758130c','SW-CORE-02: Verify that ADMIN VDC is configured acoording documentation'),(9405,2,1,NULL,NULL,1,'\"sh run | section \\\"vdc vdc2\\\"\"','[\"vdc vdc2 id 2\", \"limit-resource module-type f2\", \"cpu-share 5\", \"allocate interface Ethernet3/1-16,Ethernet3/25-48\", \"allocate interface Ethernet4/1-16,Ethernet4/25-48\", \"boot-order 1\", \"limit-resource vlan minimum 16 maximum 4094\", \"limit-resource monitor-session minimum 0 maximum 2\", \"limit-resource monitor-session-erspan-dst minimum 0 maximum 23\", \"limit-resource vrf minimum 2 maximum 4096\", \"limit-resource port-channel minimum 0 maximum 768\", \"limit-resource u4route-mem minimum 8 maximum 8\", \"limit-resource u6route-mem minimum 4 maximum 4\", \"limit-resource m4route-mem minimum 8 maximum 8\", \"limit-resource m6route-mem minimum 5 maximum 5\", \"limit-resource monitor-session-inband-src minimum 0 maximum 1\"]','Tvh758131c','Verify that VDC2 VDC is configured according documentation'),(9406,2,1,NULL,NULL,1,'\"sh run | section \\\"vdc vdc3\\\"\"','[\"vdc vdc3 id 3\", \"limit-resource module-type f2\", \"cpu-share 5\", \"allocate interface Ethernet3/17-24\", \"allocate interface Ethernet4/17-24\", \"boot-order 1\", \"limit-resource vlan minimum 16 maximum 4094\", \"limit-resource monitor-session minimum 0 maximum 2\", \"limit-resource monitor-session-erspan-dst minimum 0 maximum 23\", \"limit-resource vrf minimum 2 maximum 4096\", \"limit-resource port-channel minimum 0 maximum 768\", \"limit-resource u4route-mem minimum 8 maximum 8\", \"limit-resource u6route-mem minimum 4 maximum 4\", \"limit-resource m4route-mem minimum 8 maximum 8\", \"limit-resource m6route-mem minimum 5 maximum 5\", \"limit-resource monitor-session-inband-src minimum 0 maximum 1\"]','Tvh758147c','Verify that VDC3 VDC is configured acoording documentation'),(9407,2,1,NULL,11,1,'\"sh run | section feature\"','[\"feature privilege\", \"feature ospf\", \"feature bgp\", \"feature ospfv3\", \"feature eigrp\", \"feature interface-vlan\", \"feature hsrp\", \"feature lacp\", \"feature dhcp\", \"feature vpc\"]','Tvh758148c','Verify that VDC2 Verify that VDC2 privilege, ospf, bgp, ospfv3, eigrp, interface-vlan, hsrp, lacp, dhcp, vpc features are enabled'),(9408,2,1,NULL,11,1,'\"sh run | section feature\"','[\"feature tacacs+\"]','Tvh758149c','Verify that VDC2 Verify that VDC2 tacacs+, pbr, netflow, sla sender features are enabled'),(9409,2,1,NULL,11,1,'\"sh run | section cfs\"','\"cfs eth distribute\"','Tvh758150c','Verify that VDC2 cfs eth distribute is enabled'),(9410,2,1,NULL,19,1,'\"sh run | section feature\"','[\"feature tacacs+\", \"feature interface-vlan\", \"feature lacp\", \"feature vpc\"]','Tvh758151c','Verify that VDC3 tacacs+, interface-vlan, lacp, vpc features are enabled'),(9411,2,1,NULL,19,1,'\"sh run | section cfs\"','\"cfs eth distribute\"','Tvh758152c','Verify that VDC3 cfs eth distribute is enabled'),(9412,2,1,NULL,11,1,'\"sh run | section service\"','\"service dhcp\"','Tvh758158c','Verify that VDC2 dhcp service is enabled'),(9413,2,1,NULL,11,1,'\"sh run | section \\\"ip dhcp relay\\\"\"','\"ip dhcp relay\"','Tvh758159c','Verify that VDC2 ip dhcp relay is configured'),(9414,2,1,NULL,11,1,'\"sh run | section \\\"no ip igmp\\\"\"','\"no ip igmp snooping optimise-multicast-flood\"','Tvh758160c','Verify that VDC2 igmp snooping optimise-multicast-flood is disabled'),(9415,2,1,NULL,11,1,'\"sh run | section ^vlan | no-more\"','[\"vlan 1,3-6,11,14-15,80-88,93,150,169\", \"vlan configuration 83\", \"ip igmp snooping querier <priv_mon_ipv4>.51\", \"vlan 3\", \"name DC-EXT-FWEXT\", \"vlan 4\", \"name DC-EXT-VPNEXT\", \"vlan 5\", \"name DC-DMZ-VPNINT\", \"vlan 6\", \"name DC-INT-FWININF\", \"vlan 11\", \"name DC-INT-FWINSS\", \"vlan 14\", \"name DC-DMZ-AD\", \"vlan 15\", \"name DC-DMZ-COMSVC\", \"vlan 80\", \"name IN-INT-MGMT\", \"vlan 81\", \"name IN-INT-UCS\", \"vlan 82\", \"name IN-INT-VIRT\", \"vlan 83\", \"name IN-INT-COMSVC\", \"vlan 84\", \"name IN-Xen-NFS\", \"vlan 85\", \"name IN-INT-VMOTION\", \"vlan 86\", \"name IN-DMZ-AD\", \"vlan 87\", \"name IN-VM-NFS\", \"vlan 88\", \"name IN-SEC-MGMT\", \"vlan 93\", \"name IN-LB-COMSVC-SYNC\", \"vlan 150\", \"name SS-INT-APP1\", \"vlan 169\", \"name SS-INT-COMSVC\"]','Tvh758161c','Verify that VDC2 VLANs are configured'),(9416,2,1,NULL,19,1,'\"sh run | section ^vlan\"','[\"vlan 1,3-6,11,14-15,1001\", \"vlan 3\", \"name DC-EXT-FWEXT\", \"vlan 4\", \"name DC-EXT-VPNEXT\", \"vlan 5\", \"name DC-DMZ-VPNINT\", \"vlan 6\", \"name DC-INT-FWININF\", \"vlan 11\", \"name DC-INT-FWINSS\", \"vlan 14\", \"name DC-DMZ-AD\", \"vlan 15\", \"name DC-DMZ-COMSVC\", \"vlan 1001\", \"name ASA-CLUSTER-CONTROL\"]','Tvh758350c','Verify that VDC3 VLANs are configured'),(9417,2,1,NULL,NULL,1,'\"sh run | section password\"','\"no password strength-check\"','Tvh758458c','Verify that \'password strength-check\' is disabled (ADMIN-VDC)'),(9418,2,1,NULL,11,1,'\"sh run | section password\"','\"no password strength-check\"','Tvh758459c','Verify that \'password strength-check\' is disabled (VDC2-VDC)'),(9419,2,1,NULL,19,1,'\"sh run | section password\"','\"no password strength-check\"','Tvh758460c','Verify that \'password strength-check\' is disabled (VDC3-VDC)'),(9420,2,1,NULL,NULL,1,'\"sh run | section domain-lookup\"','\"no ip domain-lookup\"','Tvh758461c','Verify that \'domain-lookup\' is disabled (ADMIN-VDC)'),(9421,2,1,NULL,11,1,'\"sh run | section domain-lookup\"','\"no ip domain-lookup\"','Tvh758462c','Verify that \'domain-lookup\' is disabled (VDC2-VDC)'),(9422,2,1,NULL,19,1,'\"sh run | section domain-lookup\"','\"ip domain-lookup\"','Tvh758463c','Verify that \'domain-lookup\' is enabled (VDC3-VDC)'),(9423,2,1,NULL,NULL,1,'\"sh run | section domain-name\"','\"ip domain-name sco.cisco.com\"','Tvh758464c','Verify that \'domain-name\' is \'sco.cisco.com\' (ADMIN-VDC)'),(9424,2,1,NULL,11,1,'\"sh run | section domain-name\"','\"ip domain-name sco.cisco.com\"','Tvh758465c','Verify that \'domain-name\' is \'sco.cisco.com\' (VDC2-VDC)'),(9425,2,1,NULL,11,1,'\"sh run | section source-route\"','\"no ip source-route\"','Tvh758466c','Verify that \'source-route\' is disabled (VDC2-VDC)'),(9426,2,1,NULL,11,1,'\"sh run | section \\\"ipv6 prefix-list ipv6static-to-ipv6ospf2\\\"\"','\"ipv6 prefix-list ipv6static-to-ipv6ospf2 seq 200 deny 0::/0 le 128\"','Tvh760567c','Verify that prefix \'ipv6static-to-ipv6ospf2\' is configured (VDC2-VDC)'),(9427,2,1,NULL,11,1,'\"sh run | section ^route-map\"','[\"route-map ipv6static-to-ipv6ospf2 permit 10\", \"match ipv6 address prefix-list ipv6static-to-ipv6ospf2\"]','Tvh760568c','Verify that route-map \'ipv6static-to-ipv6ospf2\' is configured (VDC2-VDC)'),(9428,2,1,NULL,11,1,'\"sh run | section snmp-server\"','\"snmp-server contact netops-scansafe-alerts@cisco.com\"','Tvh758290c','Verify that \'snmp-server contact\' value is \'netops-scansafe-alerts@cisco.com\' (VDC2-VDC)'),(9429,2,1,NULL,11,1,'\"sh run | section snmp-server\"','\"snmp-server location <location>\"','Tvh758291c','Verify that \'snmp-server location\' value is DC LOCATION (VDC2-VDC)'),(9430,2,1,NULL,11,1,'\"sh run | section snmp-server\"','[\"#^snmp-server user nam vdc-admin auth sha.*#\", \"#^snmp-server user admin vdc-admin auth md5.*#\", \"#^snmp-server user rancid vdc-operator auth md5.*#\"]','Tvh758292c','Verify that \'snmp-server\' users \'nam\', \'admin\' and \'rancid\' are configured (VDC2-VDC)'),(9431,2,1,NULL,11,1,'\"sh run | section snmp-server\"','\"snmp-server community Zubr0wka group vdc-operator\"','Tvh758293c','Verify that \'snmp-server\' vdc-operator group is configured (VDC2-VDC)'),(9432,2,1,NULL,NULL,1,'\"sh run | section snmp-server\"','[\"#^snmp-server user admin network-admin auth md5.*#\", \"#^snmp-server user rancid network-operator auth md5.*#\"]','Tvh758470c','Verify that \'snmp-server\' users \'admin\' and \'rancid\' are configured (ADMIN-VDC)'),(9433,2,1,NULL,NULL,1,'\"sh run | section snmp-server\"','\"snmp-server community Zubr0wka group network-operator\"','Tvh758471c','Verify that \'snmp-server\' network-operator group is configured (ADMIN-VDC)'),(9434,2,1,NULL,19,1,'\"sh run | section snmp-server\"','\"snmp-server contact netops-scansafe-alerts@cisco.com\"','Tvh758472c','Verify that \'snmp-server contact\' value is \'netops-scansafe-alerts@cisco.com\' (VDC3-VDC)'),(9435,2,1,NULL,19,1,'\"sh run | section snmp-server\"','\"snmp-server location <location>\"','Tvh758473c','Verify that \'snmp-server location\' value is DC LOCATION (VDC3-VDC)'),(9436,2,1,NULL,19,1,'\"sh run | section snmp-server\"','[\"#^snmp-server user nam vdc-admin auth sha.*#\", \"#^snmp-server user admin vdc-admin auth md5.*#\", \"#^snmp-server user rancid vdc-operator auth md5.*#\"]','Tvh758474c','Verify that \'snmp-server\' users \'nam\', \'admin\' and \'rancid\' are configured (VDC3-VDC)'),(9437,2,1,NULL,19,1,'\"sh run | section snmp-server\"','\"snmp-server community Zubr0wka group vdc-operator\"','Tvh758475c','Verify that \'snmp-server\' vdc-operator group is configured (VDC3-VDC)'),(9438,5,0,'fw-brd-01',14,1,'\"show run failover | include ^failover$\"','\"failover\"','Tvh697077c','FW-BRD-01: Verify that failover feature is enabled (system context)'),(9439,5,0,'fw-brd-01',14,1,'\"show run failover | include failover lan unit\"','\"failover lan unit primary\"','Tvh697078c','Verify that failover unit is configured as \"primary\" on the \"fw-brd-01\" device (system context)'),(9440,5,0,'fw-brd-02',14,1,'\"show run failover | include failover lan unit\"','\"failover lan unit secondary\"','Tvh697079c','Verify that failover unit is configured as \"secondary\" on the \"fw-brd-02\" device (system context)'),(9441,5,0,'fw-brd-02',14,1,'\"show run failover | include ^failover$\"','\"failover\"','Tvh758797c','FW-BRD-02: Verify that failover feature is enabled (system context)'),(9442,5,0,'fw-brd-03',14,1,'\"show run | include failover\"','\"no failover\"','Tvh758814c','FW-BRD-03: Verify that failover feature is disabled (system context)'),(9443,5,0,'fw-brd-04',14,1,'\"show run | include failover\"','\"no failover\"','Tvh758815c','FW-BRD-04: Verify that failover feature is disabled (system context)'),(9444,5,1,NULL,14,1,'\"show module 0 details | include ^Status:\"','\"#^Status:.*Up Sys#\"','Tvh700573c','13.3.2 Verify that operation status is \"Up\"'),(9445,5,1,NULL,14,1,'\"show environment | include Fan[^s]\"','[\"#.*Left Slot \\\\(PS0\\\\):.*OK#\", \"#.*Right Slot \\\\(PS1\\\\):.*OK#\", \"#.*Left Slot \\\\(PS0\\\\):.*OK#\", \"#.*Right Slot \\\\(PS1\\\\):.*OK#\"]','Tvh700574c','13.3.3 Verify that Cooling Fans are in the \"OK\" state'),(9446,5,1,NULL,14,1,'\"show environment | include Power Supply Unit Redundancy\"','\"Power Supply Unit Redundancy: OK\"','Tvh700575c','13.3.4 Verify that Power Supply Unit Redundancy is in the \"OK\" state'),(9447,5,1,NULL,14,1,'\"show environment | include Temperature[^:]\"','[\"#.*Left Slot \\\\(PS0\\\\):.*OK#\", \"#.*Right Slot \\\\(PS1\\\\):.*OK#\", \"#.*Processor 1:.*OK#\", \"#.*Processor 2:.*OK#\", \"#.*Ambient 1:.*OK#\", \"#.*Ambient 2:.*OK#\", \"#.*Ambient 3:.*OK#\", \"#.*Ambient 4:.*OK#\", \"#.*Ambient 5:.*OK#\", \"#.*Ambient 6:.*OK#\", \"#.*Circuit Die:.*OK#\", \"#.*Left Slot \\\\(PS0\\\\):.*OK#\", \"#.*Right Slot \\\\(PS1\\\\):.*OK#\"]','Tvh700576c','13.3.5 Verify that hardware temperatures are in the \"OK\" state'),(9448,5,1,NULL,16,1,'\"sh run aaa-server\"','[\"aaa-server <location_upper> protocol tacacs+\", \"aaa-server <location_upper> (mgmt) host <priv_mgmt_ipv4>.47\", \"timeout 60\", \"key\"]','Tvh756810c','Verify that tacacs server is configured according documentation'),(9449,1,1,NULL,NULL,1,'\"show version | include system:\"','\"system: version 5.0(3)U5(1a)\"','Tvh714931c','16.1.1 Verify switch is installed with specified system software version'),(9450,1,1,NULL,NULL,1,'\"show version | include kickstart:\"','\"kickstart: version 5.0(3)U5(1a)\"','Tvh714932c','16.1.2 Verify switch is installed with specified kickstart image version'),(9451,1,1,NULL,NULL,1,'\"show version | include system | include image\"','\"system image file is: bootflash:/n3000-uk9.5.0.3.U5.1a.bin\"','Tvh714933c','16.1.3 Verify switch is installed with specified system image file'),(9452,1,1,NULL,NULL,1,'\"show version | include kickstart | include image\"','\"kickstart image file is: bootflash:/n3000-uk9-kickstart.5.0.3.U5.1a.bin\"','Tvh714934c','16.1.4 Verify switch is installed with specified kickstart image file'),(9453,1,1,NULL,NULL,1,'\"dir | include n3000-uk9-kickstart.5.0.3.U5.1a.bin\"','\"n3000-uk9-kickstart.5.0.3.U5.1a.bin\"','Tvh714935c','16.1.5 Verify switch kickstart image file is available in the bootflash://'),(9454,1,1,NULL,NULL,1,'\"dir | include n3000-uk9.5.0.3.U5.1a.bin\"','\"n3000-uk9.5.0.3.U5.1a.bin\"','Tvh714936c','16.1.6 Verify switch system image file is available in the bootflash://'),(9455,1,1,NULL,NULL,1,'\"show running-config | include bootflash | include system\"','\"boot system bootflash:/n3000-uk9.5.0.3.U5.1a.bin\"','Tvh714937c','16.1.7 Verify boot system variable is configured for system image'),(9456,1,1,NULL,NULL,1,'\"show running-config | include bootflash | include kickstart\"','\"boot kickstart bootflash:/n3000-uk9-kickstart.5.0.3.U5.1a.bin\"','Tvh714938c','16.1.8 Verify boot kickstart variable is configured for kickstart image'),(9457,1,1,NULL,NULL,1,'\"show running-config spanning-tree\"','[\"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\", \"spanning-tree port type edge\"]','Tvh696203c','Verify that all interfaces are configured as \'spanning-tree port type edge\''),(9458,1,1,NULL,NULL,1,'\"show running-config spanning-tree\"','\"spanning-tree pathcost method long\"','Tvh696205c','Verify that Spanning Tree Long Path-cost method is used'),(9459,1,1,NULL,NULL,1,'\"show running-config spanning-tree all | include 32768\"','\"spanning-tree vlan 80-82 priority 32768\"','Tvh696207c','Verify that Bridge Priority has default value 32768 on all acting VLANs'),(9460,1,1,NULL,NULL,1,'\"show running-config spanning-tree | include loop\"','\"spanning-tree loopguard default\"','Tvh696217c','Verify that Loop guard is enabled'),(9461,1,1,NULL,NULL,1,'\"sh run all | section tacacs\"','\"no ip tacacs source-interface\"','Tvh756799c','Verify that tacacs sourse-interface is disabled'),(9462,1,1,NULL,NULL,1,'\"sh run tacacs\"','\"#.*tacacs-server host <priv_mgmt_ipv4>\\\\.47 key 7.*timeout 10#\"','Tvh756801c','Verify that tacacs server IP is configured according documentation'),(9463,1,1,NULL,NULL,1,'\"sh run tacacs\"','[\"aaa group server tacacs+ <location_upper>\", \"server <priv_mgmt_ipv4>.47\", \"deadtime 60\", \"use-vrf mgmt\", \"source-interface Vlan80\"]','Tvh756802c','Verify that AAA group for tacacs server is configured'),(9464,3,0,'rtr-brd-01',NULL,1,'\"show run | include virtual address vrf mgmt\"','\"#.*<priv_mgmt_ipv4>\\\\.15#\"','Tvh715785c','RTR-BRD-01: Management: Verify that border router \"mgmt0\" port has configured IP according documentation'),(9465,3,0,'rtr-brd-02',NULL,1,'\"show run | include virtual address vrf mgmt\"','\"#.*<priv_mgmt_ipv4>\\\\.18#\"','Tvh715786c','RTR-BRD-02: Management: Verify that border router \"mgmt0\" port has configured IP according documentation'),(9466,3,0,'rtr-brd-01',NULL,1,'\"show interfaces MgmtEth 0/RSP0/CPU0/0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.16#\"','Tvh715787c','RTR-BRD-01: Management: Verify that border router \'MgmtEth 0/RSP0/CPU0/0\' port has configured IP according documentation'),(9467,3,0,'rtr-brd-02',NULL,1,'\"show interfaces MgmtEth 0/RSP0/CPU0/0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.19#\"','Tvh715788c','RTR-BRD-02: Management: Verify that border router \"Mgmt 0/RSP0/CPU0/0\" port has configured IP according documentation'),(9468,3,0,'rtr-brd-01',NULL,1,'\"show interfaces MgmtEth 0/RSP1/CPU0/0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.17#\"','Tvh715789c','RTR-BRD-01: Management: Verify that border router \'MgmtEth 0/RSP1/CPU0/0\' port has configured IP according documentation'),(9469,3,0,'rtr-brd-02',NULL,1,'\"show interfaces MgmtEth 0/RSP1/CPU0/0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.20#\"','Tvh715790c','RTR-BRD-02: Management: Verify that border router \"Mgmt 0/RSP1/CPU0/0\" port has configured IP according documentation'),(9470,3,0,'rtr-brd-01',NULL,1,'\"sh run int MgmtEth 0/RSP0/CPU0/0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::16/64#\"','Tvh757139c','RTR-BRD-01: Management: Verify that border router \'MgmtEth 0/RSP0/CPU0/0\' port has configured IP according documentation IPv6'),(9471,3,0,'rtr-brd-01',NULL,1,'\"sh run int MgmtEth 0/RSP1/CPU0/0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::17/64#\"','Tvh757140c','RTR-BRD-01: Management: Verify that border router \'MgmtEth 0/RSP1/CPU0/0\' port has configured IP according documentation IPv6'),(9472,3,0,'rtr-brd-02',NULL,1,'\"sh run int MgmtEth 0/RSP0/CPU0/0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::19/64#\"','Tvh757141c','RTR-BRD-02: Management: Verify that border router \'Mgmt 0/RSP0/CPU0/0\' port has configured IP according documentation IPv6'),(9473,3,0,'rtr-brd-02',NULL,1,'\"sh run int MgmtEth 0/RSP1/CPU0/0 | inc ipv6\"','\"#.*<priv_mgmt_ipv6>::20/64#\"','Tvh757142c','RTR-BRD-02: Management: Verify that border router \'Mgmt 0/RSP1/CPU0/0\' port has configured IP according documentation IPv6'),(9474,6,1,NULL,17,1,'\"sh run interface management\"','[\"interface management device 1\", \"#.*ip address <priv_mgmt_ipv4>\\\\.92 255\\\\.255\\\\.255\\\\.0#\", \"#.*ip default-gateway <priv_mgmt_ipv4>\\\\.1#\", \"flow-control\", \"interface management device 2\", \"#.*ip address <priv_mgmt_ipv4>\\\\.93 255\\\\.255\\\\.255\\\\.0#\", \"#.*ip default-gateway <priv_mgmt_ipv4>\\\\.1#\", \"flow-control\"]','Tvh754135c','Verify that Mgmt interface IP is set according documentation'),(9475,6,0,'lb-core-01',17,1,'\"sh run interface ve\"','[\"#.*interface ve 1/93#\", \"#.*ip address <priv_lbsync_ipv4>\\\\.4 255\\\\.255\\\\.255\\\\.240#\"]','Tvh754136c','LB-CORE-01: Verify that VE interface IP is set according documentation'),(9476,6,0,'lb-core-02',17,1,'\"sh run interface ve\"','[\"#.*interface ve 2/93#\", \"#.*ip address <priv_lbsync_ipv4>\\\\.5 255\\\\.255\\\\.255\\\\.240#\"]','Tvh754881c','LB-CORE-02: Verify that VE interface IP is set according documentation'),(9477,3,1,NULL,NULL,1,'\"show bgp summary\"','\"#^BGP router identifier.*local AS number 25605#\"','Tvh696499c','Verify that router ASN bgp value is \'25605\''),(9478,3,1,NULL,NULL,1,'\"show bgp neighbor | include external\"','[\"Remote AS <isp_1_isp_as>, local AS 25605, external link\", \"Remote AS <isp_1_isp_as>, local AS 25605, external link\"]','Tvh696528c','Verify that ISP_1 AS number is equal to ISP_1 number in documnetation'),(9479,3,1,NULL,NULL,1,'\"show bgp neighbor | include external\"','[\"Remote AS <isp_2_isp_as>, local AS 25605, external link\", \"Remote AS <isp_2_isp_as>, local AS 25605, external link\"]','Tvh756199c','Verify that ISP_2 AS number is equal to ISP_2 number in documnetation'),(9480,3,1,NULL,NULL,1,'\"show running-config prefix-set ipv4_bogon\"','[\"0.0.0.0/8\", \"10.0.0.0/8\", \"100.64.0.0/10\", \"127.0.0.0/8\", \"169.254.0.0/16\", \"172.16.0.0/12\", \"192.0.0.0/24\", \"192.0.2.0/24\", \"192.168.0.0/16\", \"198.18.0.0/15\", \"198.51.100.0/24\", \"203.0.113.0/24\", \"224.0.0.0/3\"]','Tvh696530c','Verify that Bogon Prefixes list is configured'),(9481,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh696535c','Verify that Bogon Prefixes list is configured as \'drop\' for ISP_1 policies'),(9482,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh696541c','Verify that policies with bogon prefixes included are applied on peering session for ISP_1 (inbound direction)'),(9483,3,1,NULL,NULL,1,'\"show run all | i \\\"remote-as|allowas\\\"\"','[\"remote-as <isp_1_isp_as>\", \"allowas-in 3\"]','Tvh696543c','Verify that command option \'allowas-in 3\' is set to peering session configuration for ISP_1'),(9484,3,1,NULL,NULL,1,'\"show running-config prefix-set default_ipv4\"','\"0.0.0.0/0\"','Tvh696646c','Verify that default_ipv4 Prefixes list is configured'),(9485,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_1_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh696647c','Verify that default_ipv4 Prefixes list is configured for inbound policies ISP_1'),(9486,3,1,NULL,NULL,1,'\"show bgp neighbors | include \\\"Policy for incoming advertisements\\\"\"','\"Policy for incoming advertisements is ebgp_ipv4_internet_<isp_1_isp_name>_in\"','Tvh696655c','Verify that policies with default_ipv4 Prefixes list is applied to ISP_1 for inbound directions'),(9487,3,1,NULL,NULL,1,'\"show running-config prefix-set ebgp_ipv4_internet_<isp_1_isp_name>_out\"','[\"prefix-set ebgp_ipv4_internet_<isp_1_isp_name>_out\", \"#.*<pub_brd_po1_ipv4>\\\\.0/24#\", \"end-set\", \"!\"]','Tvh696656c','Verify that \'ebgp_ipv4_internet_ISP1_out\' list is configured (ISP_1)'),(9488,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_1_isp_name>_out\"','[\"route-policy ebgp_ipv4_internet_<isp_1_isp_name>_out\", \"if (destination in ebgp_ipv4_internet_<isp_1_isp_name>_out) then\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh696657c','Verify that \'ebgp_ipv4_internet_ISP1_out\' Prefixes lists is configured for outbound policies (ISP_1)'),(9489,3,1,NULL,NULL,1,'\"show running-config prefix-set ospf2-to-bgp\"','\"#.*<pub_brd_po1_ipv4>\\\\.0/24 ge 24 le 32#\"','Tvh696851c','Verify that \'ospf2-to-bgp\' Prefixes list is configured'),(9490,3,1,NULL,NULL,1,'\"show running-config prefix-set ospfv32-to-bgp\"','\"<pub_brd_po1_ipv6>::/48 ge 48 le 128\"','Tvh696881c','Verify that \'ospfv32-to-bgp\' Prefixes list is configured'),(9491,3,1,NULL,NULL,1,'\"show running-config prefix-set ipv6_isp_allow_in\"','[\"2000::/3 le 48\", \"::/0\"]','Tvh696882c','Verify that \'ipv6_isp_allow_in\' Prefixes list is configured'),(9492,3,1,NULL,NULL,1,'\"show run prefix-set ebgp_ipv6_internet_<isp_1_isp_name>_out\"','[\"prefix-set ebgp_ipv6_internet_<isp_1_isp_name>_out\", \"<pub_brd_po1_ipv6>::/48\", \"end-set\", \"!\"]','Tvh696883c','Verify that \'ebgp_ipv6_internet_ISP1_out\' Prefixes list is configured (ISP_1)'),(9493,3,1,NULL,NULL,1,'\"show running-config route-policy ospf2-to-bgp\"','[\"if destination in ospf2-to-bgp then\", \"pass\"]','Tvh696885c','Verify that \'ospf2-to-bgp\' Prefixes list is applied to policy as \'pass\''),(9494,3,1,NULL,NULL,1,'\"show running-config route-policy ospfv32-to-bgp\"','[\"if (destination in ospfv32-to-bgp) then\", \"pass\"]','Tvh696886c','Verify that \'ospfv32-to-bgp\' Prefixes list is appied to policy as \'pass\''),(9495,3,1,NULL,NULL,1,'\"show running-config route-policy ebgp_ipv6_internet_<isp_1_isp_name>_in\"','[\"route-policy ebgp_ipv6_internet_<isp_1_isp_name>_in\", \"if (destination in ipv6_isp_allow_in) then\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh696888c','Verify that \'ipv6_isp_allow_in\' Prefixes lis is applied to policy as \'pass\' (ISP_1)'),(9496,3,1,NULL,NULL,1,'\"show run prefix-set ebgp_ipv6_internet_<isp_1_isp_name>_out\"','[\"prefix-set ebgp_ipv6_internet_<isp_1_isp_name>_out\", \"<pub_brd_po1_ipv6>::/48\", \"end-set\", \"!\"]','Tvh696902c','Verify that \'ebgp_ipv6_internet_<ISP_1>_out\' Prefixes list is applied to policies (ISP_1)'),(9497,3,1,NULL,NULL,1,'\"show running-config router bgp 25605 | include ospf2-to-bgp\"','\"redistribute ospf 2 match internal external route-policy ospf2-to-bgp\"','Tvh697058c','Verify that \'ospf2-to-bgp\' route policy is applied to bgp session 25605'),(9498,3,1,NULL,NULL,1,'\"show running-config router bgp 25605 | include ospfv32\"','\"redistribute ospfv3 2 match internal external route-policy ospfv32-to-bgp\"','Tvh697060c','Verify that \'ospfv32-to-bgp\' route policy is applied to bgp session 25605'),(9499,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh756209c','Verify that Bogon Prefixes list is configured as \'drop\' for ISP_2 policies'),(9500,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh756210c','Verify that policies with bogon prefixes included are applied on peering session for ISP_2 (inbound direction)'),(9501,3,1,NULL,NULL,1,'\"show run all | i \\\"remote-as|allowas\\\"\"','[\"remote-as <isp_2_isp_as>\", \"allowas-in 3\"]','Tvh756211c','Verify that command option \'allowas-in 3\' is set to peering session configuration for ISP_2'),(9502,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\"','[\"route-policy ebgp_ipv4_internet_<isp_2_isp_name>_in\", \"if (destination in default_ipv4) then\", \"pass\", \"elseif (destination in ipv4_bogon) then\", \"drop\", \"else\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh756212c','Verify that default_ipv4 Prefixes list is configured for inbound policies ISP_2'),(9503,3,1,NULL,NULL,1,'\"show bgp neighbors | include \\\"Policy for incoming advertisements\\\"\"','\"Policy for incoming advertisements is ebgp_ipv4_internet_<isp_2_isp_name>_in\"','Tvh756299c','Verify that policies with default_ipv4 Prefixes list is applied to ISP_2 for inbound directions'),(9504,3,1,NULL,NULL,1,'\"show running-config prefix-set ebgp_ipv4_internet_<isp_2_isp_name>_out\"','[\"prefix-set ebgp_ipv4_internet_<isp_2_isp_name>_out\", \"#.*<pub_brd_po1_ipv4>\\\\.0/24#\", \"end-set\", \"!\"]','Tvh756300c','Verify that \'ebgp_ipv4_internet_ISP1_out\' list is configured (ISP_2)'),(9505,3,1,NULL,NULL,1,'\"show run route-policy ebgp_ipv4_internet_<isp_2_isp_name>_out\"','[\"route-policy ebgp_ipv4_internet_<isp_2_isp_name>_out\", \"if (destination in ebgp_ipv4_internet_<isp_2_isp_name>_out) then\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh756303c','Verify that \'ebgp_ipv4_internet_ISP1_out\' Prefixes lists is configured for outbound policies (ISP_2)'),(9506,3,1,NULL,NULL,1,'\"show run prefix-set ebgp_ipv6_internet_<isp_2_isp_name>_out\"','[\"prefix-set ebgp_ipv6_internet_<isp_2_isp_name>_out\", \"<pub_brd_po1_ipv6>::/48\", \"end-set\", \"!\"]','Tvh756353c','Verify that \'ebgp_ipv6_internet_ISP2_out\' Prefixes list is configured (ISP_1)'),(9507,3,1,NULL,NULL,1,'\"show running-config route-policy ebgp_ipv6_internet_<isp_2_isp_name>_in\"','[\"route-policy ebgp_ipv6_internet_<isp_2_isp_name>_in\", \"if (destination in ipv6_isp_allow_in) then\", \"pass\", \"endif\", \"end-policy\", \"!\"]','Tvh756393c','Verify that \'ipv6_isp_allow_in\' Prefixes lis is applied to policy as \'pass\' (ISP_2)'),(9508,3,1,NULL,NULL,1,'\"show run prefix-set ebgp_ipv6_internet_<isp_2_isp_name>_out\"','[\"prefix-set ebgp_ipv6_internet_<isp_2_isp_name>_out\", \"<pub_brd_po1_ipv6>::/48\", \"end-set\", \"!\"]','Tvh756394c','Verify that \'ebgp_ipv6_internet_<ISP_2>_out\' Prefixes list is applied to policies (ISP_2)'),(9509,3,1,NULL,NULL,1,'\"show version | include Cisco IOS XR Software\"','\"Cisco IOS XR Software, Version 4.3.1[Default]\"','Tvh715159c','9.1.3 Verify router is installed with specified software version Cisco IOS XR Software, Version 4.2.1'),(9510,3,1,NULL,NULL,1,'\"show run ntp\"','[\"server vrf mgmt <priv_mgmt_ipv4>.2\", \"server vrf mgmt <priv_mgmt_ipv4>.3\"]','Tvh756769c','Verify that ntp server ip is \'sw-core\' VLAN80 interface ip'),(9511,6,1,NULL,17,1,'\"sh run | include vrrp\"','[\"vrrp-a device-id\", \"vrrp-a set-id\"]','Tvh754119c','Verify that VRRP-A devcie id is set'),(9512,6,1,NULL,17,1,'\"sh run | include vrrp\"','\"vrrp-a enable\"','Tvh754121c','Verify that VRRP-A feature is enabled'),(9513,6,1,NULL,17,1,'\"sh run interface ethernet\"','[\"#.*interface ethernet [1,2]/1#\", \"lacp trunk 1 mode active\", \"#.*interface ethernet [1,2]/2#\", \"lacp trunk 1 mode active\", \"#.*interface ethernet [1,2]/3#\", \"lacp trunk 1 mode active\", \"#.*interface ethernet [1,2]/4#\", \"lacp trunk 1 mode active\", \"#.*interface ethernet [1,2]/5#\", \"lacp trunk 2 mode active\", \"#.*interface ethernet [1,2]/6#\", \"lacp trunk 2 mode active\"]','Tvh754131c','Verify that ports 1-6 are configure in lacp trunk mode'),(9514,6,1,NULL,18,1,'\"sh run slb virtual-server | include slb virtual-server access\\\\|port\\\\|service-group\"','[\"#slb virtual-server access[0-9]+1\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+01#\", \"port 8443 tcp\", \"#.*service-group [0-9]+01#\", \"#slb virtual-server access[0-9]+2\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+02#\", \"port 8443 tcp\", \"#.*service-group [0-9]+02#\", \"#slb virtual-server access[0-9]+3\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+03#\", \"port 8443 tcp\", \"#.*service-group [0-9]+03#\", \"#slb virtual-server access[0-9]+4\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+04#\", \"port 8443 tcp\", \"#.*service-group [0-9]+04#\", \"#slb virtual-server access[0-9]+5\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+05#\", \"port 8443 tcp\", \"#.*service-group [0-9]+05#\", \"#slb virtual-server access[0-9]+6\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+06#\", \"port 8443 tcp\", \"#.*service-group [0-9]+06#\", \"#slb virtual-server access[0-9]+7\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"#.*service-group [0-9]+07#\", \"port 8443 tcp\", \"#.*service-group [0-9]+07#\"]','Tvh754890c','Verify that ALL access VIPs contains only numeric service groups for lb-ss partition'),(9515,6,1,NULL,18,1,'\"sh run slb virtual-server | i virtual-server\\\\|vrid\"','[\"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\", \"#slb virtual-server.*\\\\.sco\\\\.cisco\\\\.com#\", \"vrid 2\"]','Tvh754920c','Verify that ALL VIPs have the same VRID (vrid 2) for lb-ss partition'),(9516,6,1,NULL,18,1,'\"sh run slb virtual-server | i virtual-server\\\\|port\\\\|nat\"','[\"#slb virtual-server access[0-9]+1\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+2\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+3\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+4\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+5\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+6\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\", \"#slb virtual-server access[0-9]+7\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"no-dest-nat\", \"port 8443 tcp\", \"no-dest-nat\"]','Tvh754921c','Verify that ALL access VIPs are configured as no-dest-nat for lb-ss partition'),(9517,6,1,NULL,18,1,'\"sh run health\"','[\"health monitor proxy_healthcheck interval 6\", \"method tcp port 8080\", \"!\"]','Tvh756344c','Verify that \'proxy_healthcheck\' monitor is configured'),(9518,6,1,NULL,18,1,'\"sh run slb server | i no health-check\"','[]','Tvh756346c','Verify that healthcheck isn\'t disabled for ANY HOST'),(9519,6,1,NULL,18,1,'\"sh run | include slb template\\\\|ignore-tcp-msl\"','[\"slb template virtual-port msl\", \"ignore-tcp-msl\"]','Tvh758959c','Verify that \'template virtual-port msl\' is configured'),(9520,6,1,NULL,18,1,'\"sh run | include slb template\\\\|idle-timeout\"','[\"slb template tcp tcp_timeout\", \"idle-timeout 3600\"]','Tvh758960c','Verify that \'template tcp tcp_timeout\' is configured'),(9521,6,1,NULL,18,1,'\"sh run slb virtual-server | include slb\\\\|port\\\\|template virtual-port msl\"','[\"#slb virtual-server access[0-9]+1\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+2\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+3\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+4\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+5\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+6\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\", \"#slb virtual-server access[0-9]+7\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template virtual-port msl\", \"port 8443 tcp\", \"template virtual-port msl\"]','Tvh758961c','Verify that \'template virtual-port msl\' is applied to access VIPs'),(9522,6,1,NULL,18,1,'\"sh run slb virtual-server | include slb\\\\|port\\\\|tcp_timeout\"','[\"#slb virtual-server access[0-9]+1\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+2\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+3\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+4\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+5\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+6\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\", \"#slb virtual-server access[0-9]+7\\\\.cws\\\\.sco\\\\.cisco\\\\.com#\", \"port 8080 tcp\", \"template tcp tcp_timeout\", \"port 8443 tcp\", \"template tcp tcp_timeout\"]','Tvh758962c','Verify that \'template tcp tcp_timeout\' is applied to access VIPs'),(9523,6,1,NULL,17,1,'\"sh run | section tacacs\"','\"#.*tacacs-server host <priv_mgmt_ipv4>\\\\.47 secret secret-encrypted.*port 49 timeout 12#\"','Tvh756805c','Verify that tacacs server IP is configured according documentation'),(9524,6,1,NULL,17,1,'\"sh run | section authentication\"','[\"authentication type tacplus local\", \"authentication console type tacplus local\", \"authentication enable tacplus local\"]','Tvh756807c','Verify that tacacs authentication is enabled'),(9525,2,0,'sw-core-01',11,1,'\"sh run interface Po1 | section \\\"ipv6 address\\\"\"','\"#.*<pub_brd_po1_ipv6>::2/126#\"','Tvh757117c','RTR-BRD-01 <-> SW-CORE-01: Verify that core switch \"Po1\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9526,2,0,'sw-core-02',11,1,'\"sh run interface Po2 | section \\\"ipv6 address\\\"\"','\"#.*<pub_brd_po2_ipv6>::2/126#\"','Tvh757118c','RTR-BRD-01 <-> SW-CORE-02: Verify that core switch \"Po2\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9527,2,0,'sw-core-01',11,1,'\"sh run interface Po3 | section \\\"ipv6 address\\\"\"','\"#.*<pub_brd_po3_ipv6>::2/126#\"','Tvh757119c','RTR-BRD-02 <-> SW-CORE-01: Verify that core switch \"Po3\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9528,2,0,'sw-core-02',11,1,'\"sh run interface Po4 | section \\\"ipv6 address\\\"\"','\"#.*<pub_brd_po4_ipv6>::2/126#\"','Tvh757120c','RTR-BRD-02 <-> SW-CORE-02: Verify that core switch \"Po4\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9529,2,0,'sw-core-01',11,1,'\"sh run interface Lo0 | section \\\"ipv6 address\\\"\"','\"#.*<pub_routerid_ipv6>::3/64#\"','Tvh757121c','SW-CORE-01: Loopback: Verify that core switch \"Lo0\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9530,2,0,'sw-core-02',11,1,'\"sh run interface Lo0 | section \\\"ipv6 address\\\"\"','\"#.*<pub_routerid_ipv6>::4/64#\"','Tvh757122c','SW-CORE-02: Loopback: Verify that core switch \"Lo0\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9531,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan3\\\" | section \\\"hsrp 61\\\"\"','\"#.*<pub_fw_outside_all_ipv6>::1#\"','Tvh757123c','DC-EXT-FWEXT HSRP: Verify that core switch HSRP for \"Vlan3\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9532,2,0,'sw-core-01',11,1,'\"sh run interface Vlan3 | section \\\"ipv6 address\\\"\"','\"#.*<pub_fw_outside_all_ipv6>::2/64#\"','Tvh757124c','SW-CORE-01: DC-EXT-FWEXT: Verify that core switch \"Vlan3\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9533,2,0,'sw-core-02',11,1,'\"sh run interface Vlan3 | section \\\"ipv6 address\\\"\"','\"#.*<pub_fw_outside_all_ipv6>::3/64#\"','Tvh757125c','SW-CORE-02: DC-EXT-FWEXT: Verify that core switch \"Vlan3\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9534,2,1,NULL,11,1,'\"show run hsrp | section \\\"interface Vlan4\\\" | section \\\"hsrp 61\\\"\"','\"#.*<pub_vpn_po13_4_ipv6>::1#\"','Tvh757126c','DC-EXT-FWEXT HSRP: Verify that core switch HSRP for \"Vlan4\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9535,2,0,'sw-core-01',11,1,'\"sh run interface Vlan4 | section \\\"ipv6 address\\\"\"','\"#.*<pub_vpn_po13_4_ipv6>::2/64#\"','Tvh757127c','SW-CORE-01: DC-EXT-VPNEXT: Verify that core switch \"Vlan4\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9536,2,0,'sw-core-02',11,1,'\"sh run interface Vlan4 | section \\\"ipv6 address\\\"\"','\"#.*<pub_vpn_po13_4_ipv6>::3/64#\"','Tvh757128c','SW-CORE-02: DC-EXT-VPNEXT: Verify that core switch \"Vlan4\" port has configured IP according documentation (VDC2-VDC) IPv6'),(9537,1,0,'sw-mgmt-01',NULL,1,'\"show interface vlan80 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.23/24#\"','Tvh715783c','SW-MGMT-01: Management: Verify that management switch \"Vlan80\" port has configured IP according documentation'),(9538,1,0,'sw-mgmt-02',NULL,1,'\"show interface vlan80 | include \\\"Internet Address\\\"\"','\"#.*<priv_mgmt_ipv4>\\\\.24/24#\"','Tvh715784c','SW-MGMT-02: Management: Verify that management switch \"Vlan80\" port has configured IP according documentation'),(9539,2,0,'sw-core-01',11,1,'\"show run ospf | section ^interface | no-more\"','[\"interface Vlan3\", \"ip router ospf 2 area 0.0.0.0\", \"interface Vlan4\", \"ip router ospf 2 area 0.0.0.0\", \"interface loopback0\", \"ip router ospf 2 area 0.0.0.0\", \"interface port-channel1\", \"ip router ospf 2 area 0.0.0.0\", \"interface port-channel3\", \"ip router ospf 2 area 0.0.0.0\"]','Tvh696511c','SW-CORE-01: Verify that OSPF Area is \'0.0.0.0\' and ProcessID is \'2\' (IPv4)'),(9540,2,1,NULL,11,1,'\"show run ospf | include authentication\"','\"area 0.0.0.0 authentication message-digest\"','Tvh696512c','Verify that OSPF authentication method is \"message-digest\"'),(9541,2,1,NULL,11,1,'\"show ip ospf | include \\\"Maximum paths\\\"\"','\"Maximum paths to destination 8\"','Tvh696563c','Verify that OSPF Equal Cost Path value is \"8\"'),(9542,2,0,'sw-core-01',11,1,'\"show run ospfv3 | section ^interface | no-more\"','[\"interface Vlan3\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface Vlan4\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface loopback0\", \"pv6 router ospfv3 2 area 0.0.0.0\", \"interface port-channel1\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface port-channel3\", \"ipv6 router ospfv3 2 area 0.0.0.0\"]','Tvh755188c','SW-CORE-01: Verify that OSPFv3 Area is \'0.0.0.0\' and ProcessID is \'2\' (IPv6)'),(9543,2,0,'sw-core-02',11,1,'\"show run ospf | section ^interface | no-more\"','[\"interface Vlan3\", \"ip router ospf 2 area 0.0.0.0\", \"interface Vlan4\", \"ip router ospf 2 area 0.0.0.0\", \"interface loopback0\", \"ip router ospf 2 area 0.0.0.0\", \"interface port-channel2\", \"ip router ospf 2 area 0.0.0.0\", \"interface port-channel4\", \"ip router ospf 2 area 0.0.0.0\"]','Tvh759380c','SW-CORE-02: Verify that OSPF Area is \'0.0.0.0\' and ProcessID is \'2\' (IPv4)'),(9544,2,0,'sw-core-02',11,1,'\"show run ospfv3 | section ^interface | no-more\"','[\"interface Vlan3\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface Vlan4\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface loopback0\", \"pv6 router ospfv3 2 area 0.0.0.0\", \"interface port-channel2\", \"ipv6 router ospfv3 2 area 0.0.0.0\", \"interface port-channel4\", \"ipv6 router ospfv3 2 area 0.0.0.0\"]','Tvh759398c','SW-CORE-02: Verify that OOSPFv3 Area is \'0.0.0.0\' and ProcessID is \'2\' (IPv6)'),(9545,2,0,'sw-core-01',11,1,'\"show run ospf | section \\\"^router ospf 2\\\" | no-more\"','[\"router ospf 2\", \"router-id <pub_routerid_ipv4>.26\"]','Tvh759399c','SW-CORE-01: Verify that OSPF Router-ID is configured according documentation (IPv4)'),(9546,2,0,'sw-core-02',11,1,'\"show run ospf | section \\\"^router ospf 2\\\" | no-more\"','[\"router ospf 2\", \"router-id <pub_routerid_ipv4>.27\"]','Tvh759408c','SW-CORE-02: Verify that OSPF Router-ID is configured according documentation (IPv4)'),(9547,2,0,'sw-core-01',11,1,'\"show run ospfv3 | section \\\"^router ospfv3 2\\\" | no-more\"','[\"router ospfv3 2\", \"router-id <pub_routerid_ipv4>.26\"]','Tvh759409c','SW-CORE-01: Verify that OSPFv3 Router-ID is configured according documentation (IPv6)'),(9548,2,0,'sw-core-02',11,1,'\"show run ospfv3 | section \\\"^router ospfv3 2\\\" | no-more\"','[\"router ospfv3 2\", \"router-id <pub_routerid_ipv4>.27\"]','Tvh759410c','SW-CORE-02: Verify that OSPFv3 Router-ID is configured according documentation (IPv6)'),(9549,2,1,NULL,11,1,'\"sh object-group ntp-master-clocks\"','[\"10 host 68.232.132.61\", \"20 host 208.90.56.212\"]','Tvh756691c','Verify that object-group \'ntp-master-clocks\' is configured (VDC2-VDC)'),(9550,2,1,NULL,11,1,'\"sh object-group ntp-allowed-nets\"','[\"10 10.3.0.0/16\", \"20 10.4.0.0/16\", \"30 108.171.128.0/24\", \"40 108.171.129.0/24\", \"50 108.171.130.0/24\", \"60 108.171.131.0/24\", \"70 108.171.132.0/24\", \"80 108.171.133.0/24\", \"90 108.171.134.0/24\", \"100 210.55.186.0/24\"]','Tvh756692c','Verify that object-group \'ntp-allowed-nets\' is configured (VDC2-VDC)'),(9551,2,1,NULL,11,1,'\"sh run ntp\"','\"ntp access-group query-only ntp-master-clocks\"','Tvh756693c','Verify that object-group \'ntp-master-clocks\' is applied as \'query-only\' ntp access-group (VDC2-VDC)'),(9552,2,1,NULL,11,1,'\"sh run ntp\"','\"ntp access-group serve-only ntp-allowed-nets\"','Tvh756694c','Verify that object-group \'ntp-allowed-nets\' is applied as \'serve-only\' ntp access-group (VDC2-VDC)'),(9553,2,1,NULL,11,1,'\"sh run ntp\"','\"ntp source-interface loopback0\"','Tvh756695c','Verify that ntp source-interface is \'loopback0\' (VDC2-VDC)'),(9554,2,1,NULL,11,1,'\"sh run ntp\"','\"ntp master 15\"','Tvh756696c','Verify that \'sw-core\' switch is configured as ntp master with stratum 15 (VDC2-VDC)'),(9555,2,1,NULL,11,1,'\"sh run ntp all\"','[\"ntp server 68.232.132.61 use-vrf default\", \"ntp server 208.90.56.212 use-vrf default\"]','Tvh756697c','Verify that ntp server IP(s) is configured according documentation (VDC2-VDC)'),(9556,2,1,NULL,11,1,'\"sh access-list ntp-master-clocks\"','\"10 permit udp addrgroup ntp-master-clocks addrgroup any eq ntp\"','Tvh756698c','Verify that access-list \'ntp-master-clocks\' is configured (VDC2-VDC)'),(9557,2,1,NULL,11,1,'\"sh access-list ntp-allowed-nets\"','\"10 permit udp addrgroup ntp-allowed-nets addrgroup any eq ntp\"','Tvh756699c','Verify that access-list \'ntp-allowed-nets\' is configured (VDC2-VDC)'),(9558,2,1,NULL,NULL,1,'\"sh run | section ntp\"','\"clock protocol ntp vdc 2\"','Tvh758281c','Verify that \'clock protocol ntp vdc\' value is \'2\' (ADMIN-VDC)'),(9559,5,1,NULL,14,1,'\"show version | include Cisco Adaptive Security Appliance Software Version\"','\"Cisco Adaptive Security Appliance Software Version 9.1(2)\"','Tvh700554c','13.1.1 Validate that the ASA Software version is 9.1(2)'),(9560,5,1,NULL,14,1,'\"show version | include System image file\"','\"System image file is \\\"disk0:/asa912-smp-k8.bin\\\"\"','Tvh700555c','13.1.12 Verify that the system image file is \"disk0:/asa912-smp-k8.bin\"'),(9561,5,1,NULL,14,1,'\"show version | include Configuration register\"','\"Configuration register is 0x1\"','Tvh700557c','13.1.1.3 Verify that the configuration register is \"0x1\"'),(9562,5,1,NULL,14,1,'\"dir\"','\"#.*asa912-smp-k8.bin$#\"','Tvh700558c','13.1.1.4 Verify that software is available in the \"disk0://\" location'),(9563,5,1,NULL,14,1,'\"show running-config boot\"','\"boot system disk0:/asa912-smp-k8.bin\"','Tvh700559c','13.1.1.5 Verify that the boot system variable is configured'),(9564,5,1,NULL,14,1,'\"show bootvar\"','\"BOOT variable = disk0:/asa912-smp-k8.bin\"','Tvh700562c','13.1.1.6 Verify that the boot variable is configured with relevant software image'),(9565,5,1,NULL,14,1,'\"sh run context admin\"','[\"context admin\", \"allocate-interface Management0/0\", \"config-url disk0:/admin.cfg\"]','Tvh758811c','Verify that \'admin\' context is configured'),(9566,5,1,NULL,14,1,'\"sh run context scansafe\"','[\"context scansafe\", \"allocate-interface Port-channel14.3 outside\", \"allocate-interface Port-channel14.5 vpn\", \"allocate-interface Port-channel14.11 inside\", \"config-url disk0:/scansafe.cfg\"]','Tvh758812c','Verify that \'scansafe\' context is configured'),(9567,5,1,NULL,14,1,'\"sh run context infra\"','[\"context infra\", \"allocate-interface Port-channel14.3 outside\", \"allocate-interface Port-channel14.5 vpn\", \"allocate-interface Port-channel14.6 inside\", \"allocate-interface Port-channel14.14 dmz_ad\", \"allocate-interface Port-channel14.15 dmz_comsvc\", \"config-url disk0:/infra.cfg\"]','Tvh758813c','Verify that \'infra\' context is configured'),(9568,1,1,NULL,NULL,1,'\"show module\"','\"#^1.*52.*48x1GE \\\\+ 4x10G Supervisor.*N3K-C3048TP-1GE-SUP.*active#\"','Tvh715409c','16.3.1 Verify all modules are installed and their status shown as \"Active\"'),(9569,3,0,'rtr-brd-01',NULL,1,'\"show interfaces Bundle-Ether1 | include Internet address\"','\"#.*<pub_brd_po1_ipv4>\\\\.1/30#\"','Tvh715665c','RTR-BRD-01 <-> SW-CORE-01: Verify that border router \"Bundle-Ether1\" port has configured IP according documentation'),(9570,3,0,'rtr-brd-01',NULL,1,'\"show interfaces Bundle-Ether2 | include Internet address\"','\"#.*<pub_brd_po2_ipv4>\\\\.5/30#\"','Tvh715666c','RTR-BRD-01 <-> SW-CORE-02: Verify that border router \"Bundle-Ether2\" port has configured IP according documentation'),(9571,3,0,'rtr-brd-02',NULL,1,'\"show interfaces Bundle-Ether3 | include Internet address\"','\"#.*<pub_brd_po3_ipv4>\\\\.9/30#\"','Tvh715667c','RTR-BRD-02 <-> SW-CORE-01: Verify that border router \"Bundle-Ether3\" port has configured IP according documentation'),(9572,3,0,'rtr-brd-02',NULL,1,'\"show interfaces Bundle-Ether4 | include Internet address\"','\"#.*<pub_brd_po4_ipv4>\\\\.13/30#\"','Tvh715668c','RTR-BRD-02 <-> SW-CORE-02: Verify that border router \"Bundle-Ether4\" port has configured IP according documentation'),(9573,3,0,'rtr-brd-01',NULL,1,'\"show interfaces Loopback1 | include Internet address\"','\"#.*<pub_routerid_ipv4>\\\\.24/32#\"','Tvh715669c','RTR-BRD-01: Verify that border router \"Loopback1\" port has configured IP according documentation'),(9574,3,0,'rtr-brd-02',NULL,1,'\"show interfaces Loopback1 | include Internet address\"','\"#.*<pub_routerid_ipv4>\\\\.25/32#\"','Tvh715670c','RTR-BRD-02: Verify that border router \"Loopback1\" port has configured IP according documentation'),(9575,3,1,NULL,NULL,1,'\"show access-lists ipv4 snmp-access\"','[\"#.*10 remark.*<location>.*snmp pollers#\", \"20 permit ipv4 host <priv_mon_ipv4>.49 any\", \"30 permit ipv4 host <priv_mon_ipv4>.50 any\", \"#.*40 remark.*<location>.*nagios pollers#\", \"50 permit ipv4 host <priv_mon_ipv4>.19 any\", \"60 permit ipv4 host <priv_mon_ipv4>.20 any\", \"70 permit ipv4 host <priv_mon_ipv4>.47 any\", \"80 permit ipv4 host <priv_mon_ipv4>.48 any\", \"#.*90 remark.*<location>.*NAM#\", \"100 permit ipv4 host <priv_mgmt_ipv4>.49 any\"]','Tvh697071c','Verify that access-list \'snmp-access\' is configured'),(9576,3,1,NULL,NULL,1,'\"show running-config snmp-server\"','\"snmp-server community Gl3nf1dd1ch RO snmp-access\"','Tvh697074c','Verify that access-list \'snmp-access\' is applied'),(9577,3,1,NULL,NULL,1,'\"show running-config control-plane management-plane out-of-band interface mgmtEth 0/RSP0/CPU0/0\"','[\"interface MgmtEth0/RSP0/CPU0/0\", \"allow SSH peer\", \"address ipv4 <priv_mon_ipv4>.38\", \"address ipv4 <priv_mon_ipv4>.39\", \"address ipv4 <priv_mon_ipv4>.40\", \"address ipv4 10.53.35.48\", \"address ipv4 10.53.35.96/27\", \"address ipv4 10.53.35.128/26\", \"address ipv4 192.168.0.0/24\", \"address ipv4 192.168.21.0/24\", \"allow SNMP peer\", \"address ipv4 <priv_mon_ipv4>.0/24\"]','Tvh697083c','Verify that control plane is configured for 0/RSP0/CPU0/0 mgmt interface'),(9578,3,1,NULL,NULL,1,'\"show running-config control-plane management-plane out-of-band interface mgmtEth 0/RSP0/CPU0/1\"','[\"interface MgmtEth0/RSP0/CPU0/1\", \"allow SSH peer\", \"address ipv4 <priv_mon_ipv4>.38\", \"address ipv4 <priv_mon_ipv4>.39\", \"address ipv4 <priv_mon_ipv4>.40\", \"address ipv4 10.53.35.48\", \"address ipv4 10.53.35.96/27\", \"address ipv4 10.53.35.128/26\", \"address ipv4 192.168.0.0/24\", \"address ipv4 192.168.21.0/24\", \"allow SNMP peer\", \"address ipv4 <priv_mon_ipv4>.0/24\"]','Tvh715948c','Verify that control plane is configured for 0/RSP0/CPU0/1 mgmt interface'),(9579,3,1,NULL,NULL,1,'\"show running-config control-plane management-plane out-of-band interface mgmtEth 0/RSP1/CPU0/0\"','[\"interface MgmtEth0/RSP1/CPU0/0\", \"allow SSH peer\", \"address ipv4 <priv_mon_ipv4>.38\", \"address ipv4 <priv_mon_ipv4>.39\", \"address ipv4 <priv_mon_ipv4>.40\", \"address ipv4 10.53.35.48\", \"address ipv4 10.53.35.96/27\", \"address ipv4 10.53.35.128/26\", \"address ipv4 192.168.0.0/24\", \"address ipv4 192.168.21.0/24\", \"allow SNMP peer\", \"address ipv4 <priv_mon_ipv4>.0/24\"]','Tvh715949c','Verify that control plane is configured for 0/RSP1/CPU0/0 mgmt interface'),(9580,3,1,NULL,NULL,1,'\"show running-config control-plane management-plane out-of-band interface mgmtEth 0/RSP1/CPU0/1\"','[\"interface MgmtEth0/RSP1/CPU0/1\", \"allow SSH peer\", \"address ipv4 <priv_mon_ipv4>.38\", \"address ipv4 <priv_mon_ipv4>.39\", \"address ipv4 <priv_mon_ipv4>.40\", \"address ipv4 10.53.35.48\", \"address ipv4 10.53.35.96/27\", \"address ipv4 10.53.35.128/26\", \"address ipv4 192.168.0.0/24\", \"address ipv4 192.168.21.0/24\", \"allow SNMP peer\", \"address ipv4 <priv_mon_ipv4>.0/24\"]','Tvh715950c','Verify that control plane is configured for 0/RSP1/CPU0/1 mgmt interface'),(9581,6,1,NULL,17,1,'\"sh version | include aFleX\"','\"aFleX version: 2.0.0\"','Tvh753524c','Verify that aFleX version is 2.0.0'),(9582,6,1,NULL,17,1,'\"sh version | include aXAPI\"','\"aXAPI version: 2.1\"','Tvh753525c','Verify that aXAPI version is 2.1'),(9583,6,1,NULL,17,1,'\"show version | include Hard Disk primary image\"','\"Hard Disk primary image (default) version 2.7.1-P3, build 76\"','Tvh753526c','Verify that HDD Primary image version is 2.7.1-P3'),(9584,6,1,NULL,17,1,'\"show version | include Hard Disk secondary image\"','\"Hard Disk secondary image version 2.7.1-P3, build 76\"','Tvh753527c','Verify that HDD Secondary image version is 2.7.1-P3'),(9585,6,1,NULL,17,1,'\"show version | include Compact Flash primary image\"','\"Compact Flash primary image (default) version 2.7.1-P3, build 76\"','Tvh753528c','Verify that CF Primary image version is 2.7.1-P3'),(9586,6,1,NULL,17,1,'\"show version | include Compact Flash secondary image\"','\"Compact Flash secondary image version 2.7.1-P3, build 76\"','Tvh753529c','Verify that CF Secondary image version is 2.7.1-P3'),(9587,6,1,NULL,17,1,'\"sh run | include snmp-server\"','\"snmp-server enable\"','Tvh754122c','Verify that SNMP-SERVER feature is enabled'),(9588,6,1,NULL,17,1,'\"sh run | include snmp-server\"','[\"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.49#\", \"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.50#\", \"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.19#\", \"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.20#\", \"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.48#\", \"#^snmp-server community read.*remote <priv_mon_ipv4>\\\\.47#\", \"#^snmp-server community read.*remote <priv_ss_mps_ipv4>\\\\.96#\", \"#^snmp-server community read.*remote <priv_ss_mps_ipv4>\\\\.97#\"]','Tvh754130c','Verify allowed remote snmp IPs list'),(9589,6,1,NULL,17,1,'\"show run | section ntp\"','[\"ntp server <priv_mgmt_ipv4>.2\", \"ntp server <priv_mgmt_ipv4>.3\"]','Tvh756783c','Verify that ntp server ip is \'sw-core\' VLAN80 interface ip'),(9590,5,0,'fw-brd-01',12,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.38#\"','Tvh715730c','FW-BRD-01: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context)'),(9591,5,0,'fw-brd-02',12,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.39#\"','Tvh715731c','FW-BRD-02: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context)'),(9592,5,0,'fw-brd-01',13,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.36#\"','Tvh715732c','FW-BRD-01: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context)'),(9593,5,0,'fw-brd-02',13,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.37#\"','Tvh715733c','FW-BRD-02: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context))'),(9594,5,0,'fw-brd-03',12,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.38#\"','Tvh754984c','FW-BRD-03: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context)'),(9595,5,0,'fw-brd-04',12,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.38#\"','Tvh754985c','FW-BRD-04: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (SCANSAFE context)'),(9596,5,0,'fw-brd-03',13,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.36#\"','Tvh754986c','FW-BRD-03: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context)'),(9597,5,0,'fw-brd-04',13,1,'\"show interface outside | include IP address\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.36#\"','Tvh754987c','FW-BRD-04: DC-EXT-FWEXT: Verify that firewall \"outside\" port has configured IP according documentation (INFRA context))'),(9598,2,1,NULL,NULL,1,'\"show license brief\"','\"#.*lic$#\"','Tvh697218c','7.2.1.1 Verify that license files are present'),(9599,2,1,NULL,NULL,1,'\"show license | include \\\"INCREMENT LAN_ADVANCED_SERVICES_PKG\\\"\"','\"INCREMENT LAN_ADVANCED_SERVICES_PKG cisco 1.0 permanent uncounted\"','Tvh697231c','7.2.1.2 Verify that licenses contains LAN_ADVANCED_SERVICES_PKG package'),(9600,2,1,NULL,NULL,1,'\"show license | include \\\"INCREMENT LAN_ENTERPRISE_SERVICES_PKG\\\"\"','\"INCREMENT LAN_ENTERPRISE_SERVICES_PKG cisco 1.0 permanent uncounted\"','Tvh697232c','V7.2.1.3 Verify that licenses contain LAN_ENTERPRISE_SERVICES_PKG package'),(9601,2,1,NULL,NULL,1,'\"show license | include \\\"INCREMENT ENHANCED_LAYER2_PKG\\\"\"','\"INCREMENT ENHANCED_LAYER2_PKG cisco 1.0 permanent uncounted\"','Tvh697233c','7.2.1.4 Verify that licenses contain ENHANCED_LAYER2_PKG package'),(9602,2,1,NULL,NULL,1,'\"show license usage\"','\"#^LAN_ADVANCED_SERVICES_PKG.*Yes.*#\"','Tvh697234c','7.2.1.5 Verify that license for LAN_ADVANCED_SERVICES_PKG package is installed'),(9603,2,1,NULL,NULL,1,'\"show license usage\"','\"#^LAN_ENTERPRISE_SERVICES_PKG.*Yes.*#\"','Tvh697235c','7.2.1.7 Verify that license for LAN_ENTERPRISE_SERVICES_PKG package is installed'),(9604,2,1,NULL,NULL,1,'\"show license usage\"','\"#^ENHANCED_LAYER2_PKG.*Yes.*#\"','Tvh697236c','7.2.1.9 Verify that license for ENHANCED_LAYER2_PKG package is installed'),(9605,2,1,NULL,NULL,1,'\"show license usage\"','\"#^LAN_ADVANCED_SERVICES_PKG.*Never.*#\"','Tvh697237c','7.2.1.6 Verify that license for LAN_ADVANCED_SERVICES_PKG package has no expiration time'),(9606,2,1,NULL,NULL,1,'\"show license usage\"','\"#^LAN_ENTERPRISE_SERVICES_PKG.*Never.*#\"','Tvh697238c','7.2.1.8 Verify that license for LAN_ENTERPRISE_SERVICES_PKG package has no expiration time'),(9607,2,1,NULL,NULL,1,'\"show license usage\"','\"#^ENHANCED_LAYER2_PKG.*Never.*#\"','Tvh697239c','7.2.1.10 Verify that license for ENHANCED_LAYER2_PKG package has no expiration time'),(9608,2,1,NULL,NULL,1,'\"show license usage\"','\"#^LAN_ADVANCED_SERVICES_PKG.*In use.*#\"','Tvh697240c','7.2.1.11 Verify that LAN_ADVANCED_SERVICES_PKG feature has In Use status'),(9609,5,1,NULL,16,1,'\"show run interface Management0/0 | include security-level|interface\"','[\"interface Management0/0\", \"security-level 100\"]','Tvh716047c','Verify that \"Management0/0\" interface has security-level \"100\"'),(9610,5,1,NULL,13,1,'\"show run interface outside | include security-level|^interface outside\"','[\"interface outside\", \"security-level 0\"]','Tvh716048c','Verify that \"outside\" interface has security-level \"0\" (infra context)'),(9611,5,1,NULL,12,1,'\"show run interface outside | include security-level|^interface outside\"','[\"interface outside\", \"security-level 0\"]','Tvh716049c','Verify that \"outside\" interface has security-level \"0\" (scansafe context)'),(9612,5,1,NULL,12,1,'\"show run interface inside | include security-level|^interface inside\"','[\"interface inside\", \"security-level 90\"]','Tvh716055c','Verify that \"inside\" interface has security-level \"90\" (scansafe context)'),(9613,5,1,NULL,12,1,'\"show run interface vpn | include security-level|^interface vpn\"','[\"interface vpn\", \"security-level 100\"]','Tvh716058c','Verify that \"vpn\" interface has security-level \"100\" (scansafe context)'),(9614,5,1,NULL,13,1,'\"show run interface dmz_comsvc | include security-level|^interface dmz_comsvc\"','[\"interface dmz_comsvc\", \"security-level 10\"]','Tvh716063c','Verify that \"dmz_comsvc\" interface has security-level \"10\" (infra context)'),(9615,5,1,NULL,13,1,'\"show run interface dmz_ad | include security-level|^interface dmz_ad\"','[\"interface dmz_ad\", \"security-level 40\"]','Tvh716064c','Verify that \"dmz_ad\" interface has security-level \"40\" (infra context)'),(9616,5,1,NULL,13,1,'\"show run interface inside | include security-level|^interface inside\"','[\"interface inside\", \"security-level 90\"]','Tvh716066c','Verify that \"inside\" interface has security-level \"90\" (infra context)'),(9617,3,0,'rtr-brd-01',NULL,1,'\"sh run interface Bundle-Ether1 | in ipv6\"','\"#.*<pub_brd_po1_ipv6>::1/126#\"','Tvh757146c','RTR-BRD-01 <-> SW-CORE-01: Verify that border router \"Bundle-Ether1\" port has configured IP according documentation IPv6'),(9618,3,0,'rtr-brd-01',NULL,1,'\"sh run interface Bundle-Ether2 | in ipv6\"','\"#.*<pub_brd_po2_ipv6>::1/126#\"','Tvh757147c','RTR-BRD-01 <-> SW-CORE-02: Verify that border router \"Bundle-Ether2\" port has configured IP according documentation IPv6'),(9619,3,0,'rtr-brd-02',NULL,1,'\"sh run interface Bundle-Ether3 | in ipv6\"','\"#.*<pub_brd_po3_ipv6>::1/126#\"','Tvh757148c','RTR-BRD-02 <-> SW-CORE-01: Verify that border router \"Bundle-Ether3\" port has configured IP according documentation IPv6'),(9620,3,0,'rtr-brd-02',NULL,1,'\"sh run interface Bundle-Ether4 | in ipv6\"','\"#.*<pub_brd_po4_ipv6>::1/126#\"','Tvh757149c','RTR-BRD-02 <-> SW-CORE-02: Verify that border router \"Bundle-Ether4\" port has configured IP according documentation IPv6'),(9621,3,0,'rtr-brd-01',NULL,1,'\"sh run interface Bundle-Ether5 | in ipv6\"','\"#.*<pub_brd_po5_ipv6>::1/126#\"','Tvh757150c','RTR-BRD-02 : Verify that border router \"Bundle-Ether5\" port has configured IP according documentation IPv6'),(9622,3,0,'rtr-brd-02',NULL,1,'\"sh run interface Bundle-Ether5 | in ipv6\"','\"#.*<pub_brd_po5_ipv6>::2/126#\"','Tvh757151c','RTR-BRD-02 : Verify that border router \"Bundle-Ether5\" port has configured IP according documentation IPv6'),(9623,3,0,'rtr-brd-01',NULL,1,'\"sh run interface Lo1 | in ipv6\"','\"#.*<pub_routerid_ipv6>::1/64#\"','Tvh757152c','RTR-BRD-01: Verify that border router \"Loopback1\" port has configured IP according documentation IPv6'),(9624,3,0,'rtr-brd-02',NULL,1,'\"sh run interface Lo1 | in ipv6\"','\"#.*<pub_routerid_ipv6>::2/64#\"','Tvh757153c','RTR-BRD-02: Verify that border router \"Loopback1\" port has configured IP according documentation IPv6'),(9625,3,1,NULL,NULL,1,'\"show platform\"','[\"#^0/RSP0/CPU0.*A9K-RSP440-TR.*IOS XR RUN#\", \"#^0/RSP1/CPU0.*A9K-RSP440-TR.*IOS XR RUN#\", \"#^0/0/CPU0.*A9K-8T-L.*IOS XR RUN#\", \"#^0/1/CPU0.*A9K-8T-L.*IOS XR RUN#\"]','Tvh715410c','9.1.1 Verify state of slots and subslots'),(9626,3,1,NULL,NULL,1,'\"show interfaces brief\"','[\"#.*BE[1,3].*(up|admin-down).*(up|admin-down)#\", \"#.*BE[2,4].*(up|admin-down).*(up|admin-down)#\", \"#.*BE5.*(up|admin-down).*(up|admin-down)#\", \"#.*BE[6,7].*(up|admin-down).*(up|admin-down)#\", \"#.*BE[8,9].*(up|admin-down).*(up|admin-down)#\", \"#.*Lo0.*(up|admin-down).*(up|admin-down)#\", \"#.*Lo1.*(up|admin-down).*(up|admin-down)#\", \"#.*Nu0.*(up|admin-down).*(up|admin-down)#\", \"#.*Mg0/RSP0/CPU0/0.*(up|admin-down).*(up|admin-down)#\", \"#.*Mg0/RSP0/CPU0/1.*(up|admin-down).*(up|admin-down)#\", \"#.*Mg0/RSP1/CPU0/0.*(up|admin-down).*(up|admin-down)#\", \"#.*Mg0/RSP1/CPU0/1.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/0.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/1.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/2.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/3.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/4.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/5.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/6.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/0/0/7.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/0.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/1.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/2.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/3.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/4.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/5.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/6.*(up|admin-down).*(up|admin-down)#\", \"#.*Te0/1/0/7.*(up|admin-down).*(up|admin-down)#\"]','Tvh715411c','9.1.2 Verify all configured interfaces are in state \"up\" or \"admin-down\"'),(9627,6,1,NULL,17,1,'\"sh run | include multi-config\"','\"multi-config enable\"','Tvh754123c','Verify that MULTI-CONFIG feature is enabled'),(9628,6,1,NULL,17,1,'\"sh partition\"','[\"#lb-comsvc-<location>.*Yes.*1.*32.*0#\", \"#lb-ss-<location>.*Yes.*2.*32.*1#\"]','Tvh754887c','Verify that TWO partitiona are configured'),(9629,4,1,NULL,15,1,'\"show vrf sco\"','\"#.*sco.*<not set>.*ipv4,ipv6#\"','Tvh697154c','Verify that \"sco\" VRF is configured'),(9630,4,1,NULL,15,1,'\"show running-config | include definition\"','[\"vrf definition Mgmt-intf\", \"vrf definition sco\"]','Tvh697157c','Verify that VRF definition mode is enabled for both vrf'),(9631,4,1,NULL,15,1,'\"show run vrf sco | section af-interface Tunnel[<tun_1>,<tun_2>]\"','[\"af-interface Tunnel<tun_1>\", \"authentication mode md5\", \"af-interface Tunnel<tun_2>\", \"authentication mode md5\"]','Tvh697161c','Verify that Authentication mode is MD5 for Tunnel1 and Tunnel2 interfaces'),(9632,4,1,NULL,15,1,'\"show running-config | include encr 3des\"','\"encr 3des\"','Tvh697162c','Verify that 3DES encryption is used'),(9633,4,1,NULL,15,1,'\"show running-config | include crypto ipsec\"','\"crypto ipsec transform-set dmvpntunnel esp-aes 256 esp-sha-hmac\"','Tvh716007c','Verify that ESP along with AES to be used for IPSEC'),(9634,4,1,NULL,15,1,'\"show running-config | include dmvpn-pki|ca trust-point\"','[\"crypto isakmp profile dmvpn-pki\", \"ca trust-point SV1-CA\", \"set isakmp-profile dmvpn-pki\"]','Tvh716033c','Verify that \'dmvpn-pki\' profile is configured'),(9635,4,1,NULL,15,1,'\"sh run | include crypto ipsec profile|^interface Tunnel[<tun_1>,<tun_2>]|tunnel protection\"','[\"crypto ipsec profile ipsecprofile-pki\", \"interface Tunnel<tun_1>\", \"tunnel protection ipsec profile ipsecprofile-pki\", \"interface Tunnel<tun_2>\", \"tunnel protection ipsec profile ipsecprofile-pki\"]','Tvh716034c','Verify that \'ipsecprofile-pki\' profile is configured and applied on Tunnel1 and Tunnel100'),(9636,4,1,NULL,15,1,'\"show run all | section ntp\"','[\"ntp server vrf Mgmt-intf <priv_mgmt_ipv4>.2 maxpoll 10 minpoll 6 version 4 burst iburst\", \"ntp server vrf Mgmt-intf <priv_mgmt_ipv4>.3 maxpoll 10 minpoll 6 version 4 burst iburst\"]','Tvh756774c','Verify that ntp server ip is \'sw-core\' VLAN80 interface ip'),(9637,4,1,NULL,15,1,'\"show run all | section ntp\"','\"ntp max-associations 100\"','Tvh756775c','Verify that \'ntp max-associations\' option valies is \'100\''),(9638,4,1,NULL,15,1,'\"show run all | section ntp\"','\"ntp maxdistance 8\"','Tvh756776c','Verify that \'ntp maxdistance\' option valies is \'8\''),(9639,2,0,'sw-core-01',11,1,'\"show interface po1 | include \\\"Internet Address\\\"\"','\"#.*<pub_brd_po1_ipv4>\\\\.2/30#\"','Tvh696172c','RTR-BRD-01 <-> SW-CORE-01: Verify that core switch \"Po1\" port has configured IP according documentation (VDC2-VDC)'),(9640,2,0,'sw-core-02',11,1,'\"show interface po2 | include \\\"Internet Address\\\"\"','\"#.*<pub_brd_po2_ipv4>\\\\.6/30#\"','Tvh696175c','RTR-BRD-01 <-> SW-CORE-02: Verify that core switch \"Po2\" port has configured IP according documentation (VDC2-VDC)'),(9641,2,0,'sw-core-01',11,1,'\"show interface po3 | include \\\"Internet Address\\\"\"','\"#.*<pub_brd_po3_ipv4>\\\\.10/30#\"','Tvh696176c','RTR-BRD-02 <-> SW-CORE-01: Verify that core switch \"Po3\" port has configured IP according documentation (VDC2-VDC)'),(9642,2,0,'sw-core-02',11,1,'\"show interface po4 | include \\\"Internet Address\\\"\"','\"#.*<pub_brd_po4_ipv4>\\\\.14/30#\"','Tvh696177c','RTR-BRD-02 <-> SW-CORE-02: Verify that core switch \"Po4\" port has configured IP according documentation (VDC2-VDC)'),(9643,2,0,'sw-core-01',11,1,'\"show interface lo0 | include \\\"Internet Address\\\"\"','\"#.*<pub_routerid_ipv4>\\\\.26/32#\"','Tvh696179c','SW-CORE-01: Loopback: Verify that core switch \"Lo0\" port has configured IP according documentation (VDC2-VDC)'),(9644,2,0,'sw-core-01',11,1,'\"show interface vlan3 | include \\\"Internet Address\\\" | cut -b 58-\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.34/28#\"','Tvh696180c','SW-CORE-01: DC-EXT-FWEXT: Verify that core switch \"Vlan3\" port has configured IP according documentation (VDC2-VDC)'),(9645,2,0,'sw-core-01',11,1,'\"show interface vlan4 | include \\\"Internet Address\\\" | cut -b 58-\"','\"#.*<pub_vpn_po13_4_ipv4>\\\\.50/28#\"','Tvh696181c','SW-CORE-01: DC-EXT-VPNEXT: Verify that core switch \"Vlan4\" port has configured IP according documentation (VDC2-VDC)'),(9646,2,0,'sw-core-02',11,1,'\"show interface vlan3 | include \\\"Internet Address\\\" | cut -b 58-\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.35/28#\"','Tvh715659c','SW-CORE-02: DC-EXT-FWEXT: Verify that core switch \"Vlan3\" port has configured IP according documentation (VDC2-VDC)'),(9647,2,0,'sw-core-02',11,1,'\"show interface vlan4 | include \\\"Internet Address\\\" | cut -b 58-\"','\"#.*<pub_vpn_po13_4_ipv4>\\\\.51/28#\"','Tvh715660c','SW-CORE-02: DC-EXT-VPNEXT: Verify that core switch \"Vlan4\" port has configured IP according documentation (VDC2-VDC)'),(9648,2,1,NULL,11,1,'\"show hsrp interface vlan3 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<pub_fw_outside_all_ipv4>\\\\.33#\"','Tvh715661c','DC-EXT-FWEXT HSRP: Verify that core switch HSRP for \"Vlan3\" port has configured IP according documentation (VDC2-VDC)'),(9649,2,1,NULL,11,1,'\"show hsrp interface vlan4 group 41 | include \\\"Virtual IP\\\"\"','\"#.*<pub_vpn_po13_4_ipv4>\\\\.49#\"','Tvh715662c','DC-EXT-FWEXT HSRP: Verify that core switch HSRP for \"Vlan4\" port has configured IP according documentation (VDC2-VDC)'),(9650,2,0,'sw-core-02',11,1,'\"show interface lo0 | include \\\"Internet Address\\\"\"','\"#.*<pub_routerid_ipv4>\\\\.27/32#\"','Tvh715678c','SW-CORE-02: Loopback: Verify that core switch \"Lo0\" port has configured IP according documentation (VDC2-VDC)'),(9651,5,1,NULL,12,1,'\"show run router eigrp | include router eigrp\"','\"router eigrp 200\"','Tvh697054c','Verify that EIGRP Autonomous-System is \"200\" (scansafe context)'),(9652,5,1,NULL,13,1,'\"show run router eigrp | include router eigrp\"','\"router eigrp 200\"','Tvh697057c','Verify that EIGRP Autonomous-System is \"200\" (infra context)'),(9653,5,1,NULL,12,1,'\"show run | include authentication mode eigrp\"','[\"authentication mode eigrp 200 md5\", \"authentication mode eigrp 200 md5\"]','Tvh697061c','Verify that EIGRP Authentication Mode is \"md5\" (scansafe context)'),(9654,5,1,NULL,13,1,'\"show run | include authentication mode eigrp\"','[\"authentication mode eigrp 200 md5\", \"authentication mode eigrp 200 md5\", \"authentication mode eigrp 200 md5\", \"authentication mode eigrp 200 md5\"]','Tvh697062c','Verify that EIGRP Authentication Mode is \"md5\" (infra context)'),(9655,3,1,NULL,NULL,1,'\"show route ipv4 summary\"','\"#^Total.*[4-9][5-9][0-9]{4,} .*[0-9]+ .*[0-9]+ .*[0-9]+.*#\"','Tvh697055c','Verify that number of Internet IPv4 routes received from ISP is around 450.000'),(9656,3,1,NULL,NULL,1,'\"show route ipv6 summary | include bgp\"','\"#^bgp [0-9]+.*[1-9][2-9][0-9]{3,} .*[0-9]+ .*[0-9]+ .*[0-9]+.*#\"','Tvh697056c','Verify that number of Internet IPv6 routes received from ISP is around 13.000'),(9657,3,0,'rtr-brd-01',NULL,1,'\"show run router ospf\"','[\"router ospf 2\", \"log adjacency changes detail\", \"router-id <pub_routerid_ipv4>.24\", \"priority 0\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric-type 1\", \"area 0\", \"authentication message-digest\", \"message-digest-key 1 md5 encrypted\", \"interface Bundle-Ether1\", \"interface Bundle-Ether2\", \"interface Loopback1\", \"router ospf 3\", \"log adjacency changes detail\", \"router-id <pub_brd_1_lo0_ipv4>\", \"auto-cost reference-bandwidth 100000\", \"area 0\", \"authentication message-digest\", \"message-digest-key 1 md5 encrypted\", \"interface Bundle-Ether5\", \"interface Loopback0\"]','Tvh696912c','RTR-BRD-01: Verify that two OSPF routing processes are configured'),(9658,3,1,NULL,NULL,1,'\"show running-config | include \\\"ospf|area\\\"\"','[\"router ospf 2\", \"area 0\", \"router ospf 3\", \"area 0\", \"router ospfv3 2\", \"area 0\", \"router ospfv3 3\", \"area 0\"]','Tvh696916c','Verify that one area is configured for each Routing process'),(9659,3,1,NULL,NULL,1,'\"show running-config | in \\\"auto-cost|ospf\\\"\"','[\"router ospf 2\", \"auto-cost reference-bandwidth 100000\", \"router ospf 3\", \"auto-cost reference-bandwidth 100000\", \"router ospfv3 2\", \"auto-cost reference-bandwidth 100000\", \"router ospfv3 3\", \"auto-cost reference-bandwidth 100000\"]','Tvh696917c','Verify that the next value is set \'auto-cost reference-bandwidth 100000\' for all OSPF processes'),(9660,3,0,'rtr-brd-02',NULL,1,'\"show run router ospf\"','[\"router ospf 2\", \"log adjacency changes detail\", \"router-id <pub_routerid_ipv4>.25\", \"priority 0\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric-type 1\", \"area 0\", \"authentication message-digest\", \"message-digest-key 1 md5 encrypted\", \"interface Bundle-Ether3\", \"interface Bundle-Ether4\", \"interface Loopback1\", \"router ospf 3\", \"log adjacency changes detail\", \"router-id <pub_brd_2_lo0_ipv4>\", \"auto-cost reference-bandwidth 100000\", \"area 0\", \"authentication message-digest\", \"message-digest-key 1 md5 encrypted\", \"interface Bundle-Ether5\", \"interface Loopback0\"]','Tvh760546c','RTR-BRD-02: Verify that two OSPF routing processes are configured'),(9661,3,0,'rtr-brd-01',NULL,1,'\"show run router ospfv3\"','[\"router ospfv3 2\", \"router-id <pub_routerid_ipv4>.24\", \"log adjacency changes detail\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric-type 1\", \"area 0\", \"interface Loopback1\", \"interface Bundle-Ether1\", \"interface Bundle-Ether2\", \"router ospfv3 3\", \"router-id <pub_brd_1_lo0_ipv4>\", \"log adjacency changes detail\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric-type 1\", \"area 0\", \"interface Loopback0\", \"interface Bundle-Ether5\"]','Tvh760547c','RTR-BRD-01: Verify that two OSPFv3 routing processes are configured'),(9662,3,0,'rtr-brd-02',NULL,1,'\"show run router ospfv3\"','[\"router ospfv3 2\", \"router-id <pub_routerid_ipv4>.25\", \"log adjacency changes detail\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric 100 metric-type 1\", \"area 0\", \"interface Loopback1\", \"interface Bundle-Ether3\", \"interface Bundle-Ether4\", \"router ospfv3 3\", \"router-id <pub_brd_2_lo0_ipv4>\", \"log adjacency changes detail\", \"auto-cost reference-bandwidth 100000\", \"default-information originate metric-type 1\", \"area 0\", \"interface Loopback0\", \"interface Bundle-Ether5\"]','Tvh760548c','RTR-BRD-02: Verify that two OSPFv3 routing processes are configured'),(9663,4,1,NULL,NULL,1,'\"show version | include IOS XE Version\"','\"IOS XE Version: 03.07.04.S\"','Tvh701081c','8.1.1 Verify that IOS version is 03.07.04.S'),(9664,4,1,NULL,NULL,1,'\"show version | include ROM\"','\"ROM: IOS-XE ROMMON\"','Tvh701091c','8.1.2 Verify router is installed with specified ROM'),(9665,4,1,NULL,NULL,1,'\"show version | include System image\"','\"System image file is \\\"bootflash:asr1000rp1-adventerprisek9.03.07.04.S.152-4.S4.bin\\\"\"','Tvh701093c','8.1.3 Verify router is installed with specified system image'),(9666,4,1,NULL,NULL,1,'\"show version | include register\"','\"Configuration register is 0x2102\"','Tvh701094c','8.1.4 Verify router is installed with configuration register 0x2102'),(9667,4,1,NULL,NULL,1,'\"dir | include .bin\"','\"asr1000rp1-adventerprisek9.03.07.02.S.152-4.S4.bin\"','Tvh701098c','8.1.5 Verify software is available in the \"bootflash://\"'),(9668,4,1,NULL,NULL,1,'\"show running-config | include boot system\"','\"boot system bootflash:asr1000rp1-adventerprisek9.03.07.04.S.152-4.S4.bin\"','Tvh701102c','8.1.6 Verify boot system variable is configured in the \"bootflash://\"'),(9669,4,1,NULL,NULL,1,'\"show bootvar | include BOOT variable\"','\"BOOT variable = bootflash:asr1000rp1-adventerprisek9.03.07.04.S.152-4.S4.bin,12\"','Tvh701104c','8.1.7 Verify that boot variable is configured with relevant software image'),(9670,4,1,NULL,15,1,'\"show running-config | include autonomous-system\"','[\"address-family ipv4 unicast vrf sco autonomous-system 200\"]','Tvh697088c','Verify that EIGRP autonomous-system is value \'200\''),(9671,4,1,NULL,15,1,'\"sh run | include ^interface Tunnel|ip nhrp holdtime\"','[\"#^interface Tunnel(1|2|100)#\", \"ip nhrp holdtime 600\", \"#^interface Tunnel(1|2|100)#\", \"ip nhrp holdtime 600\"]','Tvh697153c','Verify that NHRP holdtime is 600 (IPv4)'),(9672,4,1,NULL,15,1,'\"sh run | include ^interface Tunnel|ip summary-address\"','[\"#^interface Tunnel(1|2|100)#\", \"ip summary-address eigrp 200 <priv_ucs_ipv4>.0 255.255.224.0\", \"#^interface Tunnel(1|2|100)#\", \"ip summary-address eigrp 200 <priv_ucs_ipv4>.0 255.255.224.0\"]','Tvh715802c','Verify that EIGRP route summarization feature is enabled'),(9673,4,1,NULL,NULL,1,'\"show running-config | include router|af-interface|authentication\"','[\"router eigrp <location_upper>\", \"af-interface Loopback1\", \"authentication mode md5\", \"authentication key-chain eigrp200keys\", \"exit-af-interface\", \"af-interface Port-channel13.5\", \"authentication mode md5\", \"authentication key-chain eigrp200keys\", \"exit-af-interface\", \"af-interface Tunnel<tun_1>\", \"authentication mode md5\", \"authentication key-chain eigrp200keys\", \"exit-af-interface\", \"af-interface Tunnel<tun_2>\", \"authentication mode md5\", \"authentication key-chain eigrp200keys\", \"exit-af-interface\"]','Tvh716030c','Verify that EIGRP authentication mode is \'MD5\''),(9674,4,1,NULL,15,1,'\"show run | include ipv6 nhrp holdtime\"','[\"ipv6 nhrp holdtime 600\", \"ipv6 nhrp holdtime 600\"]','Tvh755178c','Verify that NHRP holdtime is 600 (IPv6)'),(9675,4,1,NULL,15,1,'\"show run aaa group server tacacs\"','[\"aaa group server tacacs+ <location_upper>\", \"server name <location_upper>\", \"ip vrf forwarding Mgmt-intf\", \"ip tacacs source-interface GigabitEthernet0\"]','Tvh756792c','Verify that AAA group for tacacs server is configured'),(9676,4,1,NULL,15,1,'\"sh run all | section tacacs server\"','[\"tacacs server <location_upper>\", \"address ipv4 <priv_mgmt_ipv4>.47\", \"#.*key 7.*#\", \"timeout 60\"]','Tvh756794c','Verify that tacacs server is configured accroding documentation'),(9677,4,1,NULL,15,1,'\"sh run all | section tacacs-server\"','\"tacacs-server timeout 5\"','Tvh756795c','Verify that tacacs-server timeout value is \'5\''),(9678,4,1,NULL,15,1,'\"sh running-config | i aaa\"','[\"aaa new-model\", \"aaa group server tacacs+ <location_upper>\", \"aaa authentication login default group <location_upper> local\", \"aaa authorization console\", \"aaa authorization config-commands\", \"aaa authorization exec default group <location_upper> local if-authenticated\", \"aaa authorization commands 0 default group <location_upper> local if-authenticated\", \"aaa authorization commands 1 default group <location_upper> local if-authenticated\", \"aaa authorization commands 15 default group <location_upper> local if-authenticated\", \"aaa accounting commands 0 default start-stop group <location_upper>\", \"aaa accounting commands 1 default start-stop group <location_upper>\", \"aaa accounting commands 15 default start-stop group <location_upper>\", \"aaa session-id common\"]','Tvh756796c','Verify that all AAA features are configured'),(9679,4,1,NULL,15,1,'\"sh run all | section tacacs-server\"','\"tacacs-server cache expiry 24 enforce hours\"','Tvh766224c','Verify that tacacs-server cache expiry is \'24\' hours'),(9680,4,1,NULL,15,1,'\"sh run | section line con 0\"','[\"line con 0\", \"exec-timeout 0 0\", \"password 7 09685C103C3F144208073A\", \"logging synchronous\", \"login authentication local\", \"stopbits 1\"]','Tvh766230c','Verify that all AAA features are configured'),(9681,2,1,NULL,11,1,'\"show run vpc | include domain\"','\"vpc domain 1\"','Tvh696368c','Verify that VPC Domain ID is \"1\" (VDC2-VDC)'),(9682,2,1,NULL,11,1,'\"show run vpc | include \\\"system-priority\\\"\"','\"system-priority 2500\"','Tvh696404c','Verify that VPC System Priority is \"2500\" (VDC2-VDC)'),(9683,2,0,'sw-core-01',11,1,'\"show run vpc | include \\\"role priority\\\"\"','\"role priority 5\"','Tvh696405c','SW-CORE-01: Verify that VPC Role Priority is \"5\" (VDC2-VDC)'),(9684,2,0,'sw-core-02',11,1,'\"show run vpc | include \\\"role priority\\\"\"','\"role priority 10\"','Tvh696406c','SW-CORE-02: Verify that VPC Role Priority is \"10\" (VDC2-VDC)'),(9685,2,1,NULL,11,1,'\"show run vpc | include auto-recovery\"','\"auto-recovery\"','Tvh696408c','Verify that VPC Auto-Recovery is enabled (VDC2-VDC)'),(9686,2,1,NULL,11,1,'\"show run vpc | include \\\"peer-gateway\\\"\"','\"peer-gateway exclude-vlan 2-6,9-79\"','Tvh696492c','Verify that VPC Peer-Gateway is enabled (VDC2-VDC)'),(9687,2,1,NULL,11,1,'\"show run vpc | include peer-keepalive\"','\"#peer-keepalive destination 192.168.1.[5-6] source 192.168.1.[5-6] vrf peer-keepalive#\"','Tvh696529c','Verify that VPC Peer-Keepalive uses \"peer-keepalive\" VRF (VDC2-VDC)'),(9688,2,1,NULL,11,1,'\"show run | section ^vpc | include peer-switch\"','\"peer-switch\"','Tvh758183c','Verify that VPC \'peer-switch\' option is enabled (VDC2-VDC)'),(9689,2,1,NULL,11,1,'\"sh run | section ^vpc | include delay\"','\"delay restore interface-vlan 60\"','Tvh758184c','Verify that VPC \'delay restore\' option is configured (VDC2-VDC)'),(9690,2,1,NULL,11,1,'\"sh run | section ^vpc | include ip\"','\"ip arp synchronize\"','Tvh758185c','Verify that VPC \'arp synchronize\' option is enabled (VDC2-VDC)'),(9691,2,0,'sw-core-01',19,1,'\"show run vpc | include \\\"role priority\\\"\"','\"role priority 5\"','Tvh758370c','SW-CORE-01: Verify that VPC Role Priority is \"5\" (VDC3-VDC)'),(9692,2,0,'sw-core-02',19,1,'\"show run vpc | include \\\"role priority\\\"\"','\"role priority 10\"','Tvh758371c','SW-CORE-02: Verify that VPC Role Priority is \"10\" (VDC3-VDC)'),(9693,2,1,NULL,19,1,'\"sh run | section ^vpc | include ip\"','\"ip arp synchronize\"','Tvh758372c','Verify that VPC \'arp synchronize\' option is enabled (VDC3-VDC)'),(9694,2,1,NULL,19,1,'\"sh run | section ^vpc | include delay\"','\"delay restore interface-vlan 60\"','Tvh758373c','Verify that VPC \'delay restore\' option is configured (VDC3-VDC)'),(9695,2,1,NULL,19,1,'\"show run | section ^vpc | include peer-switch\"','\"peer-switch\"','Tvh758374c','Verify that VPC \'peer-switch\' option is enabled (VDC3-VDC)'),(9696,2,1,NULL,19,1,'\"show run vpc | include auto-recovery\"','\"auto-recovery\"','Tvh758375c','Verify that VPC Auto-Recovery is enabled (VDC3-VDC)'),(9697,2,1,NULL,19,1,'\"show run vpc | include domain\"','\"vpc domain 100\"','Tvh758376c','Verify that VPC Domain ID is \"100\" (VDC3-VDC)'),(9698,2,1,NULL,19,1,'\"show run vpc | include \\\"peer-gateway\\\"\"','\"peer-gateway exclude-vlan 1\"','Tvh758377c','Verify that VPC Peer-Gateway is enabled (VDC3-VDC)'),(9699,2,1,NULL,19,1,'\"show run vpc | include peer-keepalive\"','\"#peer-keepalive destination 192.168.1.[5-6] source 192.168.1.[5-6] vrf peer-keepalive#\"','Tvh758378c','Verify that VPC Peer-Keepalive uses \'peer-keepalive\' VRF (VDC3-VDC)'),(9700,2,1,NULL,19,1,'\"show run vpc | include \\\"system-priority\\\"\"','\"system-priority 2500\"','Tvh758379c','Verify that VPC System Priority is \"2500\" (VDC3-VDC)'),(9701,2,1,NULL,11,1,'\"sh run vpc | section ^interface | no-more\"','[\"interface port-channel50\", \"vpc 50\", \"interface port-channel51\", \"vpc 51\", \"interface port-channel52\", \"vpc 52\", \"interface port-channel53\", \"vpc 53\", \"interface port-channel54\", \"vpc 54\", \"interface port-channel55\", \"vpc 55\", \"interface port-channel56\", \"vpc 56\", \"interface port-channel57\", \"vpc 57\"]','Tvh758383c','Verify that Port-Channels 50-57 are aconfigured as VPC (VDC2-VDC)'),(9702,2,1,NULL,11,1,'\"sh run vpc | section ^interface | no-more\"','[\"interface port-channel72\", \"vpc 72\", \"interface port-channel73\", \"vpc 73\", \"interface port-channel74\", \"vpc 74\", \"interface port-channel75\", \"vpc 75\"]','Tvh758385c','Verify that Port-Channels 72-75 are aconfigured as VPC (VDC2-VDC)'),(9703,2,1,NULL,11,1,'\"sh run vpc | section ^interface | no-more\"','[\"interface port-channel10\", \"vpc peer-link\"]','Tvh758387c','Verify that Port-Channel 10 is aconfigured as VPC peer-link (VDC2-VDC)'),(9704,2,1,NULL,19,1,'\"sh run vpc | section ^interface\"','[\"interface port-channel10\", \"vpc peer-link\"]','Tvh758390c','Verify that Port-Channel 10 is aconfigured as VPC peer-link (VDC3-VDC)'),(9705,2,1,NULL,19,1,'\"sh run vpc | section ^interface\"','[\"interface port-channel14\", \"vpc 14\", \"interface port-channel20\", \"vpc 20\", \"interface port-channel21\", \"vpc 21\", \"interface port-channel101\", \"vpc 101\", \"interface port-channel102\", \"vpc 102\"]','Tvh758392c','Verify that Port-Channels 14,20,21,101,102 are aconfigured as VPC (VDC3-VDC)'),(9706,6,1,NULL,17,1,'\"sh run | include ntp\"','[\"#.<priv_mgmt_ipv4>\\\\.2#\", \"#.<priv_mgmt_ipv4>\\\\.3#\"]','Tvh754134c','Verify that NTP server IP is set according documentation'),(9707,4,1,NULL,NULL,1,'\"show platform\"','[\"#0.*ASR1002-SIP10.*ok#\", \"#0/0.*4XGE-BUILT-IN.*ok#\", \"#0/1.*SPA-1X10GE-L-V2.*ok#\", \"#0/2.*SPA-1X10GE-L-V2.*ok#\", \"#R0.*ASR1002-RP1.*ok#\", \"#F0.*ASR1000-ESP10.*ok#\", \"#P0.*ASR1002-PWR-AC.*ok#\", \"#P1.*ASR1002-PWR-AC.*ok#\"]','Tvh701106c','8.2.1 Verify that all slots and subslots are in \"OK\" state'),(9708,1,1,NULL,NULL,1,'\"show feature | include enabled\"','[\"#^interface-vlan.*1.*enabled#\", \"#^lacp.*1.*enabled#\", \"#^privilege.*1.*enabled#\", \"#^sshServer.*1.*enabled#\", \"#^tacacs.*1.*enabled#\", \"#vpc.*1.*enabled#\"]','Tvh696200c','Verify the next features are enabled: lacp, vpc, privilege, tacacs+, lldp, interface-vlan, sshServer'),(9709,1,1,NULL,NULL,1,'\"show running-config interface port-channel1\"','[\"interface port-channel1\", \"#description sw-core-01/02.*/.*po5[2-3]#\", \"switchport mode trunk\", \"switchport trunk allowed vlan 80-82\", \"spanning-tree port type network\", \"no negotiate auto\"]','Tvh696218c','Verify that PortChannel 1 is configured'),(9710,1,1,NULL,NULL,1,'\"show interface port-channel 1 | include Members\"','\"Members in this channel: Eth1/49, Eth1/50\"','Tvh696220c','VVerify that 2 ports (Eth1/49, Eth1/50) are members of PortChannel '),(9711,1,1,NULL,NULL,1,'\"show running-config interface mgmt 0\"','[\"interface mgmt0\", \"shutdown force\"]','Tvh696223c','Verify that mgmt0 port is not used (down state)'),(9712,1,1,NULL,NULL,1,'\"show vrf mgmt interface\"','\"#^Vlan80.*mgmt.*3#\"','Tvh696224c','Verify that Vlan 80 is a member of vrf \'mgmt\''),(9713,4,0,'rtr-vpn-01',15,1,'\"show interface Gig0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.21#\"','Tvh715796c','FRTR-VPN-01: Management: Verify that firewall \'Gig0\' port has configured IP according documentation'),(9714,4,0,'rtr-vpn-02',15,1,'\"show interface Gig0 | include Internet address\"','\"#.*<priv_mgmt_ipv4>\\\\.22#\"','Tvh715797c','FRTR-VPN-02: Management: Verify that firewall \'Gig0\' port has configured IP according documentation'),(9715,4,0,'rtr-vpn-01',15,1,'\"show interface Lo1 | include Internet address\"','\"#.*<priv_routerid_ipv4>\\\\.64#\"','Tvh715798c','FRTR-VPN-01: Loopback : Verify that firewall \"Lo1\" port has configured IP according documentation'),(9716,4,0,'rtr-vpn-02',15,1,'\"show interface Lo1 | include Internet address\"','\"#.*<priv_routerid_ipv4>\\\\.65#\"','Tvh715799c','FRTR-VPN-02: Loopback : Verify that firewall \"Lo1\" port has configured IP according documentation'),(9717,4,0,'rtr-vpn-01',15,1,'\"show interface Po13.5 | include Internet address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.2#\"','Tvh715800c','FRTR-VPN-01: Management: Verify that firewall \"Po13.5\" port has configured IP according documentation'),(9718,4,0,'rtr-vpn-02',15,1,'\"show interface Po13.5 | include Internet address\"','\"#.*<priv_fw_vpn_inside_all_ipv4>\\\\.3#\"','Tvh715801c','FRTR-VPN-02: Management: Verify that firewall \"Po13.5\" port has configured IP according documentation'),(9719,6,1,NULL,17,1,'\"sh environment | include Fan\"','[\"#.*Fan1A.*OK.*Fan1B.*OK.*#\", \"#.*Fan2A.*OK.*Fan2B.*OK.*#\", \"#.*Fan3A.*OK.*Fan3B.*OK.*#\", \"#.*Fan4A.*OK.*Fan4B.*OK.*#\", \"#.*Fan5A.*OK.*Fan5B.*OK.*#\", \"#.*Fan6A.*OK.*Fan6B.*OK.*#\"]','Tvh753531c','Verify that all FANs are in OK status'),(9720,6,1,NULL,17,1,'\"sh environment | in Right Power\"','\"Right Power Unit(Rear view) State: On\"','Tvh753532c','Verify that Right PSU is ON'),(9721,6,1,NULL,17,1,'\"sh environment | in Left Power\"','\"Left Power Unit(Rear view) State: On\"','Tvh753533c','Verify that Left PSU is ON'),(9722,4,1,NULL,NULL,1,'\"show ip access-lists mgmt-access\"','[\"10 permit ip 10.53.35.96 0.0.0.31 any\", \"20 permit ip 192.168.0.0 0.0.0.255 any\", \"30 permit ip 192.168.21.0 0.0.0.255 any\", \"40 permit ip 10.8.0.0 0.0.255.255 any\", \"50 permit ip 173.37.0.0 0.0.15.255 any\", \"60 permit ip host <priv_mon_ipv4>.38 any\", \"70 permit ip host <priv_mon_ipv4>.39 any\", \"80 permit ip host <priv_mon_ipv4>.40 any\", \"90 permit ip 10.53.35.128 0.0.0.63 any\"]','Tvh715953c','Verify access-list \'mgmt-access\' configuration'),(9723,4,1,NULL,NULL,1,'\"show ip access-lists snmp-access\"','[\"Extended IP access list snmp-access\", \"10 permit ip host <priv_mon_ipv4>.49\", \"20 permit ip host <priv_mon_ipv4>.50\", \"30 permit ip host <priv_mon_ipv4>.19\", \"40 permit ip host <priv_mon_ipv4>.20\", \"50 permit ip host <priv_mon_ipv4>.47\", \"60 permit ip host <priv_mon_ipv4>.48\", \"70 permit ip host <priv_mgmt_ipv4>.49\"]','Tvh715954c','Verify access-list \'snmp-access\' configuration'),(9724,4,1,NULL,NULL,1,'\"show ip access-lists Public_Trust\"','[\"10 permit ip 63.251.108.0 0.0.0.255 any\", \"20 permit ip 68.232.128.0 0.0.31.255 any\", \"30 permit ip 74.201.90.0 0.0.1.255 any\", \"40 permit ip 128.107.75.192 0.0.0.63 any\", \"50 permit ip 204.15.80.0 0.0.3.255 any\", \"60 permit ip 208.90.56.0 0.0.7.255 any\", \"70 permit ip 216.129.123.16 0.0.0.15 any\", \"80 permit ip 80.254.144.0 0.0.15.255 any\", \"90 permit ip 184.94.240.0 0.0.15.255 any\", \"100 permit ip 108.171.128.0 0.0.31.255 any\", \"110 permit ip 210.55.186.0 0.0.0.255 any\"]','Tvh715955c','Verify access-list \'Public_Trust\' configuration'),(9725,4,1,NULL,NULL,1,'\"show snmp community | include access-list\"','\"#^storage-type: nonvolatile.*active.*access-list: snmp-access#\"','Tvh715958c','Verify access-list \'snmp-access\' is applied on snmp protocol'),(9726,4,1,NULL,NULL,1,'\"show running-config | include vty|access-class\"','[\"line vty 0 4\", \"access-class mgmt-access in vrf-also\", \"line vty 5 15\", \"access-class mgmt-access in vrf-als\"]','Tvh715959c','Verify access-list \'mgmt-access\' is applied on \'line vty\''),(9727,4,1,NULL,15,1,'\"show running-config interface Po13.4 | include access-group\"','\"ip access-group Public_Trust in\"','Tvh715996c','Verify access-list \'Public_Trust\' is applied on Port-channel 13.4'),(9728,3,1,NULL,16,1,'\"sh run | i tacacs+\"','[\"tacacs-server host <priv_mgmt_ipv4>.47 port 49\", \"aaa group server tacacs+ <location_upper>\"]','Tvh794395c','Verify that tacacs is configured according documentation');
/*!40000 ALTER TABLE `testcase_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testcase_data_host`
--
DROP TABLE IF EXISTS `testcase_data_host`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testcase_data_host` (
`tc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`grp_id` int(11) unsigned DEFAULT NULL,
`in_group` tinyint(1) NOT NULL,
`host_shortname` varchar(255) DEFAULT NULL,
`setup_id` int(11) unsigned DEFAULT NULL,
`type_id` int(11) unsigned NOT NULL DEFAULT '1',
`input_data` text,
`output_data` text,
`tims_id` varchar(45) DEFAULT NULL,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`tc_id`),
UNIQUE KEY `tc_id_UNIQUE` (`tc_id`),
KEY `group_id_idx` (`grp_id`),
KEY `setup_id_idx` (`setup_id`),
KEY `type_id_idx` (`type_id`),
CONSTRAINT `hgroup_id` FOREIGN KEY (`grp_id`) REFERENCES `host_group` (`grp_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `hsetup_id` FOREIGN KEY (`setup_id`) REFERENCES `testcase_setup` (`setup_id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
CONSTRAINT `htype_id` FOREIGN KEY (`type_id`) REFERENCES `testcase_type` (`type_id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=349 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testcase_data_host`
--
LOCK TABLES `testcase_data_host` WRITE;
/*!40000 ALTER TABLE `testcase_data_host` DISABLE KEYS */;
INSERT INTO `testcase_data_host` VALUES (2,1,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep named\"','\"#named.*0:off.*1:off.*2:off.*3:on.*4:off.*5:off.*6:off#\"','Tvh765041c','RDNS: Verify that NAMED service is ENABLED'),(3,1,1,NULL,NULL,1,'\"/sbin/service named status\"','\"#named.*pid.*is running#\"','Tvh765042c','RDNS: Verify that NAMED service is RUNNING'),(4,1,1,NULL,NULL,1,'\"cat /etc/named.conf | grep -v \\\"^ *#\\\"\"','[\"options {\", \"directory \\\"/etc/namedb\\\";\", \"statistics-file \\\"/var/stats/named.stats\\\";\", \"memstatistics-file \\\"/var/stats/named.memstats\\\";\", \"dump-file \\\"/var/dump/named_dump.db\\\";\", \"pid-file \\\"/var/run/named/named.pid\\\";\", \"zone-statistics yes;\", \"interface-interval 0;\", \"listen-on { any; };\", \"empty-zones-enable yes;\", \"transfers-in 48;\", \"transfers-out 48;\", \"transfers-per-ns 24;\", \"max-transfer-time-in 5;\", \"max-transfer-idle-in 2;\", \"max-transfer-time-out 5;\", \"max-transfer-idle-out 2;\", \"max-cache-size unlimited;\", \"acache-enable yes;\", \"max-acache-size 1073741824;\", \"check-names master warn;\", \"minimal-responses yes;\", \"clients-per-query 50;\", \"max-clients-per-query 200;\", \"recursive-clients 2048;\", \"notify no;\", \"masterfile-format text;\", \"};\", \"include \\\"common.conf\\\";\", \"view \\\"internal\\\" in {\", \"allow-query { any; };\", \"allow-transfer { none; };\", \"recursion yes;\", \"allow-recursion { any; };\", \"zone \\\".\\\" in { type hint; file \\\"named.root\\\"; };\", \"include \\\"internal_master.conf\\\";\", \"include \\\"internal_slave_replica.conf\\\";\", \"include \\\"internal_forwarders.conf\\\";\", \"};\"]','Tvh765043c','RDNS: Verify that NAMED config content is equal to standard config'),(5,1,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:*\"','[\"DEVICE=lo:0\", \"IPADDR=<priv_mon_ipv4>.21\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\", \"DEVICE=lo:1\", \"IPADDR=<priv_mon_ipv4>.22\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh765040c','RDNS: Verify that interfaces \'lo:0\' and \'lo:1\' have last ip octet .21 and .22 respectively'),(6,1,1,NULL,NULL,1,'\"ls -l /etc/named.conf\"','\"/etc/named.conf -> /data/named/etc/namedb/internal_named.conf\"','Tvh765044c','RDNS: Verify that \'/etc/named.conf\' is link to \'/data/named/etc/namedb/internal_named.conf\''),(7,1,1,NULL,NULL,1,'\"cat /etc/cron.d/dns_load.cron | grep -v \\\"^ *#\\\"\"','[\"MAILTO=stbu-coreservices@cisco.com\", \"*/5 * * * * root [ -x /etc/namedb/bin/dns_load.sh ] && /etc/namedb/bin/dns_load.sh >/dev/null\"]','Tvh765045c','RDNS: Verify that \'dns_load.cron\' cron is configured'),(8,1,1,NULL,NULL,1,'\"cat /etc/namedb/bin/dns_load.sh | grep -v \\\"^ *#\\\"\"','[\"PATH=\\\"/bin:/sbin:/usr/bin:/usr/sbin\\\"\", \"export PATH\", \"NEWER=/var/run/.timestamp\", \"if [ ! -e $NEWER ]\", \"then\", \"touch $NEWER\", \"exit 0\", \"fi\", \"CHANGED=`find /etc/namedb/*conf /etc/namedb/*/master -type f -newer $NEWER -print 2>/dev/null | wc -l`\", \"if [ $CHANGED -gt 0 ]\", \"then\", \"rndc reload && touch $NEWER\", \"fi\", \"exit 0\"]','Tvh765046c','RDNS: Verify that \'/etc/namedb/bin/dns_load.sh\' script exists'),(9,1,1,NULL,NULL,1,'\"netstat -an|grep \\\":53\\\\|:8053\\\\|:953\\\"\"','[\"#tcp.*<priv_mon_ipv4>\\\\.1[2-5]:53.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*<priv_mon_ipv4>\\\\.22:53.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*<priv_mon_ipv4>\\\\.21:53.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*127.0.0.1:53.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*0.0.0.0:8053.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*127.0.0.1:953.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#udp.*<priv_mon_ipv4>\\\\.1[2-5]:53.*0\\\\.0\\\\.0\\\\.0:\\\\*#\", \"#udp.*<priv_mon_ipv4>\\\\.22:53.*0\\\\.0\\\\.0\\\\.0:\\\\*#\", \"#udp.*<priv_mon_ipv4>\\\\.21:53.*0\\\\.0\\\\.0\\\\.0:\\\\*#\", \"#udp.*127.0.0.1:53.*0\\\\.0\\\\.0\\\\.0:\\\\*#\"]','Tvh765047c','RDNS: Verify that PORTS \'53,8053 and 953\' are LISTENED'),(10,1,1,NULL,NULL,1,'\"dig @<priv_mon_ipv4>.21 rabbitmq.<location>.sco.cisco.com +short; dig @<priv_mon_ipv4>.22 rabbitmq.<location>.sco.cisco.com +short\"','[\"<priv_mon_ipv4>.25\", \"<priv_mon_ipv4>.25\"]','Tvh765049c','RDNS: Verify that DNS server is resposible via loopback/VIP interface(s)'),(11,1,1,NULL,NULL,1,'\"dig @<priv_mon_ipv4>.12 rabbitmq.<location>.sco.cisco.com +short; dig @<priv_mon_ipv4>.13 rabbitmq.<location>.sco.cisco.com +short; dig @<priv_mon_ipv4>.14 rabbitmq.<location>.sco.cisco.com +short; dig @<priv_mon_ipv4>.15 rabbitmq.<location>.sco.cisco.com +short\"','[\"<priv_mon_ipv4>.25\", \"<priv_mon_ipv4>.25\", \"<priv_mon_ipv4>.25\", \"<priv_mon_ipv4>.25\"]','Tvh765050c','RDNS: Verify that DNS server is resposible via reserver interface'),(12,1,1,NULL,NULL,1,'\"dig @127.0.0.1 rabbitmq.<location>.sco.cisco.com +short\"','\"<priv_mon_ipv4>.25\"','Tvh765051c','RDNS: Verify that DNS server is resposible via localhost'),(13,1,1,NULL,NULL,1,'\"/sbin/ifconfig lo:0; /sbin/ifconfig lo:1\"','[\"#lo:0.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.21 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\", \"#lo:1.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.22 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh765039c','RDNS: Verify that interfaces \'lo:0\' and \'lo:1\' are UP'),(14,11,1,NULL,NULL,1,'\"cat /etc/cobbler/modules.conf | grep -v \\\"#\\\" | grep \\\"\\\\W\\\"\"','[\"[authentication]\", \"module = authn_ldap\", \"[authorization]\", \"module = authz_allowall\", \"[dns]\", \"module = manage_bind\", \"[dhcp]\", \"module = manage_isc\", \"[tftpd]\", \"module = manage_in_tftpd\"]','Tvh765453c','Cobbler: Verify that modules \'authn_ldap, authz_allowall, manage_bind, manage_isc, manage_in_tftpd\' are ENABLED'),(15,11,1,NULL,NULL,1,'\"/sbin/ifconfig lo:1\"','[\"#lo:1.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.30 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh765470c','Cobbler: Verify that interface \'lo:1\' is UP'),(16,11,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:1\"','[\"DEVICE=lo:1\", \"IPADDR=<priv_mon_ipv4>.30\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh765471c','Cobbler: Verify that interface \'lo:1\' has last ip octet .30'),(17,11,1,NULL,NULL,1,'\"cat /etc/cobbler/settings | grep -v \\\"^ *#\\\" | grep \\\"manage_dhcp\\\\|manage_tftpd\\\\|manage_rsync\\\\|^server\\\\|next_\\\"\"','[ \"manage_dhcp: 1\", \"manage_tftpd: 1\", \"manage_rsync: 1\", \"#next_server: <priv_mon_ipv4>\\\\.1[0-1]#\", \"#server: <priv_mon_ipv4>\\\\.1[0-1]#\" ]','Tvh765454c','Cobbler: Verify that options \'manage_dhcp, manage_tftpd, manage_rsync, next_server, server\' are SET'),(18,11,1,NULL,NULL,1,'\"cat /etc/cobbler/rsync.template | grep -v \\\"^ *#\\\"\"','[\"[cobbler-distros]\", \"path = $webdir/ks_mirror\", \"comment = All Cobbler Distros\", \"[cobbler-repos]\", \"path = $webdir/repo_mirror\", \"comment = All Cobbler Distros\", \"[cobbler-kickstarts]\", \"path = /var/lib/cobbler/kickstarts\", \"comment = Cobbler Kickstarts\", \"[cobbler-snippets]\", \"path = /var/lib/cobbler/snippets\", \"comment = Cobbler Snippets\", \"[cobbler-triggers]\", \"path = /var/lib/cobbler/triggers\", \"comment = Cobbler Triggers\", \"[repo-$repo]\", \"path = $webdir/repo_mirror/$repo\", \"comment = Cobbler Repo $repo\", \"[distro-$distro.name]\", \"path = $distro.path\", \"comment = Cobbler Distro $distro.name\", \"[cobbler-configdir]\", \"path = /etc/cobbler\", \"comment = Cobbler Configuration Settings\", \"[cobbler-pub]\", \"path = $webdir/pub\", \"comment = Cobbler Webdir Pub\"]','Tvh765455c','Cobbler: Verify that \'/etc/cobbler/rsync.template\' is equal to standard config'),(19,11,1,NULL,NULL,1,'\"cat /etc/cobbler/dhcp.template | grep -v \\\"^ *#\\\"\"','[\"include \\\"/etc/cobbler/cisco/dhcpd-global.conf\\\";\", \"include \\\"/etc/cobbler/cisco/dhcpd-primary.conf\\\";\", \"include \\\"/etc/cobbler/cisco/dhcpd-<location>-networks.conf\\\";\", \"group {\", \"host $iface.name {\", \"hardware ethernet $mac;\", \"fixed-address $iface.ip_address;\", \"option host-name \\\"$iface.hostname\\\";\", \"option subnet-mask $iface.netmask;\", \"option routers $iface.gateway;\", \"if exists user-class and option user-class = \\\"gPXE\\\" {\", \"filename \\\"http://$cobbler_server/cblr/svc/op/gpxe/system/$iface.owner\\\";\", \"} else {\", \"filename \\\"undionly.kpxe\\\";\", \"}\", \"filename \\\"CitrixXenServer/pxelinux.0\\\";\", \"filename \\\"$iface.filename\\\";\", \"next-server $next_server;\", \"}\", \"}\"]','Tvh765456c','Cobbler: Verify that \'/etc/cobbler/dhcp.template\' is equal to standard config'),(20,11,1,NULL,NULL,1,'\"cat /etc/cobbler/cisco/dhcpd-primary.conf | grep -v \\\"^ *#\\\"\"','[\"failover peer \\\"<location>\\\" {\", \"primary;\", \"address <priv_mon_ipv4>.10;\", \"port 647;\", \"peer address <priv_mon_ipv4>.11;\", \"peer port 647;\", \"max-response-delay 30;\", \"max-unacked-updates 10;\", \"load balance max seconds 3;\", \"mclt 3600;\", \"split 128;\", \"}\"]','Tvh765459c','Cobbler: Verify that \'/etc/cobbler/cisco/dhcpd-primary.conf\' is equal to standard config'),(21,11,1,NULL,NULL,1,'\"cat /etc/cobbler/cisco/dhcpd-secondary.conf | grep -v \\\"^ *#\\\"\"','[\"failover peer \\\"<location>\\\" {\", \"secondary;\", \"address <priv_mon_ipv4>.11;\", \"port 647;\", \"peer address <priv_mon_ipv4>.10;\", \"peer port 647;\", \"max-response-delay 30;\", \"max-unacked-updates 10;\", \"load balance max seconds 3;\", \"}\"]','Tvh765460c','Cobbler: Verify that \'/etc/cobbler/cisco/dhcpd-secondary.conf\' is equal to standard config'),(22,11,1,NULL,NULL,1,'\"cat /etc/cobbler/cisco/dhcpd-global.conf | grep -v \\\"^ *#\\\"\"','[\"option domain-name \\\"<location>.sco.cisco.com\\\";\", \"option domain-name-servers <priv_mon_ipv4>.21, <priv_mon_ipv4>.22;\", \"option domain-search code 119 = string;\", \"option domain-search \\\"<location>.sco.cisco.com\\\";\", \"authoritative;\", \"default-lease-time 432000;\", \"min-lease-time 432000;\", \"max-lease-time 1209600;\", \"log-facility local7;\", \"ddns-update-style none;\", \"use-host-decl-names on;\", \"allow booting;\", \"allow bootp;\", \"ignore client-updates;\", \"set vendorclass = option vendor-class-identifier;\"]','Tvh765461c','Cobbler: Verify that \'/etc/cobbler/cisco/dhcpd-global.conf\' is equal to standard config'),(23,11,1,NULL,NULL,1,'\"cat /etc/xinetd.d/rsync | grep -v \\\"^ *#\\\"\"','[\"service rsync\", \"{\", \"#.*disable.*= no#\", \"#.*flags.*= IPv6#\", \"#.*socket_type.*= stream#\", \"#.*wait.*= no#\", \"#.*user.*= root#\", \"#.*server.*= /usr/bin/rsync#\", \"#.*server_args.*= --daemon#\", \"#.*log_on_failure.*\\\\+= USERID#\", \"}\"]','Tvh765462c','Cobbler: Verify that RSYNC service is ENABLED'),(24,11,1,NULL,NULL,1,'\"cat /etc/xinetd.d/tftp | grep -v \\\"^ *#\\\"\"','[\"service tftp\", \"{\", \"#disable.*= no#\", \"#socket_type.*= dgram#\", \"#protocol.*= udp#\", \"#wait.*= yes#\", \"#user.*= root#\", \"#server.*= /usr/sbin/in.tftpd#\", \"#server_args.*= -B 1380 -v -s /var/lib/tftpboot#\", \"#per_source.*= 11#\", \"#cps.*= 100 2#\", \"#flags.*= IPv4#\", \"}\"]','Tvh765463c','Cobbler: Verify that TFTP service is ENABLED'),(25,11,1,NULL,NULL,1,'\"/sbin/chkconfig --list | egrep \\\"cobblerd|http\\\"\"','[\"#cobblerd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\", \"#httpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"]','Tvh765464c','Cobbler: Verify that Cobbler and Apache services are ENABLED at boot'),(26,11,1,NULL,20,1,'\"cobbler check\"','\"No configuration problems found. All systems go\"','Tvh765466c','Cobbler: Verify that Cobbler configuration doesn\'t contain errors'),(27,11,1,NULL,NULL,1,'\"/bin/netstat -na | grep \\\"LISTEN\\\" | egrep \\\":25151|:80|:873\\\"\"','[\"#tcp.*127\\\\.0\\\\.0\\\\.1:25151.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*:::80.*:::\\\\*.*LISTEN#\", \"#tcp.*:::873.*:::\\\\*.*LISTEN#\"]','Tvh765467c','Cobbler: Verify that Cobbler, Apache, and Rsync service are RUNNING'),(28,6,1,NULL,NULL,1,'\"ls -l /etc/collectd-cluster.conf\"','\"#root.*root.*/etc/collectd-cluster.conf#\"','Tvh766259c','Collectd: Verify that file \'/etc/collectd-cluster.conf \' exists'),(29,6,1,NULL,NULL,1,'\"grep Address /etc/collectd-cluster.conf |egrep -v \'#|Daemon\' | egrep -v \'<priv_mgmt_ipv4>|<priv_core_inside_infra_ipv4>\' | wc -l\"','\"0\"','Tvh766262c','Collectd: Verify that Device addresses are from <DC> subnets in \'/etc/collectd-cluster.conf\''),(30,6,1,NULL,NULL,1,'\"cat /etc/collectd-cluster.conf | grep -v \\\"^ *#\\\"\"','[ \"<Plugin python>\", \"ModulePath \\\"/usr/share/collectd/python\\\"\", \"Import \\\"carbon_writer\\\"\", \"<Module \\\"carbon_writer\\\">\", \"LineReceiverHost \\\"<priv_mon_ipv4>.44\\\"\", \"LineReceiverPort 2003\", \"DifferentiateCountersOverTime true\", \"LowercaseMetricNames true\", \"TypesDB \\\"/usr/share/collectd/types.db\\\"\", \"TypesDB \\\"/usr/share/collectd/network.db\\\"\", \"TypesDB \\\"/usr/share/collectd/netapp.db\\\"\", \"MetricPrefix \\\"common.<location>\\\"\", \"</Module>\", \"Import \\\"netapp\\\"\", \"</Plugin>\" ]','Tvh766263c','Collectd: Verify that section \'<Plugin python>\' exists and configured according documentation in \'/etc/collectd-cluster.conf\''),(31,6,1,NULL,NULL,1,'\"ls -la /usr/share/collectd/\"','[\"netapp.db\", \"network.db\", \"prodtypes.db\", \"python\", \"types.db\"]','Tvh766264c','Collectd: Verify that files \'netapp.db, network.db, python, types.db \' exists'),(32,6,1,NULL,NULL,1,'\"ls /usr/share/collectd/python/ | grep \\\"py$\\\"\"','[\"carbon_writer.py\", \"netapp.py\", \"perf_operation_ssl.py\"]','Tvh766265c','Collectd: Verify that plugins \'carbon_writer.py, netapp.py, perf_operation_ssl.py\' are installed'),(33,5,1,NULL,NULL,1,'\"host enqueue\"','\"enqueue.<location>.sco.cisco.com has address <priv_mon_ipv4>.44\"','Tvh766245c','Graphite: Verify that \'enqueue\' host has last ip octet .44'),(34,5,1,NULL,20,1,'\"cat /etc/graphite-enqueue.conf | grep -v \\\"^ *#\\\"\"','[ \"listen on localhost port 2003\", \"#listen on <priv_mon_ipv4>\\\\.3[6-7] port 2003#\", \"listen on <priv_mon_ipv4>.44 port 2003\", \"#stomp \\\"rabbitmq\\\\.<location>\\\\.sco.cisco\\\\.com\\\" port 61613 vhost \\\"/\\\" user \\\"enqueue\\\" password \\\"[0-9A-Za-z]+\\\" heartbeat 1000 reconnect 10#\", \"send \\\"/exchange/graphite/$1\\\"\", \"message-size 1400\", \"#statistics localhost port 2003 reconnect 10 prefix \\\"common.<location>.prod-graphite-proxy1.enqueue\\\"#\" ]','Tvh766246c','Graphite: Verify that \'/etc/graphite-enqueue.conf\' is equal to standard config'),(35,5,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep graphite\"','\"#graphite-enqueue.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh766247c','Graphite: Verify that Graphite-enqueue service is enabled at boot'),(36,5,1,NULL,NULL,1,'\"/sbin/service graphite-enqueue status\"','\"#graphite-enqueue.*pid [0-9]+.*is running#\"','Tvh766248c','Graphite: Verify that Graphite-enqueue service is RUNNING'),(37,5,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:44\"','[\"DEVICE=lo:44\", \"IPADDR=<priv_mon_ipv4>.44\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh766250c','Graphite: Verify that interface \'lo:44\' has last ip octet .44'),(38,5,1,NULL,NULL,1,'\"/sbin/ifconfig lo:44\"','[\"#lo:44.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.44 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh766251c','Graphite: Verify that interface \'lo:44\' is UP'),(39,5,1,NULL,NULL,1,'\"netstat -an|grep \\\":2003\\\"\"',' [ \"#tcp.*<priv_mon_ipv4>\\\\.44:2003.*0.0.0.0:\\\\*.*LISTEN#\", \"#tcp.*<priv_mon_ipv4>\\\\.3[6-7]:2003.*0.0.0.0:\\\\*.*LISTEN#\", \"#tcp.*127\\\\.0\\\\.0\\\\.1:2003.*0.0.0.0:\\\\*.*LISTEN#\", \"#tcp.*::1:2003.*:::\\\\*.*LISTEN#\" ]','Tvh766252c','Graphite: Verify that Graphite proxies are listening on port 2003 ports'),(40,4,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:45\"','[\"DEVICE=lo:45\", \"IPADDR=<priv_mon_ipv4>.45\", \"NAME=loopback\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh766226c','Logstash: Verify that interface \'lo:45\' has last ip octet .45'),(41,4,1,NULL,NULL,1,'\"/sbin/ifconfig lo:45\"','[\"#lo:45.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.45 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh766227c','Logstash: Verify that interface \'lo:45\' is UP'),(42,4,1,NULL,NULL,1,'\"cat /etc/logstash/patterns/cisco | grep -v \\\"^ *#\\\"\"','[\"CISCOTIMESTAMP (?x:(?:(?:%{YEAR} \\\\s)? %{MONTH} \\\\s+ %{MONTHDAY}|%{MONTH} \\\\s+ %{MONTHDAY} \\\\s %{YEAR}) \\\\s %{TIME})\", \"CISCOFACILITY \\\\w+\", \"CISCOSUBFACILITY \\\\w+\", \"CISCOSEVERITY \\\\d\", \"CISCOMNEMONIC \\\\w+\", \"CISCOCONTEXT \\\\w+\", \"CISCONODEID [A-Z\\\\d/]+\"]','Tvh766220c','Logstash: Verify that \'/etc/logstash/patterns/cisco\' is equal to standard config'),(43,4,1,NULL,NULL,1,'\"cat /etc/logstash/conf.d/shipper.conf | grep -v \\\"^ *#\\\"\"','[ \"input {\", \"udp {\", \"host => \\\"<priv_mon_ipv4>.45\\\"\", \"port => 514\", \"type => \\\"syslog\\\"\", \"}\", \"tcp {\", \"host => \\\"<priv_mon_ipv4>.45\\\"\", \"port => 514\", \"type => \\\"syslog\\\"\", \"}\", \"udp {\", \"host => \\\"<priv_mon_ipv4>.45\\\"\", \"codec => netflow {}\", \"port => 2055\", \"type => \\\"netflow\\\"\", \"}\", \"tcp {\", \"#host => \\\"<priv_mon_ipv4>\\\\.3[3-4]\\\"#\", \"port => 514\", \"type => \\\"dummy\\\"\", \"}\", \"tcp {\", \"#host => \\\"<priv_mon_ipv4>\\\\.3[3-4]\\\"#\", \"port => 2055\", \"type => \\\"dummy\\\"\", \"}\", \"}\", \"filter {\", \"if [type] == \\\"dummy\\\" {\", \"drop {}\", \"}\", \"noop {\", \"add_tag => [ \\\"dummy\\\" ]\", \"remove_tag => [ \\\"dummy\\\" ]\", \"}\", \"noop {\", \"add_field => [ \\\"dc\\\", \\\"<location>\\\", \\\"tenant\\\", \\\"common\\\" ]\", \"}\", \"if [type] == \\\"syslog\\\" and [message] =~ /\\\\sCSCOacs_/ {\", \"grok {\", \"match => {\", \"}\", \"patterns_dir => \\\"/etc/logstash/patterns\\\"\", \"}\", \"if \\\"_grokparsefailure\\\" not in [tags] {\", \"mutate {\", \"replace => { \\\"message\\\" => \\\"%{acs_message}\\\" }\", \"}\", \"multiline {\", \"pattern => \\\"^\\\\d{4}-\\\\d{2}-\\\\d{2} \\\\d{2}:\\\\d{2}:\\\\d{2}.\\\\d{3}\\\"\", \"negate => true\", \"what => \\\"previous\\\"\", \"}\", \"mutate {\", \"join => [ \\\"acs_message\\\", \\\"\\\" ]\", \"}\", \"mutate {\", \"replace => [ \\\"message\\\", \\\"%{acs_header} %{acs_message}\\\" ]\", \"}\", \"mutate {\", \"remove_field => [ \\\"acs_header\\\", \\\"acs_message\\\" ]\", \"remove_tag => [ \\\"multiline\\\" ]\", \"}\", \"}\", \"}\", \"}\", \"output {\", \"if \\\"_grokparsefailure\\\" in [tags] {\", \"stdout {\", \"debug => true\", \"}\", \"} else {\", \"rabbitmq {\", \"durable => true\", \"exchange => \\\"logstash\\\"\", \"exchange_type => \\\"direct\\\"\", \"host => \\\"rabbitmq.<location>.sco.cisco.com\\\"\", \"port => 5672\", \"user => \\\"shipper\\\"\", \"#.*password => \\\"[A-Za-z0-9]+\\\"#\", \"}\", \"}\", \"}\" ]','Tvh766221c','Logstash: Verify that \'/etc/logstash/conf.d/shipper.conf \' is equal to standard config'),(44,4,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep logstash\"','\"#logstash.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh766222c','Logstash: Verify that Logstash service is enabled at boot'),(45,4,1,NULL,20,1,'\"/sbin/service logstash status\"','\"#Logstash Daemon.*pid.*[0-9]+.*is running#\"','Tvh766223c','Logstash: Verify that Logstash service is RUNNING'),(46,4,1,NULL,NULL,1,'\"cat /etc/sysconfig/logstash | grep -v \\\"^ *#\\\"\"','[\"START=true\", \"LS_JAVA_OPTS=\\\"-Xms1g -Xmx1g -Djava.io.tmpdir=$LS_HOME/tmp\\\"\", \"OPEN_FILES=16000\"]','Tvh766225c','Logstash: Verify that \'/etc/sysconfig/logstash\' is equal to standard config'),(47,4,1,NULL,NULL,1,'\"netstat -an | egrep \\\":514|:2055\\\"\"','[\"#tcp.*::ffff:.*:514.*:::\\\\*.*LISTEN#\", \"#tcp.* ::ffff:.*:514.*:::\\\\*.*LISTEN#\", \"#tcp.*::ffff:.*:2055.*:::\\\\*.*LISTEN#\"]','Tvh766228c','Logstash: Verify that Syslog (514/udp) and Netflow (2055/udp) ports are LISTENING'),(48,3,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:25\"','[\"DEVICE=lo:25\", \"IPADDR=<priv_mon_ipv4>.25\", \"NAME=loopback\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh766105c','RabbitMQ: Verify that interface \'lo:25\' has last ip octet .25'),(49,3,1,NULL,NULL,1,'\"/sbin/ifconfig lo:25\"','[\"#lo:25.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.25 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh766106c','RabbitMQ: Verify that interface \'lo:25\' is UP'),(50,3,1,NULL,NULL,1,'\"cat /etc/hosts | grep -v \\\"#\\\" | grep sco.cisco.com\"','[\"#<priv_mon_ipv4>\\\\.23.*prod-ops-rmq1.<location>.sco.cisco.com prod-ops-rmq1#\", \"#<priv_mon_ipv4>\\\\.24.*prod-ops-rmq2.<location>.sco.cisco.com prod-ops-rmq2#\", \"#<priv_mon_ipv4>\\\\.25.*rabbitmq.<location>.sco.cisco.com rabbitmq#\"]','Tvh766098c','RabbitMQ: Verify that \'/etc/hosts\' contains static mapping for VIPs of RabbitMQ'),(51,3,1,NULL,NULL,1,'\"cat /etc/rabbitmq/rabbitmq.config | grep -v \\\"^ *#\\\"\"','[ \"[\", \"{rabbit, [\", \"{hipe_compile, false},\", \"{log_levels, [{warning}]},\", \"{heartbeat, 0},\", \"{collect_statistics_interval, 10000},\", \"{delegate_count, 24}\", \"{cluster_partition_handling, autoheal}\", \"]}\", \"]\" ]','Tvh766099c','RabbitMQ: Verify that \'/etc/rabbitmq/rabbitmq.config\' is equal to standard config'),(52,3,1,NULL,NULL,1,'\"cat /etc/rabbitmq/enabled_plugins | grep -v \\\"^ *#\\\"\"','\"[rabbitmq_management,rabbitmq_management_agent,rabbitmq_stomp]\"','Tvh766100c','RabbitMQ: Verify that modules \'rabbitmq_management, rabbitmq_management_agent, rabbitmq_stomp\' are ENABLED'),(53,3,1,NULL,20,1,'\"/sbin/chkconfig --list|grep rabbit\"','\"#rabbitmq-server.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh766101c','RabbitMQ: Verify that Rabbitmq-Server service is enabled at boot'),(54,3,1,NULL,20,1,'\"/sbin/service rabbitmq-server status\"','[\"#Status of node \'rabbit@prod-ops-rmq[1-2]\'#\", \"#.*pid,[0-9]+#\", \"running_applications\", \"rabbitmq_stomp\", \"rabbitmq_management\", \"rabbitmq_management_agent\", \"rabbit\", \"os_mon\", \"rabbitmq_web_dispatch\", \"webmachine\", \"mochiweb\", \"xmerl\", \"inets\", \"mnesia\", \"amqp_client\", \"sasl\", \"stdlib\", \"kernel\", \"os,{unix,linux}\", \"erlang_version\"]','Tvh766102c','RabbitMQ: Verify that Rabbitmq-Server service is RUNNING'),(56,3,1,NULL,NULL,1,'\"netstat -an|grep LISTEN | egrep \\\":5672|:61613|:15672\\\"\"','[\"#tcp.*0\\\\.0\\\\.0\\\\.0\\\\:15672.*0\\\\.0\\\\.0\\\\.0:\\\\*.*LISTEN#\", \"#tcp.*:::61613.*:::\\\\*.*LISTEN#\", \"#tcp.*:::5672.*:::\\\\*.*LISTEN#\"]','Tvh766217c','RabbitMQ: Verify that AMQP (5672/tcp), STOMP (61613/tcp) and admin (15672/tcp) ports are LISTENING'),(58,3,1,NULL,20,1,'\"rabbitmqctl list_users\"','[\"#admin.*\\\\[administrator\\\\]#\", \"#enqueue.*\\\\[\\\\]#\", \"#federate.*\\\\[\\\\]#\", \"#monitor.*\\\\[monitoring\\\\]#\", \"#shipper.*\\\\[\\\\]#\"]','Tvh766218c','RabbitMQ: Verify that each RabbitMQ spoke have the same list of users, with \'guest\' removed'),(61,3,1,NULL,20,1,'\"rabbitmqctl list_permissions\"','[\"admin\\t.*\\t.*\\t.*\", \"enqueue\\t\\t^graphite$\\t\", \"federate\\t.*\\t.*\\t.*\", \"monitor\\t^aliveness-test$\\t^amq\\\\\\\\.default$\\t^aliveness-test$\", \"shipper\\t^logstash$\\t^logstash$\"]','Tvh766219c','RabbitMQ: Verify that each RabbitMQ spoke have a standard set of vhosts and permissions'),(175,2,0,'prod-puppet-www3',NULL,1,'\"cat /etc/hosts | grep -v \\\"#\\\" | grep sco.cisco.com\"','[\"<priv_mon_ipv4>.18\\tprod-puppet-www3.<location>.sco.cisco.com prod-puppet-www3\", \"<priv_mon_ipv4>.18\\tpuppet.<location>.sco.cisco.com\"]','Tvh765472c','Puppet [www3] : Verify that \'/etc/hosts\' contains static mapping for VIPs of puppet'),(176,2,0,'prod-puppet-www1',20,1,'\"cat /etc/puppet/puppet.conf | grep -v \\\"^ *#\\\"| egrep \\\"\\\\[.*\\\\]|certname|storeconfigs|external_nodes| server\\\"\"','[\"[master]\", \"certname = puppet.<location>.sco.cisco.com\", \"storeconfigs = true\", \"storeconfigs_backend = puppetdb\", \"external_nodes = /etc/puppet/scripts/ENC.py\", \"[agent]\", \"certname = <host_shortname>.<location>.sco.cisco.com\", \"server = puppet.<location>.sco.cisco.com\"]','Tvh765473c','Puppet [www1] : Verify that \'/etc/puppet/puppet.conf\' is equal to standard config'),(177,2,1,NULL,NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster.conf | grep -v \\\"^ *#\\\" | egrep \\\"VirtualHost|ProxyPassMatch|ProxyPassReverse|ProxyPass|ProxyPreserveHost\\\"\"','[\"<VirtualHost *:8140>\", \"ProxyPassMatch ^(/.*?)/(certificate.*?)/(.*)$ balancer://puppetmasterca\", \"ProxyPassReverse ^(/.*?)/(certificate.*?)/(.*)$ balancer://puppetmasterca\", \"ProxyPass / balancer://puppetmaster/\", \"ProxyPassReverse / balancer://puppetmaster/\", \"ProxyPreserveHost On\", \"</VirtualHost>\"]','Tvh765474c','Puppet : Verify that \'/etc/httpd/conf.d/puppetmaster.conf\' is equal to standard config'),(178,2,1,NULL,NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-worker.conf | grep -v \\\"^ *#\\\" | egrep \\\"Listen|VirtualHost|Rack\\\"\"','[\"Listen 18140\", \"<VirtualHost <host_shortname>.<location>.sco.cisco.com:18140>\", \"RackAutoDetect On\", \"</VirtualHost>\"]','Tvh765479c','Puppet : Verify that \'/etc/httpd/conf.d/puppetmaster-worker.conf\' is equal to standard config'),(179,2,1,NULL,NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-worker-members.conf | grep -v \\\"^ *#\\\"\"','[\"<Proxy balancer://puppetmaster>\", \"BalancerMember http://<host_shortname>.<location>.sco.cisco.com:18140\", \"</Proxy>\"]','Tvh765481c','Puppet : Verify that \'/etc/httpd/conf.d/puppetmaster-worker-members.conf\' is equal to standard config'),(180,2,1,NULL,NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-caserver.conf | grep -v \\\"^ *#\\\"\"','[\"Listen 18141\", \"<VirtualHost <host_shortname>.<location>.sco.cisco.com:18141>\", \"SSLEngine off\", \"SetEnvIf X-Client-Verify \\\"(.*)\\\" SSL_CLIENT_VERIFY=$1\", \"SetEnvIf X-SSL-Client-DN \\\"(.*)\\\" SSL_CLIENT_S_DN=$1\", \"RackAutoDetect On\", \"DocumentRoot /usr/share/puppet/rack/puppetmasterd_18141/public/\", \"<Directory /usr/share/puppet/rack/puppetmasterd_18141/>\", \"Options None\", \"AllowOverride None\", \"Order allow,deny\", \"allow from all\", \"</Directory>\", \"LogLevel warn\", \"ErrorLog /var/log/httpd/ca_balancer_error.log\", \"CustomLog /var/log/httpd/ca_balancer_access.log combined\", \"CustomLog /var/log/httpd/ca_balancer_ssl_requests.log \\\"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \\\\\\\"%r\\\\\\\" %b\\\"\", \"</VirtualHost>\"]','Tvh765482c','Puppet : Verify that \'/etc/httpd/conf.d/puppetmaster-caserver.conf\' is equal to standard config'),(181,2,1,NULL,NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-caserver-members.conf | grep -v \\\"^ *#\\\"\"','[\"<Proxy balancer://puppetmasterca>\", \"BalancerMember http://prod-puppet-www1.<location>.sco.cisco.com:18141\", \"BalancerMember http://prod-puppet-www2.<location>.sco.cisco.com:18141 status=+H\", \"</Proxy>\"]','Tvh765483c','Puppet : Verify that \'/etc/httpd/conf.d/puppetmaster-caserver-members.conf\' is equal to standard config'),(182,2,1,NULL,NULL,1,'\"cat /etc/puppet/autosign.conf | grep -v \\\"^ *#\\\"\"','\"*.<location>.sco.cisco.com\"','Tvh765484c','Puppet : Verify that \'/etc/puppet/autosign.conf\' is equal to standard config'),(183,2,1,NULL,20,1,'\"cat /etc/puppet/auth.conf | grep -v \\\"^ *#\\\"\"','[\"path ~ ^/catalog/([^/]+)$\", \"method find\", \"allow $1\", \"path ~ ^/node/([^/]+)$\", \"method find\", \"allow $1\", \"path /certificate_revocation_list/ca\", \"auth any\", \"method find\", \"allow *\", \"path /report\", \"method save\", \"allow *\", \"path /file\", \"allow *\", \"path /certificate/ca\", \"auth any\", \"method find\", \"allow *\", \"path /certificate/\", \"auth any\", \"method find\", \"allow *\", \"path /certificate_request\", \"auth any\", \"method find, save\", \"allow *\", \"path ~ ^/certificate_status/(puppet.*|activemq.*|dashboard.*|prod-puppet-www.*)\", \"auth any\", \"allow none\", \"path /\", \"auth any\", \"allow /^prod-puppet-www[\\\\d-]+/\", \"path /\", \"auth any\"]','Tvh765485c','Puppet : Verify that \'/etc/puppet/auth.conf\' is equal to standard config'),(184,2,1,NULL,NULL,1,'\"/sbin/chkconfig --list | egrep \\\"netfs|httpd\\\"\"','[\"#httpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\", \"#netfs.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"]','Tvh765493c','Puppet : Verify that Apache and NFS services are enabled at boot'),(185,2,1,NULL,NULL,1,'\"netstat -na | grep \\\"LISTEN\\\" | egrep \\\":8140\\\"; ps -ef | grep Rack\"','[\"#tcp.*:::8140.*:::\\\\*.*LISTEN#\", \"#puppet.*[0-9]+.*Rack: /usr/share/puppet/rack/puppetmasterd#\"]','Tvh765495c','Puppet : Verify that Apache Passenger Service and Ruby Rack process are RUNNING'),(186,2,1,NULL,20,1,'\"cat /etc/puppet/puppetdb.conf\"','[\"[main]\", \"server = <host_shortname>.<location>.sco.cisco.com\", \"port = 8081\"]','Tvh765496c','Puppet : Verify that PuppetDB is configured on port 8081'),(187,2,1,NULL,20,1,'\"cat /etc/puppetdb/conf.d/database.ini | grep -v \\\"^ *#\\\"\"','[\"[database]\", \"classname = org.postgresql.Driver\", \"subprotocol = postgresql\", \"subname = //prod-puppet-dbhost-vip1.<location>.sco.cisco.com:5432/puppetdb\", \"username = puppetdb\", \"#password = .+#\", \"log-slow-statements = 10\"]','Tvh765498c','Puppet : Verify that PuppetDB is set to use PostgreSQL'),(188,2,0,'prod-puppet-www1',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"puppetdb|postgresql\\\"\"','[\"#postgresql.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\", \"#puppetdb.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"]','Tvh765499c','Puppet [www1] : Verify that PuppetDB and PostgreSQL services are enabled at boot'),(190,2,0,'prod-puppet-www1',NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-dashboard.conf | grep -v \\\"^ *#\\\"\"','[\"<VirtualHost *:443>\", \"SSLEngine on\", \"SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP\", \"SSLCertificateFile /etc/puppet/ssl/certs/puppet.<location>.sco.cisco.com.pem\", \"SSLCertificateKeyFile /etc/puppet/ssl/private_keys/puppet.<location>.sco.cisco.com.pem\", \"SSLCertificateChainFile /etc/puppet/ssl/certs/ca.pem\", \"SSLCACertificateFile /etc/puppet/ssl/certs/ca.pem\", \"SSLCARevocationFile /etc/puppet/ssl/ca/ca_crl.pem\", \"SSLVerifyClient none\", \"SSLVerifyDepth 1\", \"SSLOptions +StdEnvVars\", \"SetEnv HOME /usr/share/puppet-dashboard\", \"DocumentRoot /usr/share/puppet-dashboard/public\", \"<Directory /usr/share/puppet-dashboard/public>\", \"Options None\", \"AllowOverride None\", \"Order allow,deny\", \"allow from all\", \"AuthName \\\"Puppet-Dashboard\\\"\", \"AuthType Basic\", \"AuthBasicProvider ldap\", \"AuthzLDAPAuthoritative on\", \"AuthLDAPUrl ldap://ldap-master.ironport.com/ou=people,ou=corporate,dc=ironport,dc=com?uid\", \"AuthLDAPGroupAttribute uniqueMember\", \"Require ldap-group cn=puppet-dashboard,ou=group,ou=production,dc=ironport,dc=com\", \"</Directory>\", \"LogLevel warn\", \"ErrorLog /var/log/httpd/puppetdashboard.error.log\", \"TransferLog /var/log/httpd/puppetdashboard.access.log\", \"<Location /reports/upload>\", \"<Limit POST>\", \"Order allow,deny\", \"Allow from all\", \"Satisfy any\", \"</Limit>\", \"</Location>\", \"<Location /nodes>\", \"<Limit GET>\", \"Order allow,deny\", \"Allow from prod-puppet-www1.<location>.sco.cisco.com prod-puppet-www2.<location>.sco.cisco.com prod-puppet-www3.<location>.sco.cisco.com\", \"Satisfy any\", \"</Limit>\", \"</Location>\", \"</VirtualHost>\"]','Tvh765504c','Puppet [www1] : Verify that \'/etc/httpd/conf.d/puppetmaster-dashboard.conf\' is equal to standard config'),(191,2,0,'prod-puppet-www1',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"mysql\\\"\"','\"#mysqld.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh765507c','Puppet [www1] : Verify that MySQL service is enabled at boot'),(193,2,0,'prod-puppet-www1',NULL,1,'\"/sbin/ifconfig lo:0; /sbin/ifconfig lo:1; /sbin/ifconfig lo:2\"','[\"#lo:0.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.27 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\", \"#lo:1.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.28 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\", \"#lo:2.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.29 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh765519c','Puppet [www1] : Verify that interfaces \'lo:0\', \'lo:1\' and \'lo:2\' are UP'),(194,2,0,'prod-puppet-www1',NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:*\"','[\"DEVICE=lo:0\", \"IPADDR=<priv_mon_ipv4>.27\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\", \"DEVICE=lo:1\", \"IPADDR=<priv_mon_ipv4>.28\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\", \"DEVICE=lo:2\", \"IPADDR=<priv_mon_ipv4>.29\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh765520c','Puppet [www1] : Verify that interfaces \'lo:0\', \'lo:1\' and \'lo:2\' have last ip octet .27, .28 and .29 respectively'),(195,2,0,'prod-puppet-www2',NULL,1,'\"/sbin/ifconfig lo:0; /sbin/ifconfig lo:1; /sbin/ifconfig lo:2\"','[\"#lo:0.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.27 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\", \"#lo:1.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.28 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\", \"#lo:2.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.29 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh776509c','Puppet: Verify that interfaces \'lo:0\', \'lo:1\' and \'lo:2\' are UP'),(196,2,0,'prod-puppet-www3',NULL,1,'\"/sbin/ifconfig lo:0\"','[\"#lo:0.*Link encap:Local Loopback#\", \"inet addr:<priv_mon_ipv4>.27 Mask:255.255.255.255\", \"UP LOOPBACK RUNNING MTU:16436 Metric:1\"]','Tvh776510c','Puppet [www3] : Verify that interfaces \'lo:0\' is UP'),(197,2,0,'prod-puppet-www2',NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:*\"','[\"DEVICE=lo:0\", \"IPADDR=<priv_mon_ipv4>.27\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\", \"DEVICE=lo:1\", \"IPADDR=<priv_mon_ipv4>.28\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\", \"DEVICE=lo:2\", \"IPADDR=<priv_mon_ipv4>.29\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh776511c','Puppet [www2] : Verify that interfaces \'lo:0\', \'lo:1\' and \'lo:2\' have last ip octet .27, .28 and .29 respectively'),(198,2,0,'prod-puppet-www3',NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-lo:*\"','[\"DEVICE=lo:0\", \"IPADDR=<priv_mon_ipv4>.27\", \"NETMASK=255.255.255.255\", \"ONBOOT=yes\"]','Tvh776512c','Puppet [www2] : Verify that interfaces \'lo:0\', \'lo:1\' and \'lo:2\' have last ip octet .27, .28 and .29 respectively'),(199,2,0,'prod-puppet-www2',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"puppetdb|postgresql\\\"\"','[\"#postgresql.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\", \"#puppetdb.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"]','Tvh776513c','Puppet [www2] : Verify that PuppetDB and PostgreSQL services are enabled at boot'),(200,2,0,'prod-puppet-www1',NULL,1,'\"cat /etc/hosts | grep -v \\\"#\\\" | grep sco.cisco.com\"','[\"<priv_mon_ipv4>.16\\tprod-puppet-www1.<location>.sco.cisco.com prod-puppet-www1\", \"<priv_mon_ipv4>.16\\tpuppet.<location>.sco.cisco.com\", \"<priv_mon_ipv4>.16\\tpuppetdashboard.<location>.sco.cisco.com\", \"<priv_mon_ipv4>.16\\tactivemq.<location>.sco.cisco.com\"]','Tvh776514c','Puppet [www1] : Verify that \'/etc/hosts\' contains static mapping for VIPs of puppet, puppetdashboard, and activemq'),(201,2,0,'prod-puppet-www2',NULL,1,'\"cat /etc/hosts | grep -v \\\"#\\\" | grep sco.cisco.com\"','[\"<priv_mon_ipv4>.17\\tprod-puppet-www2.<location>.sco.cisco.com prod-puppet-www2\", \"<priv_mon_ipv4>.17\\tpuppet.<location>.sco.cisco.com\", \"<priv_mon_ipv4>.17\\tpuppetdashboard.<location>.sco.cisco.com\", \"<priv_mon_ipv4>.17\\tactivemq.<location>.sco.cisco.com\"]','Tvh776515c','Puppet [www2] : Verify that \'/etc/hosts\' contains static mapping for VIPs of puppet, puppetdashboard, and activemq'),(202,2,0,'prod-puppet-www3',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"puppetdb\\\"\"','\"#puppetdb.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh777051c','Puppet [www3] : Verify that PuppetDB service is enabled at boot'),(205,2,0,'prod-puppet-www2',NULL,1,'\"cat /etc/httpd/conf.d/puppetmaster-dashboard.conf | grep -v \\\"^ *#\\\"\"','[\"<VirtualHost *:443>\", \"SSLEngine on\", \"SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP\", \"SSLCertificateFile /etc/puppet/ssl/certs/puppet.<location>.sco.cisco.com.pem\", \"SSLCertificateKeyFile /etc/puppet/ssl/private_keys/puppet.<location>.sco.cisco.com.pem\", \"SSLCertificateChainFile /etc/puppet/ssl/certs/ca.pem\", \"SSLCACertificateFile /etc/puppet/ssl/certs/ca.pem\", \"SSLCARevocationFile /etc/puppet/ssl/ca/ca_crl.pem\", \"SSLVerifyClient none\", \"SSLVerifyDepth 1\", \"SSLOptions +StdEnvVars\", \"SetEnv HOME /usr/share/puppet-dashboard\", \"DocumentRoot /usr/share/puppet-dashboard/public\", \"<Directory /usr/share/puppet-dashboard/public>\", \"Options None\", \"AllowOverride None\", \"Order allow,deny\", \"allow from all\", \"AuthName \\\"Puppet-Dashboard\\\"\", \"AuthType Basic\", \"AuthBasicProvider ldap\", \"AuthzLDAPAuthoritative on\", \"AuthLDAPUrl ldap://ldap-master.ironport.com/ou=people,ou=corporate,dc=ironport,dc=com?uid\", \"AuthLDAPGroupAttribute uniqueMember\", \"Require ldap-group cn=puppet-dashboard,ou=group,ou=production,dc=ironport,dc=com\", \"</Directory>\", \"LogLevel warn\", \"ErrorLog /var/log/httpd/puppetdashboard.error.log\", \"TransferLog /var/log/httpd/puppetdashboard.access.log\", \"<Location /reports/upload>\", \"<Limit POST>\", \"Order allow,deny\", \"Allow from all\", \"Satisfy any\", \"</Limit>\", \"</Location>\", \"<Location /nodes>\", \"<Limit GET>\", \"Order allow,deny\", \"Allow from prod-puppet-www1.<location>.sco.cisco.com prod-puppet-www2.<location>.sco.cisco.com prod-puppet-www3.<location>.sco.cisco.com\", \"Satisfy any\", \"</Limit>\", \"</Location>\", \"</VirtualHost>\"]','Tvh777061c','Puppet [www2] : Verify that \'/etc/httpd/conf.d/puppetmaster-dashboard.conf\' is equal to standard config'),(206,2,0,'prod-puppet-www2',20,1,'\"cat /etc/puppet/puppet.conf | grep -v \\\"^ *#\\\"| egrep \\\"\\\\[.*\\\\]|certname|storeconfigs|external_nodes| server\\\"\"','[\"[master]\", \"certname = puppet.<location>.sco.cisco.com\", \"storeconfigs = true\", \"storeconfigs_backend = puppetdb\", \"external_nodes = /etc/puppet/scripts/ENC.py\", \"[agent]\", \"certname = <host_shortname>.<location>.sco.cisco.com\", \"server = puppet.<location>.sco.cisco.com\"]','Tvh777079c','Puppet [www2] : Verify that \'/etc/puppet/puppet.conf\' is equal to standard config'),(207,2,0,'prod-puppet-www3',20,1,'\"cat /etc/puppet/puppet.conf | grep -v \\\"^ *#\\\"| egrep \\\"\\\\[.*\\\\]|certname|storeconfigs|external_nodes| server\\\"\"','[\"[master]\", \"storeconfigs = true\", \"storeconfigs_backend = puppetdb\", \"external_nodes = /etc/puppet/scripts/ENC.py\", \"[agent]\", \"certname = <host_shortname>.<location>.sco.cisco.com\", \"server = puppet.<location>.sco.cisco.com\"]','Tvh777080c','Puppet [www3] : Verify that \'/etc/puppet/puppet.conf\' is equal to standard config'),(208,2,0,'prod-puppet-www2',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"mysql\\\"\"','\"#mysqld.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh777387c','Puppet [www2] : Verify that MySQL service is enabled at boot'),(210,2,1,NULL,NULL,1,'\"/etc/puppet/external_node `uname -n`\"','\"classes: []\"','Tvh765511c','Puppet : Verify that Puppet Dashboard is responding'),(212,2,1,NULL,NULL,1,'\"/etc/puppet/scripts/ENC.py `uname -n`\"','[\"classes:\", \"# ---- path1 ---\", \"# ---- path2 ---\", \"# ---- path3 ---\", \"# ---- path4 ---\", \"# ---- path5 ---\", \"# ---- path6 ---\", \"parameters:\", \"location: <location>\", \"fqdn: <host_shortname>.<location>.sco.cisco.com\", \"os: Linux\", \"resource_container_name: VMCluster-<location_upper>\", \"site: Common Services <location_upper>\", \"environment: Production\", \"status: Production\", \"tenant: inf\", \"timezone_gmt_delta:\", \"timezone:\", \"is_virtual: yes\", \"environment: inf\"]','Tvh765512c','Puppet : Verify that ENC is able to return YAML output for the local puppet master'),(214,2,0,'prod-puppet-www1',NULL,1,'\"cat /etc/activemq/activemq.xml | grep -v \\\"^ *#\\\" | egrep \\\"broker xmlns|transportConnector\\\"\"','[\"<broker xmlns=\\\"http://activemq.apache.org/schema/core\\\" brokerName=\\\"<host_shortname>.<location>.sco.cisco.com\\\" dataDirectory=\\\"${activemq.base}/data\\\" useJmx=\\\"true\\\" persistent=\\\"true\\\" schedulePeriodForDestinationPurge=\\\"10000\\\" networkConnectorStartAsync=\\\"true\\\" offlineDurableSubscriberTimeout=\\\"3600000\\\" offlineDurableSubscriberTaskSchedule=\\\"3600000\\\" >\", \"<transportConnectors>\", \"<transportConnector name=\\\"openwire\\\" uri=\\\"tcp://0.0.0.0:61616\\\"/>\", \"<transportConnector name=\\\"stomp\\\" uri=\\\"stomp+ssl://0.0.0.0:61613?needClientAuth=true\\\"/>\", \"<transportConnector name=\\\"stomp+ssl\\\" uri=\\\"stomp+ssl://0.0.0.0:61615\\\"/>\", \"</transportConnectors>\"]','Tvh765515c','Puppet [www1] : Verify that \'activemq.xml\' is equal to standard config'),(215,2,0,'prod-puppet-www2',NULL,1,'\"cat /etc/activemq/activemq.xml | grep -v \\\"^ *#\\\" | egrep \\\"broker xmlns|transportConnector\\\"\"','[\"<broker xmlns=\\\"http://activemq.apache.org/schema/core\\\" brokerName=\\\"<host_shortname>.<location>.sco.cisco.com\\\" dataDirectory=\\\"${activemq.base}/data\\\" useJmx=\\\"true\\\" persistent=\\\"true\\\" schedulePeriodForDestinationPurge=\\\"10000\\\" networkConnectorStartAsync=\\\"true\\\" offlineDurableSubscriberTimeout=\\\"3600000\\\" offlineDurableSubscriberTaskSchedule=\\\"3600000\\\" >\", \"<transportConnectors>\", \"<transportConnector name=\\\"openwire\\\" uri=\\\"tcp://0.0.0.0:61616\\\"/>\", \"<transportConnector name=\\\"stomp\\\" uri=\\\"stomp+ssl://0.0.0.0:61613?needClientAuth=true\\\"/>\", \"<transportConnector name=\\\"stomp+ssl\\\" uri=\\\"stomp+ssl://0.0.0.0:61615\\\"/>\", \"</transportConnectors>\"]','Tvh777458c','Puppet [www2] : Verify that \'activemq.xml\' is equal to standard config'),(218,2,0,'prod-puppet-www1',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"activemq\\\"\"','\"#activemq.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh765516c','Puppet [www1] : Verify that ActiveMQ service is enabled at boot'),(219,2,0,'prod-puppet-www2',NULL,1,'\"/sbin/chkconfig --list | egrep \\\"activemq\\\"\"','\"#activemq.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh777500c','Puppet [www2] : Verify that ActiveMQ service is enabled at boot'),(235,1,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh765018c','RDNS: Verify that /etc/passwd doesn\'t contain passwords'),(236,1,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh765021c','RDNS: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(237,1,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh765022c','RDNS: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(238,1,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh765023c','RDNS: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(239,1,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh765024c','RDNS: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(240,1,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh765025c','RDNS: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(241,1,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh765026c','RDNS: Verify that NTP service is ENABLED'),(242,1,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh765027c','RDNS: Verify that NTP service is RUNNING'),(243,1,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[ \"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\" ]','Tvh765028c','RDNS: Verify that NTP is able to sync date/time'),(244,1,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh765029c','RDNS: Verify that NETWORK config is STATIC'),(245,1,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh765030c','RDNS: Verify that NETWORK is ENABLED'),(246,1,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh765031c','RDNS: Verify that DSR config fixes are APPLIED'),(247,1,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh767465c','RDNS: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(248,1,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh767466c','RDNS: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(249,1,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh777796c','RDNS: Verify that /etc/shadow doesn\'t contain plaintext salt'),(250,11,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779607c','Cobbler: Verify that /etc/passwd doesn\'t contain passwords'),(251,11,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779608c','Cobbler: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(252,11,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779609c','Cobbler: Verify that /etc/shadow doesn\'t contain plaintext salt'),(253,11,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779610c','Cobbler: Verify that DSR config fixes are APPLIED'),(254,11,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh779611c','Cobbler: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(255,11,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh779612c','Cobbler: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(256,11,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779613c','Cobbler: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(257,11,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779614c','Cobbler: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(258,11,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779615c','Cobbler: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(259,11,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779616c','Cobbler: Verify that NETWORK config is STATIC'),(260,11,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779617c','Cobbler: Verify that NETWORK is ENABLED'),(261,11,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779618c','Cobbler: Verify that NTP is able to sync date/time'),(262,11,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779619c','Cobbler: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(263,11,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779620c','Cobbler: Verify that NTP service is ENABLED'),(264,11,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779621c','Cobbler: Verify that NTP service is RUNNING'),(265,2,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779623c','Puppet: Verify that /etc/passwd doesn\'t contain passwords'),(266,2,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779624c','Puppet: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(267,2,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779625c','Puppet: Verify that /etc/shadow doesn\'t contain plaintext salt'),(268,2,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779626c','Puppet: Verify that DSR config fixes are APPLIED'),(269,2,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh779627c','Puppet: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(270,2,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh779628c','Puppet: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(271,2,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779629c','Puppet: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(272,2,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779630c','Puppet: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(273,2,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779631c','Puppet: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(274,2,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779632c','Puppet: Verify that NETWORK config is STATIC'),(275,2,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779633c','Puppet: Verify that NETWORK is ENABLED'),(276,2,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779634c','Puppet: Verify that NTP is able to sync date/time'),(277,2,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779635c','Puppet: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(278,2,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779636c','Puppet: Verify that NTP service is ENABLED'),(279,2,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779637c','Puppet: Verify that NTP service is RUNNING'),(280,3,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779639c','RabbitMQ: Verify that /etc/passwd doesn\'t contain passwords'),(281,3,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779640c','RabbitMQ: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(282,3,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779641c','RabbitMQ: Verify that /etc/shadow doesn\'t contain plaintext salt'),(283,3,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779642c','RabbitMQ: Verify that DSR config fixes are APPLIED'),(286,3,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779645c','RabbitMQ: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(287,3,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779646c','RabbitMQ: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(288,3,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779647c','RabbitMQ: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(289,3,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779648c','RabbitMQ: Verify that NETWORK config is STATIC'),(290,3,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779649c','RabbitMQ: Verify that NETWORK is ENABLED'),(291,3,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779650c','RabbitMQ: Verify that NTP is able to sync date/time'),(292,3,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779651c','RabbitMQ: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(293,3,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779652c','RabbitMQ: Verify that NTP service is ENABLED'),(294,3,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779653c','RabbitMQ: Verify that NTP service is RUNNING'),(295,4,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779661c','Logstash: Verify that /etc/passwd doesn\'t contain passwords'),(296,4,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779662c','Logstash: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(297,4,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779663c','Logstash: Verify that /etc/shadow doesn\'t contain plaintext salt'),(298,4,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779664c','Logstash: Verify that DSR config fixes are APPLIED'),(299,4,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh779665c','Logstash: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(300,4,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh779666c','Logstash: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(301,4,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779667c','Logstash: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(302,4,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779668c','Logstash: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(303,4,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779669c','Logstash: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(304,4,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779670c','Logstash: Verify that NETWORK config is STATIC'),(305,4,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779671c','Logstash: Verify that NETWORK is ENABLED'),(306,4,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779672c','Logstash: Verify that NTP is able to sync date/time'),(307,4,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779673c','Logstash: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(308,4,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779674c','Logstash: Verify that NTP service is ENABLED'),(309,4,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779675c','Logstash: Verify that NTP service is RUNNING'),(310,5,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779806c','Graphite: Verify that /etc/passwd doesn\'t contain passwords'),(311,5,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779807c','Graphite: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(312,5,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779808c','Graphite: Verify that /etc/shadow doesn\'t contain plaintext salt'),(313,5,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779809c','Graphite: Verify that DSR config fixes are APPLIED'),(314,5,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh779810c','Graphite: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(315,5,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh779811c','Graphite: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(316,5,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779812c','Graphite: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(317,5,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779813c','Graphite: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(318,5,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779814c','Graphite: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(319,5,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779815c','Graphite: Verify that NETWORK config is STATIC'),(320,5,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779816c','Graphite: Verify that NETWORK is ENABLED'),(321,5,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779817c','Graphite: Verify that NTP is able to sync date/time'),(322,5,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779818c','Graphite: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(323,5,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779819c','Graphite: Verify that NTP service is ENABLED'),(324,5,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779820c','Graphite: Verify that NTP service is RUNNING'),(325,6,1,NULL,NULL,1,'\"cat /etc/passwd | cut -d\':\' -f1,2 | grep -v :x | wc -l\"','\"0\"','Tvh779821c','Collectd: Verify that /etc/passwd doesn\'t contain passwords'),(326,6,1,NULL,NULL,1,'\"cat /etc/resolv.conf | grep -v \\\"^ *#\\\"\"','[\"nameserver <priv_mon_ipv4>.21\", \"nameserver <priv_mon_ipv4>.22\"]','Tvh779822c','Collectd: Verify that /etc/resolv.conf contains <DC> specific DNS servers'),(327,6,1,NULL,NULL,1,'\"grep root /etc/shadow | grep -c install\"','\"0\"','Tvh779823c','Collectd: Verify that /etc/shadow doesn\'t contain plaintext salt'),(328,6,1,NULL,NULL,1,'\"cat /etc/sysctl.conf | grep net.ipv4.conf.all\"','[\"net.ipv4.conf.all.arp_announce = 2\", \"net.ipv4.conf.all.arp_ignore = 1\", \"net.ipv4.conf.all.rp_filter = 0\"]','Tvh779824c','Collectd: Verify that DSR config fixes are APPLIED'),(329,6,1,NULL,NULL,1,'\"ps auxwww|grep vmtools\"','\"#root.*[0-9]+.*/usr/sbin/vmtoolsd#\"','Tvh779825c','Collectd: Verify that each VM has insatlled VmWare tools and tools are RUNNING'),(330,6,1,NULL,NULL,1,'\"dmesg|grep \'NIC driver\'\"','\"#VMware vmxnet3 virtual NIC driver - version 1\\\\.1\\\\..*-NAPI#\"','Tvh779826c','Collectd: Verify that each VM is using \'vmxnet3\' driver instead of \'E1000\''),(331,6,1,NULL,NULL,1,'\"host google.com\"','\"google.com has address\"','Tvh779827c','Collectd: Verify that INFRA host(s) can resolve EXTERNAL dns name(s)'),(332,6,1,NULL,NULL,1,'\"host prod-ops-rmq1\"','\"prod-ops-rmq1.<location>.sco.cisco.com has address <priv_mon_ipv4>.23\"','Tvh779828c','Collectd: Verify that INFRA host(s) can resolve INTERNAL dns name(s)'),(333,6,1,NULL,NULL,1,'\"host <priv_mon_ipv4>.23\"','\"#23\\\\..*\\\\.in-addr.arpa domain name pointer prod-ops-rmq1\\\\.<location>\\\\.sco\\\\.cisco\\\\.com#\"','Tvh779829c','Collectd: Verify that INFRA host(s) can resolve REVERSE INTERNAL dns name(s)'),(334,6,1,NULL,NULL,1,'\"cat /etc/sysconfig/network-scripts/ifcfg-eth0\"','[\"DEVICE=eth0\", \"BOOTPROTO=static\", \"GATEWAY=<priv_mon_ipv4>.1\", \"IPADDR=<priv_mon_ipv4>\", \"NETMASK=255.255.255.0\", \"ONBOOT=yes\"]','Tvh779830c','Collectd: Verify that NETWORK config is STATIC'),(335,6,1,NULL,NULL,1,'\"cat /etc/sysconfig/network\"','[\"NETWORKING=yes\", \"HOSTNAME=<host_shortname>.<location>.sco.cisco.com\"]','Tvh779831c','Collectd: Verify that NETWORK is ENABLED'),(336,6,1,NULL,20,1,'\"/sbin/service ntpd stop && ntpdate clock1 && ntpdate clock2 && /sbin/service ntpd start\"','[\"#Shutting down ntpd:.*OK.*#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.2 offset.*sec#\", \"#ntpdate.*adjust time server <priv_mon_ipv4>\\\\.3 offset.*sec#\", \"#Starting ntpd:.*OK.*#\"]','Tvh779832c','Collectd: Verify that NTP is able to sync date/time'),(337,6,1,NULL,NULL,1,'\"cat /etc/ntp.conf\"','[\"server clock1.<location>.sco.cisco.com\", \"server clock2.<location>.sco.cisco.com\"]','Tvh779833c','Collectd: Verify that NTP servers are clock[1,2].<DC>.sco.cisco.com'),(338,6,1,NULL,NULL,1,'\"/sbin/chkconfig --list|grep ntpd\"','\"#ntpd.*0:off.*1:off.*2:on.*3:on.*4:on.*5:on.*6:off#\"','Tvh779834c','Collectd: Verify that NTP service is ENABLED'),(339,6,1,NULL,NULL,1,'\"/sbin/service ntpd status\"','\"#ntpd.*pid.*[0-9]+.*is running#\"','Tvh779835c','Collectd: Verify that NTP service is RUNNING'),(340,11,1,NULL,20,1,'\"cd /data/home/cobbler/tools && sh khalifa-cobbler-validate.sh\"','[\"Checking Cobbler Configuration on <host_shortname>.<location>.sco.cisco.com\", \"Checking DHCP local process\", \"PROCS OK: 1 process with args \'/usr/sbin/dhcpd\'\", \"Checking DHCPD Failover on <host_shortname>.<location>.sco.cisco.com\", \"#TCP OK - [0-9]+\\\\.[0-9]+ second response time on port 647#\", \"Checking TFTP on <host_shortname>.<location>.sco.cisco.com\", \"OK - Received file successfully\", \"tftp -v <host_shortname>.<location>.sco.cisco.com -c get pxelinux.0\", \"#Connected to <host_shortname>\\\\.<location>\\\\.sco\\\\.cisco\\\\.com \\\\(<priv_mon_ipv4>\\\\.1[0-1]\\\\), port 69#\", \"getting from <host_shortname>.<location>.sco.cisco.com:pxelinux.0 to pxelinux.0 [netascii]\", \"#Received [0-9]+ bytes in [0-9]+\\\\.[0-9]+ seconds#\", \"Checking HTTPD on <host_shortname>.<location>.sco.cisco.com\", \"#TCP OK - [0-9]+\\\\.[0-9]+ second response time on port 80#\", \"Checking Cobbler API on <host_shortname>.<location>.sco.cisco.com\", \"OK. Found Profile: RHEL-Server-5.9-Generic-Std-x86_64 on <host_shortname>.<location>.sco.cisco.com\"]','Tvh765469c','Cobbler: Verify that Cobbler setup can pass validation script checks'),(341,2,1,NULL,NULL,1,'\"nc -v -w 5 prod-puppet-dbhost-vip1.<location>.sco.cisco.com 5432\"','\"Connection to prod-puppet-dbhost-vip1.<location>.sco.cisco.com 5432 port [tcp/postgres] succeeded!\"','Tvh777058c','Puppet : Verify that PostgreSQL is reachable via VIP'),(342,2,1,NULL,NULL,1,'\"netstat -na | grep \\\"LISTEN\\\" | egrep \\\":8081\\\"\"','\"#tcp.*::ffff:<priv_mon_ipv4>\\\\.1[6-8]:8081.*:::\\\\*.*LISTEN#\"','Tvh777059c','Puppet : Verify that PuppetDB service is RUNNING'),(343,2,0,'prod-puppet-www1',NULL,1,'\"netstat -na | grep \\\"LISTEN\\\" | egrep \\\":443\\\"\"','\"#tcp.*:::443.*:::\\\\*.*LISTEN#\"','Tvh765510c','Puppet [www1] : Verify that Puppet Dashboard service is RUNNING'),(344,2,0,'prod-puppet-www2',NULL,1,'\"netstat -na | grep \\\"LISTEN\\\" | egrep \\\":443\\\"\"','\"#tcp.*:::443.*:::\\\\*.*LISTEN#\"','Tvh792892c','Puppet [www2] : Verify that Puppet Dashboard service is RUNNING'),(345,2,1,NULL,NULL,1,'\"cat /etc/fstab | grep nfs; df -h /data/puppet/\"','[\"#<priv_nfsmon_ipv4>\\\\.30:/vol/prod_ops_puppet.*/data/puppet.*nfs.*rw,soft,bg.*0.*0#\", \"<priv_nfsmon_ipv4>.30:/vol/prod_ops_puppet\"]','Tvh765487c','Puppet : Verify that the Netapp NFS is in the /etc/fstab and it\'s currently mounted'),(348,4,1,NULL,NULL,1,'\"nc -v -w 5 rabbitmq 5672\"','\"Connection to rabbitmq 5672 port [tcp/amqp] succeeded!\"','Tvh766229c','Logstash: Verify that Logstash host able to contact the RabbitMQ VIP via AMQP (5672/tcp) port');
/*!40000 ALTER TABLE `testcase_data_host` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testcase_execution_log`
--
DROP TABLE IF EXISTS `testcase_execution_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testcase_execution_log` (
`log_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime DEFAULT NULL,
`test_run_cnt` int(11) DEFAULT '0',
`devices` varchar(255) DEFAULT NULL,
`location` varchar(45) DEFAULT NULL,
`tests` text,
`filename` varchar(255) DEFAULT NULL,
PRIMARY KEY (`log_id`),
UNIQUE KEY `log_id_UNIQUE` (`log_id`)
) ENGINE=InnoDB AUTO_INCREMENT=631 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testcase_execution_log`
--
LOCK TABLES `testcase_execution_log` WRITE;
/*!40000 ALTER TABLE `testcase_execution_log` DISABLE KEYS */;
INSERT INTO `testcase_execution_log` VALUES (1,'2014-03-25 16:44:48',1,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','SCS2','[\"ALL\"]',NULL),(2,'2014-03-25 16:50:37',1,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]',NULL),(3,'2014-03-25 17:02:05',1,'[\"rtr-vpn-01\"]','SCS2','[\"Tvh701107c\"]',NULL),(4,'2014-03-25 17:04:52',2,'[\"rtr-vpn-01\"]','SCS2','[\"Tvh701107c\"]',NULL),(5,'2014-03-25 17:06:28',3,'[\"rtr-vpn-01\"]','SCS2','[\"Tvh701107c\"]',NULL),(6,'2014-03-25 17:07:45',4,'[\"rtr-vpn-01\"]','SCS2','[\"Tvh701107c\"]',NULL),(7,'2014-03-25 17:09:53',1,'[\"rtr-vpn-02\"]','SCS2','[\"Tvh701107c\"]',NULL),(8,'2014-03-25 17:11:48',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','AKL1','[\"Tvh701107c\"]',NULL),(9,'2014-03-25 17:15:38',2,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','AKL1','[\"Tvh701107c\"]',NULL),(10,'2014-03-25 17:16:50',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh701107c\"]',NULL),(11,'2014-03-25 17:22:53',1,'[\"sw-mgmt-02\"]','AKL1','[\"ALL\"]','akl1-sw-mgmt-02'),(12,'2014-03-25 17:22:53',1,'[\"sw-mgmt-01\"]','AKL1','[\"ALL\"]','akl1-sw-mgmt-01'),(13,'2014-03-25 17:26:53',1,'[\"rtr-vpn-02\"]','AKL1','[\"ALL\"]','akl1-rtr-vpn-02'),(14,'2014-03-25 17:26:53',1,'[\"rtr-vpn-01\"]','AKL1','[\"ALL\"]','akl1-rtr-vpn-01'),(15,'2014-03-25 17:33:34',1,'[\"sw-core-02\"]','AKL1','[\"ALL\"]','akl1-sw-core-02'),(16,'2014-03-25 17:33:34',1,'[\"sw-core-01\"]','AKL1','[\"ALL\"]','akl1-sw-core-01'),(17,'2014-03-25 18:05:23',1,'[\"rtr-brd-02\"]','AKL1','[\"ALL\"]','akl1-rtr-brd-02'),(18,'2014-03-25 18:05:23',1,'[\"rtr-brd-01\"]','AKL1','[\"ALL\"]','akl1-rtr-brd-01'),(19,'2014-03-25 18:10:59',1,'[\"lb-core-01\"]','AKL1','[\"ALL\"]','akl1-lb-core-01'),(20,'2014-03-25 18:10:59',1,'[\"lb-core-02\"]','AKL1','[\"ALL\"]','akl1-lb-core-02'),(21,'2014-03-25 18:22:07',1,'[\"fw-brd-04\"]','AKL1','[\"ALL\"]','akl1-fw-brd-04'),(22,'2014-03-25 18:22:07',1,'[\"fw-brd-03\"]','AKL1','[\"ALL\"]','akl1-fw-brd-03'),(23,'2014-03-26 14:16:30',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','AKL1','[\"Tvh756394c\"]',NULL),(24,'2014-04-02 13:42:53',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758296c\"]',NULL),(25,'2014-04-02 13:46:47',2,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758296c\"]',NULL),(26,'2014-04-02 13:47:54',1,'[\"sw-core-01\"]','SCS2','[\"Tvh758296c\"]',NULL),(27,'2014-04-02 13:58:39',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758298c\"]',NULL),(28,'2014-04-02 14:09:29',2,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758298c\"]',NULL),(29,'2014-04-02 14:13:57',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758299c\", \"Tvh758308c\"]',NULL),(30,'2014-04-02 14:27:21',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758310c\", \"Tvh758311c\"]',NULL),(31,'2014-04-02 14:33:41',2,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh758310c\", \"Tvh758311c\"]',NULL),(32,'2014-04-02 18:01:22',1,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(33,'2014-04-03 11:44:29',2,'[\"sw-core-01\"]','AKL1','[\"ALL\"]',NULL),(34,'2014-04-04 12:37:55',2,'[\"sw-mgmt-01\"]','AKL1','[\"ALL\"]',NULL),(35,'2014-04-04 12:39:27',3,'[\"sw-mgmt-01\"]','AKL1','[\"ALL\"]','Test_sw-mgmt-01'),(36,'2014-04-04 12:44:32',2,'[\"sw-mgmt-02\"]','AKL1','[\"ALL\"]','Test_sw-mgmt-02'),(37,'2014-04-04 12:51:03',2,'[\"rtr-brd-01\"]','AKL1','[\"ALL\"]','Test_rtr-brd-01'),(38,'2014-04-04 12:55:52',2,'[\"rtr-brd-02\"]','AKL1','[\"ALL\"]','Test_rtr-brd-02'),(39,'2014-04-04 13:02:09',2,'[\"rtr-vpn-01\"]','AKL1','[\"ALL\"]','Test_rtr-vpn-01'),(40,'2014-04-04 13:07:39',2,'[\"rtr-vpn-02\"]','AKL1','[\"ALL\"]','Test_rtr-vpn-02'),(41,'2014-04-04 13:15:48',2,'[\"lb-core-01\"]','AKL1','[\"ALL\"]','Test_lb-core-01'),(42,'2014-04-04 13:21:53',2,'[\"lb-core-02\"]','AKL1','[\"ALL\"]','Test_lb-core-02'),(43,'2014-04-04 13:31:14',3,'[\"sw-core-01\"]','AKL1','[\"ALL\"]','Test_sw-core-01'),(44,'2014-04-04 14:22:33',2,'[\"sw-core-02\"]','AKL1','[\"ALL\"]','Test_sw-core-02'),(45,'2014-04-04 14:54:15',2,'[\"fw-brd-03\"]','AKL1','[\"ALL\"]','Test_fw-brd-03'),(46,'2014-04-04 15:12:33',2,'[\"fw-brd-04\"]','AKL1','[\"ALL\"]','Test_fw-brd-04'),(47,'2014-04-07 17:28:55',1,'[\"lb-core-01\"]','AKL1','[\"Tvh754890c\"]',NULL),(48,'2014-04-09 11:53:52',1,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','SCS2_sw-mgmt-01'),(49,'2014-04-09 11:56:38',2,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','SCS2_sw-mgmt-01'),(50,'2014-04-09 12:11:36',1,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','SCS2_lb-core-01'),(51,'2014-04-09 12:21:21',1,'[\"lb-core-02\"]','SCS2','[\"ALL\"]','SCS2_lb-core-02'),(52,'2014-04-09 12:28:15',1,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','SCS2_fw-brd-03'),(53,'2014-04-09 12:38:37',2,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(54,'2014-04-09 12:41:40',1,'[\"fw-brd-04\"]','SCS2','[\"ALL\"]','SCS2_fw-brd-04'),(55,'2014-04-09 12:42:38',3,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(56,'2014-04-09 12:44:23',4,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(57,'2014-04-09 12:45:26',5,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(58,'2014-04-09 12:46:37',6,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(59,'2014-04-09 12:48:06',7,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(60,'2014-04-09 12:50:32',4,'[\"sw-core-01\"]','AKL1','[\"ALL\"]',NULL),(61,'2014-04-09 12:53:05',1,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(62,'2014-04-09 12:53:28',1,'[\"rtr-brd-01\"]','SCS2','[\"ALL\"]','SCS2_rtr-brd-01'),(63,'2014-04-09 12:54:37',2,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(64,'2014-04-09 12:55:37',3,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(65,'2014-04-09 12:56:35',4,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(66,'2014-04-09 12:57:25',5,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(67,'2014-04-09 13:01:10',1,'[\"rtr-brd-02\"]','SCS2','[\"ALL\"]','SCS2_rtr-brd-02'),(68,'2014-04-09 13:01:16',1,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(69,'2014-04-09 13:02:40',2,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(70,'2014-04-09 13:03:36',3,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(71,'2014-04-09 13:04:25',6,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(72,'2014-04-09 13:04:38',8,'[\"sw-core-01\"]','SCS2','[\"ALL\"]','SCS2_sw-core-01'),(73,'2014-04-09 13:13:36',4,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(74,'2014-04-09 13:16:56',5,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(75,'2014-04-09 13:25:35',1,'[\"sw-core-02\"]','SCS2','[\"ALL\"]','SCS2_sw-core-02'),(76,'2014-04-09 13:35:56',6,'[\"sw-core-01\"]','FRA2','[\"Tvh696507c\"]',NULL),(77,'2014-04-09 14:24:56',7,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(78,'2014-04-09 14:58:22',2,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]','SCS2_rtr-vpn-01'),(79,'2014-04-09 15:01:54',1,'[\"rtr-vpn-02\"]','SCS2','[\"ALL\"]','SCS2_rtr-vpn-02'),(80,'2014-04-09 15:08:35',8,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(81,'2014-04-09 15:11:32',9,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(82,'2014-04-09 15:17:43',10,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(83,'2014-04-09 15:20:52',11,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(84,'2014-04-09 15:22:30',12,'[\"sw-core-01\"]','FRA2','[\"ALL\"]',NULL),(85,'2014-04-09 15:35:56',9,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(86,'2014-04-09 15:41:06',10,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(87,'2014-04-09 15:49:56',11,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(88,'2014-04-09 16:10:36',12,'[\"sw-core-01\"]','SCS2','[\"ALL\"]',NULL),(89,'2014-04-09 16:11:57',2,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]',NULL),(90,'2014-04-09 16:24:29',2,'[\"lb-core-01\"]','SCS2','[\"ALL\"]',NULL),(92,'2014-04-09 16:49:50',3,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]',NULL),(93,'2014-04-09 17:02:14',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh757101c\"]',NULL),(94,'2014-04-09 17:05:07',2,'[\"rtr-vpn-02\"]','SCS2','[\"ALL\"]','SCS2_rtr-vpn-02'),(95,'2014-04-10 11:22:33',3,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','SCS2_sw-mgmt-01'),(96,'2014-04-10 11:25:38',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh696511c\", \"Tvh755188c\", \"Tvh759380c\", \"Tvh759398c\"]',NULL),(97,'2014-04-10 11:27:04',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696511c\", \"Tvh755188c\", \"Tvh759380c\", \"Tvh759398c\"]',NULL),(98,'2014-04-10 11:28:52',1,'[\"sw-mgmt-02\"]','SCS2','[\"ALL\"]','SCS2_sw-mgmt-02'),(99,'2014-04-10 13:04:18',5,'[\"sw-core-01\"]','AKL1','[\"ALL\"]','Test_sw-core-01'),(100,'2014-04-10 13:05:14',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh759399c\", \"Tvh759408c\", \"Tvh759409c\", \"Tvh759410c\"]',NULL),(101,'2014-04-10 13:06:39',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh759399c\", \"Tvh759408c\", \"Tvh759409c\", \"Tvh759410c\"]',NULL),(102,'2014-04-10 13:39:18',3,'[\"sw-core-02\"]','AKL1','[\"ALL\"]','Test_sw-core-02'),(103,'2014-04-10 14:34:46',3,'[\"fw-brd-03\"]','AKL1','[\"ALL\"]','Test_fw-brd-03'),(104,'2014-04-10 14:56:58',3,'[\"fw-brd-04\"]','AKL1','[\"ALL\"]','Test_fw-brd-04'),(105,'2014-04-10 15:26:12',3,'[\"lb-core-01\"]','AKL1','[\"ALL\"]','Test_lb-core-01'),(106,'2014-04-10 15:36:28',3,'[\"lb-core-02\"]','AKL1','[\"ALL\"]','Test_lb-core-02'),(107,'2014-04-14 14:05:07',1,'[\"lb-core-01\"]','AKL1','[\"Tvh756783c\"]',NULL),(108,'2014-04-14 14:05:57',2,'[\"lb-core-01\"]','AKL1','[\"Tvh756783c\"]',NULL),(109,'2014-04-14 14:07:37',3,'[\"lb-core-01\"]','AKL1','[\"Tvh756783c\"]',NULL),(110,'2014-04-14 14:08:56',1,'[\"lb-core-01\", \"lb-core-02\"]','AKL1','[\"Tvh756783c\"]',NULL),(111,'2014-04-14 14:10:02',1,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','AKL1','[\"Tvh756778c\"]',NULL),(112,'2014-04-14 14:10:54',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','AKL1','[\"Tvh756769c\"]',NULL),(113,'2014-04-14 14:11:39',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','AKL1','[\"Tvh756774c\"]',NULL),(114,'2014-04-14 14:12:24',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','AKL1','[\"Tvh756772c\"]',NULL),(115,'2014-04-16 13:02:29',1,'[]','AKL1','[\"None\"]',NULL),(116,'2014-04-16 13:05:58',2,'[]','AKL1','[\"None\"]',NULL),(117,'2014-04-16 13:07:03',3,'[]','AKL1','[\"None\"]',NULL),(118,'2014-04-16 13:07:56',4,'[]','AKL1','[\"None\"]',NULL),(119,'2014-04-16 13:23:00',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"None\"]',NULL),(120,'2014-04-16 13:25:47',2,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"None\"]',NULL),(121,'2014-04-16 13:27:13',1,'[]','AKL1','[\"Tvh758162c\", \"Tvh760538c\"]',NULL),(122,'2014-04-16 13:28:50',1,'[\"sw-core-01\"]','AKL1','[\"Tvh758162c\", \"Tvh760538c\"]',NULL),(123,'2014-04-16 13:30:02',6,'[\"sw-core-01\"]','AKL1','[\"ALL\"]',NULL),(124,'2014-04-16 13:32:13',3,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"None\"]',NULL),(125,'2014-04-16 13:35:24',4,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"None\"]',NULL),(126,'2014-04-16 13:36:45',5,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"None\"]',NULL),(127,'2014-04-16 13:38:30',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"None\"]',NULL),(128,'2014-04-16 13:42:47',1,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"fw-brd-03\", \"fw-brd-04\", \"lb-core-01\", \"lb-core-02\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(129,'2014-04-16 13:47:05',1,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(130,'2014-04-16 13:51:53',2,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(131,'2014-04-16 13:54:49',3,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(132,'2014-04-16 13:56:20',1,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','AKL1','[\"Tvh756783c\"]',NULL),(133,'2014-04-16 13:57:41',4,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(134,'2014-04-16 13:59:22',5,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(135,'2014-04-16 14:00:39',6,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(136,'2014-04-16 14:07:33',7,'[\"rtr-brd-01\", \"rtr-brd-02\", \"rtr-vpn-01\", \"rtr-vpn-02\", \"sw-mgmt-01\", \"sw-mgmt-02\", \"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(137,'2014-04-16 14:08:52',1,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(138,'2014-04-16 14:10:23',2,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh756783c\"]',NULL),(139,'2014-04-16 14:40:42',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh696912c\", \"Tvh760546c\", \"Tvh760547c\", \"Tvh760548c\"]',NULL),(140,'2014-04-16 14:43:55',2,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh696912c\", \"Tvh760546c\", \"Tvh760547c\", \"Tvh760548c\"]',NULL),(141,'2014-04-16 14:45:57',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','AKL1','[\"Tvh696912c\", \"Tvh760546c\", \"Tvh760547c\", \"Tvh760548c\"]',NULL),(142,'2014-04-16 15:42:31',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','AKL1','[\"Tvh697055c\"]',NULL),(143,'2014-04-16 15:43:24',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh697055c\"]',NULL),(144,'2014-04-16 17:15:37',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh697055c\", \"Tvh697056c\"]',NULL),(145,'2014-04-16 17:18:59',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','AKL1','[\"Tvh697055c\", \"Tvh697056c\"]',NULL),(146,'2014-04-17 11:19:08',3,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','SCS-lb-core-01'),(147,'2014-04-17 11:22:52',4,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','SCS-lb-core-01'),(148,'2014-04-17 11:29:29',2,'[\"lb-core-02\"]','SCS2','[\"ALL\"]','SCS-lb-core-02'),(149,'2014-04-17 11:35:41',4,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]','SCS-rtr-vpn-01'),(150,'2014-04-17 11:39:35',3,'[\"rtr-vpn-02\"]','SCS2','[\"ALL\"]','SCS-rtr-vpn-02'),(151,'2014-04-17 11:43:54',2,'[\"rtr-brd-01\"]','SCS2','[\"ALL\"]','SCS-rtr-brd-01'),(152,'2014-04-17 11:46:28',2,'[\"rtr-brd-02\"]','SCS2','[\"ALL\"]','SCS-rtr-brd-02'),(153,'2014-04-17 11:49:20',3,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','SCS-fw-brd-03'),(154,'2014-04-17 12:00:54',2,'[\"fw-brd-04\"]','SCS2','[\"ALL\"]','SCS-fw-brd-04'),(155,'2014-04-17 12:13:19',4,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','SCS-sw-mgmt-01'),(156,'2014-04-17 12:15:24',2,'[\"sw-mgmt-02\"]','SCS2','[\"ALL\"]','SCS-sw-mgmt-02'),(157,'2014-04-17 12:17:39',13,'[\"sw-core-01\"]','SCS2','[\"ALL\"]','SCS-sw-core-01'),(158,'2014-04-17 12:44:15',2,'[\"sw-core-02\"]','SCS2','[\"ALL\"]','SCS-sw-core-02'),(159,'2014-04-17 14:59:13',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh696651c\"]',NULL),(160,'2014-04-17 15:00:13',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696651c\"]',NULL),(161,'2014-04-17 15:01:08',2,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696651c\"]',NULL),(162,'2014-04-17 15:05:18',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696650c\"]',NULL),(163,'2014-04-17 15:23:20',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758471c\"]',NULL),(164,'2014-04-17 15:24:50',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758332c\"]',NULL),(165,'2014-04-17 15:26:10',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758293c\"]',NULL),(166,'2014-04-17 15:27:30',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758292c\"]',NULL),(167,'2014-04-17 15:28:42',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758291c\"]',NULL),(168,'2014-04-17 15:30:00',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh697153c\"]',NULL),(169,'2014-04-17 17:33:43',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh697153c\", \"Tvh715802c\"]',NULL),(170,'2014-04-17 17:38:04',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh700568c\"]',NULL),(171,'2014-04-17 17:41:43',2,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh700568c\"]',NULL),(172,'2014-04-17 17:43:28',3,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh700568c\"]',NULL),(173,'2014-04-17 17:45:12',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758474c\"]',NULL),(174,'2014-04-17 17:46:40',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758473c\"]',NULL),(175,'2014-04-17 17:47:58',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758472c\"]',NULL),(176,'2014-04-17 17:50:00',3,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696651c\"]',NULL),(177,'2014-04-17 17:51:06',2,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696650c\"]',NULL),(178,'2014-04-17 17:53:36',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh696650c\"]',NULL),(179,'2014-04-18 10:54:15',1,'[\"lb-core-01\", \"lb-core-02\"]','AKL1','[\"Tvh754890c\"]',NULL),(180,'2014-04-18 11:17:40',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696648c\"]',NULL),(181,'2014-04-18 12:18:11',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh755180c\"]',NULL),(182,'2014-04-18 13:15:09',1,'[\"sw-core-01\", \"sw-core-02\"]','AKL1','[\"Tvh696206c\"]',NULL),(183,'2014-04-18 14:39:32',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh697074c\"]',NULL),(184,'2014-04-18 14:40:39',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh697083c\"]',NULL),(185,'2014-04-23 15:29:12',1,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]',NULL),(186,'2014-04-23 15:37:16',2,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(187,'2014-04-23 16:07:42',3,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]',NULL),(188,'2014-04-23 16:30:53',3,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696650c\"]',NULL),(189,'2014-04-23 16:36:24',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh756769c\"]',NULL),(190,'2014-04-23 16:58:43',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh715953c\"]',NULL),(191,'2014-04-23 17:42:09',4,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(192,'2014-04-24 11:19:33',5,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(193,'2014-04-24 11:46:20',6,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(194,'2014-04-24 15:23:12',7,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(195,'2014-04-24 15:51:30',8,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(196,'2014-04-24 16:18:47',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696654c\"]',NULL),(197,'2014-04-24 18:00:03',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753586c\", \"Tvh753587c\", \"Tvh756405c\", \"Tvh696208c\", \"Tvh696209c\", \"Tvh696206c\"]',NULL),(198,'2014-04-25 10:53:43',2,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753586c\", \"Tvh753587c\", \"Tvh756405c\", \"Tvh696208c\", \"Tvh696209c\", \"Tvh696206c\"]',NULL),(199,'2014-04-25 11:03:19',9,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(200,'2014-04-25 11:31:19',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(201,'2014-04-25 11:48:37',2,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696654c\"]',NULL),(202,'2014-04-25 11:52:00',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh755180c\"]',NULL),(203,'2014-04-25 12:02:26',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753587c\"]',NULL),(204,'2014-04-25 12:03:44',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753586c\"]',NULL),(205,'2014-04-25 12:04:40',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh756405c\"]',NULL),(206,'2014-04-25 12:36:35',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753585c\"]',NULL),(207,'2014-04-25 13:52:31',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh715955c\"]',NULL),(208,'2014-04-25 13:54:40',4,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696650c\"]',NULL),(209,'2014-04-25 15:20:34',10,'[\"lb-core-01\", \"lb-core-02\"]','SCS2','[\"Tvh754123c\", \"Tvh754122c\", \"Tvh754130c\", \"Tvh756783c\"]','Test_After_Jihad'),(210,'2014-04-25 17:09:36',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]',NULL),(211,'2014-04-25 17:09:47',2,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]',NULL),(212,'2014-04-25 17:10:37',3,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(213,'2014-04-25 17:15:08',4,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(214,'2014-04-25 17:52:33',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh715411c\"]',NULL),(215,'2014-04-25 18:16:36',2,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh715411c\"]',NULL),(216,'2014-04-28 11:13:33',5,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(217,'2014-04-28 13:04:15',3,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SCS2','[\"Tvh715411c\"]',NULL),(218,'2014-04-29 12:15:44',6,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(219,'2014-04-30 14:35:09',7,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh758800c\", \"Tvh758801c\", \"Tvh758802c\", \"Tvh758803c\", \"Tvh758804c\", \"Tvh756772c\"]','Test_After_Jihad'),(220,'2014-04-30 15:41:09',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(221,'2014-04-30 16:25:15',2,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(222,'2014-05-05 11:03:29',3,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(223,'2014-05-08 12:08:32',4,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(224,'2014-05-12 11:52:48',5,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(225,'2014-05-12 11:58:17',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\"]','Test_After_Jihad'),(226,'2014-05-12 13:35:17',6,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(227,'2014-05-13 13:08:07',7,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\", \"Tvh757223c\", \"Tvh756772c\"]','Test_After_Jihad'),(228,'2014-05-13 16:53:08',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh760538c\", \"Tvh760539c\", \"Tvh760540c\"]','Test_After_Jihad'),(229,'2014-05-13 17:13:15',1,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh758797c\"]','Test_After_Jihad'),(230,'2014-05-14 15:02:34',4,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','Test_Re'),(231,'2014-05-14 15:03:31',5,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','Test_fw-brd-03'),(232,'2014-05-14 15:27:56',3,'[\"fw-brd-04\"]','SCS2','[\"ALL\"]','Test_fw-brd-04'),(233,'2014-05-14 15:53:54',14,'[\"sw-core-01\"]','SCS2','[\"ALL\"]','Test_sw-core-01'),(234,'2014-05-14 16:50:18',3,'[\"sw-core-02\"]','SCS2','[\"ALL\"]','Test_sw-core-02'),(235,'2014-05-14 17:23:55',5,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','Test_lb-core-01'),(236,'2014-05-14 17:34:13',3,'[\"lb-core-02\"]','SCS2','[\"ALL\"]','Test_lb-core-02'),(237,'2014-05-15 10:52:17',6,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','Test_lb-core-01'),(238,'2014-05-15 11:11:51',4,'[\"lb-core-02\"]','SCS2','[\"ALL\"]','Test_lb-core-02'),(239,'2014-05-15 11:24:53',6,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','Test_fw-brd-03'),(240,'2014-05-15 11:50:12',4,'[\"fw-brd-04\"]','SCS2','[\"ALL\"]','Test_fw-brd-04'),(241,'2014-05-15 12:16:28',5,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]','Test_rtr-vpn-01'),(242,'2014-05-15 12:22:10',4,'[\"rtr-vpn-02\"]','SCS2','[\"ALL\"]','Test_rtr-vpn-02'),(243,'2014-05-15 12:37:39',3,'[\"rtr-brd-01\"]','SCS2','[\"ALL\"]','Test_rtr-brd-01'),(244,'2014-05-15 12:42:46',3,'[\"rtr-brd-02\"]','SCS2','[\"ALL\"]','Test_rtr-brd-02'),(245,'2014-05-15 12:50:15',5,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','Test_sw-mgmt-01'),(246,'2014-05-15 12:52:38',3,'[\"sw-mgmt-02\"]','SCS2','[\"ALL\"]','Test_sw-mgmt-02'),(247,'2014-05-15 12:54:43',15,'[\"sw-core-01\"]','SCS2','[\"ALL\"]','Test_sw-core-01'),(248,'2014-05-15 13:40:32',4,'[\"sw-core-02\"]','SCS2','[\"ALL\"]','Test_sw-core-02'),(249,'2014-05-19 11:26:41',16,'[\"sw-core-01\"]','SCS2','[\"ALL\"]','Re_sw-core-01'),(250,'2014-05-19 12:04:06',5,'[\"sw-core-02\"]','SCS2','[\"ALL\"]','Re_sw-core-02'),(251,'2014-05-19 12:37:24',7,'[\"lb-core-01\"]','SCS2','[\"ALL\"]','Re_lb-core-01'),(252,'2014-05-19 12:48:55',7,'[\"fw-brd-03\"]','SCS2','[\"ALL\"]','Re_fw-brd-03'),(253,'2014-05-19 13:12:06',5,'[\"fw-brd-04\"]','SCS2','[\"ALL\"]','Re_fw-brd-04'),(254,'2014-05-19 13:38:52',4,'[\"rtr-brd-01\"]','SCS2','[\"ALL\"]','Re_rtr-brd-01'),(255,'2014-05-19 13:47:15',4,'[\"rtr-brd-02\"]','SCS2','[\"ALL\"]','Re_rtr-brd-02'),(256,'2014-05-19 13:51:29',6,'[\"rtr-vpn-01\"]','SCS2','[\"ALL\"]','Re_rtr-vpn-01'),(257,'2014-05-19 13:58:39',5,'[\"rtr-vpn-02\"]','SCS2','[\"ALL\"]','Re_rtr-vpn-02'),(258,'2014-05-19 14:04:47',6,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','Re_sw-mgmt-01'),(259,'2014-05-19 14:07:49',4,'[\"sw-mgmt-02\"]','SCS2','[\"ALL\"]','Re_sw-mgmt-02'),(260,'2014-05-21 11:48:59',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh696158c\"]',NULL),(261,'2014-05-21 11:50:06',7,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]',NULL),(262,'2014-05-21 12:03:36',1,'[]','SCS2','[\"ALL\"]',NULL),(263,'2014-05-21 12:13:42',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(264,'2014-05-21 12:16:38',2,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(265,'2014-05-21 12:17:39',3,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(266,'2014-05-21 12:18:52',4,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(267,'2014-05-21 12:21:47',5,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(268,'2014-05-21 12:24:04',6,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(269,'2014-05-21 12:26:40',7,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(270,'2014-05-21 12:27:56',8,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(271,'2014-05-21 12:29:18',9,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(272,'2014-05-21 12:30:15',10,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(273,'2014-05-21 12:35:09',11,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(274,'2014-05-21 12:36:18',12,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(275,'2014-05-21 12:37:53',13,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765041c\"]',NULL),(276,'2014-05-21 12:38:50',2,'[]','SCS2','[\"ALL\"]',NULL),(277,'2014-05-21 12:44:16',1,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(278,'2014-05-21 12:45:01',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(279,'2014-05-21 12:58:59',2,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(280,'2014-05-21 13:01:15',3,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(281,'2014-05-21 13:02:15',2,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(282,'2014-05-21 13:05:46',4,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(283,'2014-05-21 13:08:13',5,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(284,'2014-05-21 13:11:00',6,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(285,'2014-05-21 13:14:58',7,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(286,'2014-05-21 13:17:19',8,'[\"prod-ops-rdns1\"]','SCS2','[\"ALL\"]',NULL),(287,'2014-05-21 13:39:57',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765047c\"]',NULL),(288,'2014-05-21 13:47:09',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765049c\"]',NULL),(289,'2014-05-21 13:49:06',2,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765049c\"]',NULL),(290,'2014-05-21 13:50:26',3,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765049c\"]',NULL),(291,'2014-05-21 13:53:51',3,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(292,'2014-05-21 14:03:39',4,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(293,'2014-05-21 14:48:20',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(294,'2014-05-21 15:18:35',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(295,'2014-05-21 15:23:55',3,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(296,'2014-05-21 15:36:33',4,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(297,'2014-05-21 15:38:39',5,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(298,'2014-05-21 15:40:51',6,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(299,'2014-05-21 15:59:44',7,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(300,'2014-05-21 16:03:43',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765462c\"]',NULL),(301,'2014-05-21 16:07:22',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765462c\", \"Tvh765463c\"]',NULL),(302,'2014-05-21 16:10:47',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765462c\", \"Tvh765463c\"]',NULL),(303,'2014-05-21 16:13:15',3,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765462c\", \"Tvh765463c\"]',NULL),(304,'2014-05-21 16:24:23',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765466c\"]',NULL),(305,'2014-05-21 16:25:38',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765466c\"]',NULL),(306,'2014-05-21 16:27:25',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765464c\"]',NULL),(307,'2014-05-21 16:31:18',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765467c\"]',NULL),(308,'2014-05-21 16:33:08',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765467c\"]',NULL),(309,'2014-05-21 16:34:50',3,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765467c\"]',NULL),(310,'2014-05-21 16:36:34',4,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765467c\"]',NULL),(311,'2014-05-21 16:39:06',5,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765467c\"]',NULL),(312,'2014-05-21 16:42:17',1,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(313,'2014-05-21 16:47:27',2,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(314,'2014-05-21 16:50:22',3,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(315,'2014-05-21 16:52:14',4,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(316,'2014-05-21 16:55:48',5,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(317,'2014-05-21 17:03:45',6,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(318,'2014-05-21 17:09:49',7,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(319,'2014-05-22 11:25:54',1,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(320,'2014-05-22 11:33:50',2,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(321,'2014-05-22 11:36:32',3,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(322,'2014-05-22 11:38:38',4,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(323,'2014-05-22 11:40:40',5,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(324,'2014-05-22 11:44:28',6,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(325,'2014-05-22 11:47:53',7,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(326,'2014-05-22 11:49:49',8,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(327,'2014-05-22 11:51:08',9,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(328,'2014-05-22 11:53:29',10,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(329,'2014-05-22 11:55:48',11,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(330,'2014-05-22 11:58:30',12,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(331,'2014-05-22 12:05:51',13,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(332,'2014-05-22 12:08:24',14,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(333,'2014-05-22 12:37:06',1,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(334,'2014-05-22 12:42:48',2,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(335,'2014-05-22 12:59:37',3,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(336,'2014-05-22 13:00:43',4,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(337,'2014-05-22 13:07:05',5,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(338,'2014-05-22 13:11:39',6,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(339,'2014-05-22 13:17:24',7,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(340,'2014-05-22 13:22:05',8,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(341,'2014-05-22 13:28:14',9,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(342,'2014-05-22 13:34:09',3,'[]','SCS2','[\"ALL\"]',NULL),(343,'2014-05-22 13:35:49',4,'[]','SCS2','[\"ALL\"]',NULL),(344,'2014-05-22 13:36:59',5,'[]','SCS2','[\"ALL\"]',NULL),(345,'2014-05-22 13:37:46',6,'[]','SCS2','[\"ALL\"]',NULL),(346,'2014-05-22 13:38:52',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766105c\", \"Tvh766106c\"]',NULL),(347,'2014-05-22 13:40:40',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(348,'2014-05-22 13:42:44',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(349,'2014-05-22 13:46:34',3,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(350,'2014-05-22 13:49:20',4,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(351,'2014-05-22 13:52:02',5,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(352,'2014-05-22 14:09:56',6,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(353,'2014-05-22 14:12:07',7,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(354,'2014-05-22 14:26:37',8,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(355,'2014-05-22 14:29:44',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766104c\"]',NULL),(356,'2014-05-22 14:37:48',9,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(357,'2014-05-22 14:40:32',10,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(358,'2014-05-22 14:45:22',11,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(359,'2014-05-22 15:06:51',12,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(360,'2014-05-22 15:09:35',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"None\"]',NULL),(361,'2014-05-22 15:10:45',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"None\"]',NULL),(362,'2014-05-22 15:12:16',3,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"None\"]',NULL),(363,'2014-05-22 15:13:34',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(364,'2014-05-22 15:15:03',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(365,'2014-05-22 15:16:38',3,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(366,'2014-05-22 15:18:17',4,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(367,'2014-05-22 15:19:55',5,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(368,'2014-05-22 15:21:43',6,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(369,'2014-05-22 15:24:00',7,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766219c\"]',NULL),(370,'2014-05-22 15:25:26',13,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(371,'2014-05-22 15:33:33',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(372,'2014-05-22 16:00:09',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(373,'2014-05-22 16:01:08',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(374,'2014-05-22 16:17:39',4,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(375,'2014-05-22 16:31:47',5,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(376,'2014-05-22 16:44:45',6,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(377,'2014-05-22 16:46:17',7,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(378,'2014-05-22 17:01:08',8,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(379,'2014-05-23 11:12:43',9,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(380,'2014-05-23 11:15:42',10,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(381,'2014-05-23 11:23:09',11,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(382,'2014-05-23 11:24:46',12,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(383,'2014-05-23 11:38:37',13,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(384,'2014-05-23 11:41:07',14,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(385,'2014-05-23 11:46:54',15,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(386,'2014-05-23 11:50:05',16,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(387,'2014-05-23 11:54:10',17,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(388,'2014-05-23 12:09:34',18,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(389,'2014-05-23 12:17:04',19,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(390,'2014-05-23 12:37:19',20,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(391,'2014-05-23 12:43:11',21,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(392,'2014-05-23 13:02:25',22,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(393,'2014-05-23 13:17:57',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765504c\"]',NULL),(394,'2014-05-23 13:21:08',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765504c\", \"Tvh777061c\"]',NULL),(395,'2014-05-23 14:02:36',23,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(396,'2014-05-23 14:20:14',24,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(397,'2014-05-23 14:31:52',25,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(398,'2014-05-23 14:34:28',26,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(399,'2014-05-23 14:37:28',27,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(400,'2014-05-23 14:51:20',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765511c\"]',NULL),(401,'2014-05-23 14:56:10',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765512c\"]',NULL),(402,'2014-05-23 14:59:48',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765512c\"]',NULL),(403,'2014-05-23 15:01:40',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765512c\"]',NULL),(404,'2014-05-23 15:03:08',4,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765512c\"]',NULL),(405,'2014-05-23 15:06:22',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765513c\"]',NULL),(406,'2014-05-23 15:17:38',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765515c\"]',NULL),(407,'2014-05-23 15:20:11',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh777458c\"]',NULL),(408,'2014-05-23 15:24:18',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765516c\", \"Tvh777500c\"]',NULL),(409,'2014-05-23 15:26:09',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765516c\", \"Tvh777500c\"]',NULL),(410,'2014-05-23 17:39:37',5,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(411,'2014-05-23 17:53:54',6,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(412,'2014-05-23 17:57:46',7,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(413,'2014-05-23 18:05:19',8,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"ALL\"]',NULL),(414,'2014-05-26 11:42:07',1,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_rtr-brd-01'),(415,'2014-05-26 11:46:21',2,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_rtr-brd-01'),(416,'2014-05-26 11:52:07',1,'[\"rtr-brd-02\"]','DAL1','[\"ALL\"]','DAL1_rtr-brd-02'),(417,'2014-05-26 11:57:13',1,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_sw-core-01'),(418,'2014-05-26 12:12:17',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(419,'2014-05-26 12:28:59',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"ALL\"]',NULL),(420,'2014-05-26 12:37:05',1,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_sw-core-02'),(421,'2014-05-26 13:22:21',1,'[\"sw-mgmt-01\"]','DAL1','[\"ALL\"]','DAL1_sw-mgmt-01'),(422,'2014-05-26 13:38:00',1,'[\"sw-mgmt-02\"]','DAL1','[\"ALL\"]','DAL1_sw-mgmt-02'),(423,'2014-05-26 13:50:29',1,'[\"rtr-vpn-01\"]','DAL1','[\"ALL\"]','DAL1_rtr-vpn-01'),(424,'2014-05-26 13:59:44',1,'[\"rtr-vpn-02\"]','DAL1','[\"ALL\"]','DAL1_rtr-vpn-02'),(425,'2014-05-26 14:13:15',1,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_sw-core-02'),(426,'2014-05-26 14:24:19',2,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_lb-core-02'),(427,'2014-05-26 14:36:14',1,'[\"fw-brd-03\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-03'),(428,'2014-05-26 14:40:50',1,'[\"fw-brd-04\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-04'),(429,'2014-05-26 14:57:59',2,'[\"fw-brd-03\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-03'),(430,'2014-05-26 15:02:35',2,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_sw-core-02'),(431,'2014-05-26 15:08:03',8,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"ALL\"]',NULL),(432,'2014-05-26 15:16:48',28,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"ALL\"]',NULL),(433,'2014-05-26 15:24:13',14,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"ALL\"]',NULL),(434,'2014-05-26 15:40:22',10,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','SCS2','[\"ALL\"]',NULL),(435,'2014-05-26 15:43:31',15,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','SCS2','[\"ALL\"]',NULL),(436,'2014-05-26 15:46:18',8,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"ALL\"]',NULL),(437,'2014-05-26 15:50:13',2,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(438,'2014-05-26 15:57:00',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"ALL\"]',NULL),(439,'2014-05-26 16:01:08',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"ALL\"]',NULL),(440,'2014-05-26 16:15:38',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"ALL\"]',NULL),(441,'2014-05-26 16:22:11',1,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"ALL\"]',NULL),(442,'2014-05-26 16:26:34',1,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','DAL1','[\"ALL\"]',NULL),(443,'2014-05-26 16:29:29',1,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','DAL1','[\"ALL\"]',NULL),(444,'2014-05-27 11:46:04',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765469c\"]',NULL),(445,'2014-05-27 11:49:30',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765469c\"]',NULL),(446,'2014-05-27 11:55:08',3,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765469c\"]',NULL),(447,'2014-05-27 11:58:25',4,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765469c\"]',NULL),(448,'2014-05-27 12:00:52',5,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765469c\"]',NULL),(449,'2014-05-27 12:02:08',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh765469c\"]',NULL),(450,'2014-05-28 11:22:03',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765501c\", \"Tvh777058c\"]',NULL),(451,'2014-05-28 11:23:28',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765510c\", \"Tvh777389c\"]',NULL),(452,'2014-05-28 13:17:15',1,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(453,'2014-05-28 13:24:44',2,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(454,'2014-05-28 13:26:58',3,'[\"fw-brd-03\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-03'),(455,'2014-05-28 13:49:50',2,'[\"fw-brd-04\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-04'),(456,'2014-05-28 15:02:38',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh696651c\"]','DAL1'),(457,'2014-05-28 15:07:30',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh756789c\"]','DAL1'),(458,'2014-05-28 15:08:31',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh758470c\"]','DAL1'),(459,'2014-05-28 15:15:41',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh696654c\"]','DAL1'),(460,'2014-05-28 15:47:24',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765464c\"]',NULL),(461,'2014-05-28 16:45:20',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765495c\"]',NULL),(462,'2014-05-28 17:19:21',2,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"Tvh765464c\"]',NULL),(463,'2014-05-28 17:33:14',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"Tvh766101c\"]',NULL),(464,'2014-05-28 17:36:09',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765483c\"]',NULL),(465,'2014-05-29 10:04:51',1,'[\"lb-core-01\", \"lb-core-02\"]','DAL1','[\"Tvh754890c\", \"Tvh754122c\", \"Tvh754130c\"]','DAL1'),(466,'2014-05-29 11:13:51',2,'[\"lb-core-01\", \"lb-core-02\"]','DAL1','[\"Tvh754890c\", \"Tvh754122c\", \"Tvh754130c\"]','DAL1'),(467,'2014-05-29 13:54:17',3,'[\"lb-core-01\", \"lb-core-02\"]','DAL1','[\"Tvh754890c\", \"Tvh754122c\", \"Tvh754130c\"]','DAL1'),(468,'2014-05-29 15:00:12',3,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_lb-core-02'),(469,'2014-05-30 11:37:10',4,'[\"lb-core-01\", \"lb-core-02\"]','DAL1','[\"Tvh754890c\", \"Tvh754122c\", \"Tvh754130c\"]','DAL1'),(470,'2014-05-30 12:10:29',2,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-01'),(471,'2014-05-30 12:47:47',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765512c\"]',NULL),(472,'2014-05-30 12:54:16',3,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-02'),(473,'2014-05-30 13:38:42',3,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-brd-01'),(474,'2014-05-30 13:46:14',2,'[\"rtr-brd-02\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-brd-02'),(475,'2014-05-30 13:49:50',4,'[\"fw-brd-03\"]','DAL1','[\"ALL\"]','DAL1_Re_fw-brd-03'),(476,'2014-05-30 14:13:32',3,'[\"fw-brd-04\"]','DAL1','[\"ALL\"]','DAL1_Re_fw-brd-04'),(477,'2014-05-30 14:36:06',2,'[\"rtr-vpn-01\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-vpn-01'),(478,'2014-05-30 14:47:37',2,'[\"rtr-vpn-02\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-vpn-02'),(479,'2014-05-30 14:54:00',2,'[\"sw-mgmt-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-mgmt-01'),(480,'2014-05-30 14:56:33',2,'[\"sw-mgmt-02\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-mgmt-02'),(481,'2014-05-30 14:59:50',4,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-02'),(482,'2014-05-30 15:04:46',5,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-02'),(483,'2014-06-02 11:08:00',3,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-01'),(484,'2014-06-02 11:44:33',4,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-02'),(485,'2014-06-02 12:23:17',4,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-brd-01'),(486,'2014-06-02 12:26:46',3,'[\"rtr-brd-02\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-brd-02'),(487,'2014-06-02 12:30:56',3,'[\"rtr-vpn-01\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-vpn-01'),(488,'2014-06-02 12:51:09',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh715953c\"]','D'),(489,'2014-06-02 12:56:16',2,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh715953c\"]','D'),(490,'2014-06-02 13:05:11',3,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh715953c\"]','D'),(491,'2014-06-02 13:07:48',4,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-01'),(492,'2014-06-02 13:42:15',5,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-02'),(493,'2014-06-03 11:05:53',1,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-01'),(494,'2014-06-03 13:05:43',2,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-01'),(495,'2014-06-03 13:16:07',6,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-02'),(496,'2014-06-03 13:45:42',5,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_Re_rtr-brd-01'),(497,'2014-06-04 13:01:27',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"Tvh766099c\"]',NULL),(498,'2014-06-05 11:44:25',5,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-core-01'),(499,'2014-06-05 12:35:34',3,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_Re_lb-core-01'),(500,'2014-06-05 12:46:22',3,'[\"sw-mgmt-01\"]','DAL1','[\"ALL\"]','DAL1_Re_sw-mgmt-01'),(501,'2014-06-06 11:36:36',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh777051c\", \"Tvh777058c\"]',NULL),(502,'2014-06-06 11:39:04',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh777059c\", \"Tvh777058c\"]',NULL),(503,'2014-06-06 11:40:26',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh777059c\"]',NULL),(504,'2014-06-06 11:41:20',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh777058c\", \"Tvh777059c\"]',NULL),(505,'2014-06-06 11:43:21',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"Tvh766101c\"]',NULL),(506,'2014-06-06 11:53:02',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765510c\", \"Tvh792892c\"]',NULL),(507,'2014-06-06 11:53:56',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh765510c\", \"Tvh792892c\"]',NULL),(508,'2014-06-06 11:54:52',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh777058c\", \"Tvh777059c\"]',NULL),(509,'2014-06-06 11:56:04',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766101c\"]',NULL),(510,'2014-06-09 15:42:05',1,'[\"rtr-brd-01\"]','SYD3','[\"ALL\"]','SYD3_rtr-brd-01'),(511,'2014-06-09 16:11:09',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','SYD3','[\"Tvh696543c\"]',NULL),(512,'2014-06-10 12:14:36',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','SCS2','[\"Tvh766101c\"]',NULL),(513,'2014-06-10 12:16:06',1,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','AKL1','[\"Tvh766101c\"]',NULL),(514,'2014-06-10 12:17:38',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','SCS2','[\"Tvh779632c\"]',NULL),(515,'2014-06-10 12:18:32',1,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','SCS2','[\"Tvh779616c\"]',NULL),(516,'2014-06-10 17:05:08',1,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','SCS2','[\"Tvh714931c\"]',NULL),(517,'2014-06-10 17:44:47',8,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','test'),(518,'2014-06-10 17:56:51',4,'[\"rtr-brd-02\"]','DAL1','[\"ALL\"]','test'),(519,'2014-06-11 12:11:26',2,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','SCS2','[\"Tvh714931c\"]',NULL),(520,'2014-06-11 12:14:36',3,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','SCS2','[\"Tvh714931c\"]',NULL),(521,'2014-06-11 12:16:01',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','SCS2','[\"Tvh765018c\"]',NULL),(522,'2014-06-11 12:16:42',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"Tvh765018c\"]',NULL),(523,'2014-06-11 12:35:49',9,'[\"sw-mgmt-01\"]','SCS2','[\"ALL\"]','test'),(524,'2014-06-11 12:43:00',3,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(525,'2014-06-11 12:51:30',1,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"Tvh765028c\"]',NULL),(526,'2014-06-11 13:12:44',2,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"ALL\"]',NULL),(527,'2014-06-11 15:44:56',1,'[\"sw-mgmt-01\"]','SYD3','[\"ALL\"]','test'),(528,'2014-06-11 16:08:13',1,'[\"rtr-vpn-01\"]','SYD3','[\"ALL\"]','test'),(529,'2014-06-13 01:29:38',3,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(530,'2014-06-13 01:29:38',3,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(531,'2014-06-13 01:29:38',3,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(532,'2014-06-13 01:29:38',3,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(533,'2014-06-13 01:37:44',1,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(534,'2014-06-13 01:37:45',2,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(535,'2014-06-13 01:37:45',3,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(536,'2014-06-13 01:37:45',2,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(537,'2014-06-13 01:43:21',4,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(538,'2014-06-13 09:46:47',4,'[\"sw-mgmt-01\"]','DAl1','[\"ALL\"]','test1'),(539,'2014-06-13 09:48:26',2,'[\"sw-mgmt-01\"]','SYD3','[\"ALL\"]','test1'),(540,'2014-06-13 10:37:26',2,'[\"rtr-brd-01\"]','SYD3','[\"ALL\"]','TanyaRtr-brd'),(541,'2014-06-16 11:35:44',3,'[\"rtr-brd-01\"]','SYD3','[\"ALL\"]','TanyaRtr-brd'),(542,'2014-06-18 13:20:32',1,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','DAL1','[\"Tvh766262c\"]',NULL),(543,'2014-06-18 13:21:44',2,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','DAL1','[\"Tvh766262c\"]',NULL),(544,'2014-06-18 13:23:28',1,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','SCS2','[\"Tvh766262c\"]',NULL),(545,'2014-06-18 13:24:20',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765512c\"]',NULL),(546,'2014-06-18 16:09:47',1,'[\"prod-puppet-www1\"]','DAL1','[\"ALL\"]',NULL),(547,'2014-06-18 16:14:51',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"ALL\"]',NULL),(548,'2014-06-18 16:15:47',4,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(549,'2014-06-19 12:44:45',5,'[\"sw-mgmt-01\"]','DAL1','[\"ALL\"]','test'),(550,'2014-06-19 13:49:38',1,'[\"prod-ops-rdns1\"]','DAL1','[\"ALL\"]',NULL),(551,'2014-06-19 17:13:18',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765493c\"]',NULL),(552,'2014-06-19 17:15:06',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765487c\"]',NULL),(553,'2014-06-19 17:19:09',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765487c\"]',NULL),(554,'2014-06-19 17:20:05',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','scs2','[\"Tvh765487c\"]',NULL),(555,'2014-06-24 11:59:47',5,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','scs2','[\"Tvh765512c\"]',NULL),(556,'2014-06-24 15:24:20',1,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','syd3','[\"ALL\"]',NULL),(557,'2014-06-25 10:43:12',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','dal1','[\"Tvh765496c\"]',NULL),(558,'2014-06-25 10:44:36',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','dal1','[\"Tvh765496c\"]',NULL),(559,'2014-06-25 10:46:33',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','dal1','[\"Tvh777059c\"]',NULL),(560,'2014-06-25 10:49:09',1,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','dal1','[\"Tvh766223c\"]',NULL),(561,'2014-06-25 10:52:02',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','dal1','[\"Tvh777058c\"]',NULL),(562,'2014-06-25 10:57:22',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','dal1','[\"Tvh765512c\"]',NULL),(563,'2014-06-25 13:19:38',6,'[\"sw-core-01\"]','DAL1','[\"ALL\"]','DAL1_sw-core-01New'),(564,'2014-06-25 14:16:33',6,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_sw-core-02New'),(565,'2014-06-25 14:44:56',7,'[\"sw-core-02\"]','DAL1','[\"ALL\"]','DAL1_sw-core-02New'),(566,'2014-06-25 14:46:47',1,'[\"sw-core-01\", \"sw-core-02\"]','dal1','[\"ALL\"]',NULL),(567,'2014-06-25 14:48:58',7,'[\"sw-core-01\"]','dal1','[\"ALL\"]',NULL),(568,'2014-06-25 14:50:04',8,'[\"sw-core-02\"]','dal1','[\"ALL\"]',NULL),(569,'2014-06-25 15:29:23',6,'[\"rtr-brd-01\"]','DAL1','[\"ALL\"]','DAL1_rtr-brd-01New'),(570,'2014-06-25 15:45:35',5,'[\"rtr-brd-02\"]','DAL1','[\"ALL\"]','DAL1_rtr-brd-02New'),(571,'2014-06-25 16:25:00',5,'[\"fw-brd-03\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-03New'),(572,'2014-06-25 16:30:22',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','dal1','[\"Tvh794395c\"]',NULL),(573,'2014-06-25 16:39:43',4,'[\"rtr-vpn-01\"]','DAL1','[\"ALL\"]','DAL1_rtr-vpn-01New'),(574,'2014-06-25 17:06:04',3,'[\"rtr-vpn-02\"]','DAL1','[\"ALL\"]','DAL1_rtr-vpn-01New'),(575,'2014-06-25 17:36:33',4,'[\"fw-brd-04\"]','DAL1','[\"ALL\"]','DAL1_fw-brd-04New'),(576,'2014-06-25 18:01:50',6,'[\"sw-mgmt-01\"]','DAL1','[\"ALL\"]','DAL1_sw-mgmt-01New'),(577,'2014-06-25 18:09:16',4,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_lb-core-01New'),(578,'2014-06-25 18:10:15',3,'[\"sw-mgmt-02\"]','DAL1','[\"ALL\"]','DAL1_sw-mgmt-02New'),(579,'2014-06-25 18:17:24',7,'[\"lb-core-02\"]','DAL1','[\"ALL\"]','DAL1_lb-core-02New'),(580,'2014-06-25 18:18:26',5,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_lb-core-01New'),(581,'2014-06-25 18:28:11',6,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_lb-core-01New'),(582,'2014-06-26 12:28:00',7,'[\"lb-core-01\"]','DAL1','[\"ALL\"]','DAL1_lb-core-01New'),(583,'2014-06-26 13:09:48',5,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(584,'2014-06-26 13:29:25',2,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"ALL\"]',NULL),(585,'2014-06-26 13:29:28',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"ALL\"]',NULL),(586,'2014-06-26 13:32:31',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh697161c\"]',NULL),(587,'2014-06-26 13:33:56',2,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh697161c\"]',NULL),(588,'2014-06-26 13:35:03',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh697161c\"]',NULL),(589,'2014-06-26 13:36:22',2,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh697161c\"]',NULL),(590,'2014-06-26 13:37:37',3,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh697161c\"]',NULL),(591,'2014-06-26 13:41:23',4,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh697161c\"]',NULL),(592,'2014-06-26 13:49:24',3,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh697161c\"]',NULL),(593,'2014-06-26 13:50:32',5,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh697161c\"]',NULL),(594,'2014-06-26 14:00:10',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"Tvh716034c\"]',NULL),(595,'2014-06-26 14:01:16',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','SCS2','[\"Tvh716034c\"]',NULL),(596,'2014-06-26 14:33:07',6,'[\"prod-ops-rdns1\", \"prod-ops-rdns2\", \"prod-ops-rdns3\", \"prod-ops-rdns4\"]','DAL1','[\"ALL\"]',NULL),(597,'2014-06-26 14:35:20',3,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"ALL\"]',NULL),(598,'2014-06-26 14:39:39',4,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"ALL\"]',NULL),(599,'2014-06-26 14:40:30',3,'[\"prod-ops-rmq1\", \"prod-ops-rmq2\"]','DAL1','[\"ALL\"]',NULL),(600,'2014-06-26 14:45:38',2,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','DAL1','[\"ALL\"]',NULL),(601,'2014-06-26 14:48:06',3,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"ALL\"]',NULL),(602,'2014-06-26 14:50:38',2,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','DAL1','[\"ALL\"]',NULL),(603,'2014-06-26 14:57:27',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765487c\"]',NULL),(604,'2014-06-26 15:17:52',1,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(605,'2014-06-26 15:20:59',2,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(606,'2014-06-26 15:25:48',3,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(607,'2014-06-26 15:26:56',4,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(608,'2014-06-26 15:28:48',5,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(609,'2014-06-26 15:30:04',6,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(610,'2014-06-26 15:31:37',7,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(611,'2014-06-26 15:33:24',8,'[\"prod-puppet-www1\", \"prod-puppet-www2\", \"prod-puppet-www3\"]','DAL1','[\"Tvh765518c\", \"Tvh804010c\"]',NULL),(612,'2014-06-26 15:47:39',1,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"Tvh766229c\"]',NULL),(613,'2014-06-26 16:02:51',1,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','DAL1','[\"Tvh766246c\"]',NULL),(614,'2014-06-26 16:06:57',4,'[\"prod-cobbler-app1\", \"prod-cobbler-app2\"]','DAL1','[\"ALL\"]',NULL),(615,'2014-06-26 16:07:35',4,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"ALL\"]',NULL),(616,'2014-06-26 16:32:12',3,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','DAL1','[\"ALL\"]',NULL),(617,'2014-06-26 16:53:27',3,'[\"prod-collectd-app1\", \"prod-collectd-app2\"]','DAL1','[\"ALL\"]',NULL),(618,'2014-06-26 17:10:48',5,'[\"sw-mgmt-01\", \"sw-mgmt-02\"]','DAL1','[\"ALL\"]',NULL),(619,'2014-06-26 17:10:48',1,'[\"rtr-vpn-01\", \"rtr-vpn-02\"]','DAL1','[\"ALL\"]',NULL),(620,'2014-06-26 17:10:48',4,'[\"fw-brd-03\", \"fw-brd-04\"]','DAL1','[\"ALL\"]',NULL),(621,'2014-06-26 17:15:46',1,'[\"rtr-brd-01\", \"rtr-brd-02\"]','DAL1','[\"ALL\"]',NULL),(622,'2014-06-26 17:26:11',2,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"ALL\"]',NULL),(623,'2014-06-26 18:02:06',1,'[\"prod-logstash-app1\", \"prod-logstash-app2\"]','DAL1','[\"Tvh766228c\"]',NULL),(624,'2014-06-26 18:04:29',2,'[\"prod-graphite-proxy1\", \"prod-graphite-proxy2\"]','DAL1','[\"Tvh766246c\"]',NULL),(625,'2014-06-26 18:09:21',2,'[\"fw-brd-03\", \"fw-brd-04\", \"fw-brd-01\", \"fw-brd-02\"]','SCS2','[\"Tvh757222c\"]',NULL),(626,'2014-06-27 10:51:13',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh753586c\", \"Tvh753587c\"]',NULL),(627,'2014-06-27 10:52:36',1,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758350c\"]',NULL),(628,'2014-06-27 10:54:01',2,'[\"sw-core-01\", \"sw-core-02\"]','SCS2','[\"Tvh758350c\"]',NULL),(629,'2014-06-27 10:56:26',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh758350c\"]',NULL),(630,'2014-06-27 10:59:11',1,'[\"sw-core-01\", \"sw-core-02\"]','DAL1','[\"Tvh753586c\", \"Tvh753587c\"]',NULL);
/*!40000 ALTER TABLE `testcase_execution_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testcase_setup`
--
DROP TABLE IF EXISTS `testcase_setup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testcase_setup` (
`setup_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`setup_name` varchar(255) DEFAULT NULL,
`pre_data` text NOT NULL,
`post_data` text,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`setup_id`),
UNIQUE KEY `setup_id_UNIQUE` (`setup_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testcase_setup`
--
LOCK TABLES `testcase_setup` WRITE;
/*!40000 ALTER TABLE `testcase_setup` DISABLE KEYS */;
INSERT INTO `testcase_setup` VALUES (11,'switch_to_vdc2','\"switchto vdc vdc2\"',NULL,'Switch To VDC 2 (Nexus 7k switch)'),(12,'change_to_scansafe','[ \"enable\", \"<password>\", \"terminal pager 0\", \"changeto context scansafe\" ]',NULL,'Change context to SCANSAFE (ASA Firewall)'),(13,'change_to_infra','[ \"enable\", \"<password>\", \"terminal pager 0\", \"changeto context infra\" ]',NULL,'Change context to INFRA (ASA Firewall)'),(14,'change_to_system','[ \"enable\", \"<password>\", \"terminal pager 0\", \"changeto system\" ]',NULL,'Change context to SYSTEM (ASA Firewall)'),(15,'enable_14','\"enable\"',NULL,'Enable privelege mode (ASR 1k VPN)'),(16,'enable_admin','[ \"enable\", \"<password>\"]',NULL,'Enable privege mode (ASA Firewall)'),(17,'enable_no_pager','[\" \", \"enable\", \"<password>\", \"terminal length 0\"]',NULL,'Enable privelege mode and disable terminal pager (A10 LB)'),(18,'change_to_scansafe_lb','[\" \",\"enable\", \"<password>\", \"active-partition lb-ss-<location>\", \"terminal length 0\"]',NULL,'Change partition to ScanSafe (A10 LB)'),(19,'switch_to_vdc3','\"switchto vdc vdc3\"',NULL,'Switch To VDC 3 (Nexus 7k switch)'),(20,'sudo_ldap','[ \"sudo bash\", \"<ldap_password>\"]',NULL,'Enable sudo for some hosts');
/*!40000 ALTER TABLE `testcase_setup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `testcase_type`
--
DROP TABLE IF EXISTS `testcase_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `testcase_type` (
`type_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`descr` varchar(255) DEFAULT NULL,
PRIMARY KEY (`type_id`),
UNIQUE KEY `type_id_UNIQUE` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `testcase_type`
--
LOCK TABLES `testcase_type` WRITE;
/*!40000 ALTER TABLE `testcase_type` DISABLE KEYS */;
INSERT INTO `testcase_type` VALUES (1,'simple'),(2,'complex');
/*!40000 ALTER TABLE `testcase_type` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-06-27 13:51:00