-
Notifications
You must be signed in to change notification settings - Fork 1
/
bloxone_automation_tools.py
executable file
·2052 lines (1707 loc) · 69 KB
/
bloxone_automation_tools.py
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
#vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
'''
Description:
BloxOne Proof of Value Demonstration Tools
Requirements:
Python3 with re, ipaddress, requests and sqlite3 modules
Author: Chris Marrison
Date Last Updated: 20230522
Todo:
Copyright (c) 2021 - 2023 Chris Marrison / Infoblox
Redistribution and use in source and binary forms,
with or without modification, are permitted provided
that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
'''
__version__ = '0.7.2'
__author__ = 'Chris Marrison'
__author_email__ = '[email protected]'
import logging
import os
import shutil
import sys
import json
import bloxone
import argparse
import configparser
import datetime
import ipaddress
import random
import time
import yaml
# Global Variables
log = logging.getLogger(__name__)
# console_handler = logging.StreamHandler(sys.stdout)
# log.addHandler(console_handler)
def parseargs():
'''
Parse Arguments Using argparse
Parameters:
None
Returns:
Returns parsed arguments
'''
parse = argparse.ArgumentParser(description='BloxOne Automation Tools')
parse.add_argument('-a', '--app', type=str, required=True,
help="BloxOne Application [ b1ddi, b1td ]")
parse.add_argument('-c', '--config', type=str, default='demo.ini',
help="Overide Config file")
parse.add_argument('-6', '--ipv6', action='store_true',
help="Build IPv6 Networks")
parse.add_argument('-r', '--remove', action='store_true',
help="Clean-up demo data")
parse.add_argument('-o', '--output', action='store_true',
help="Ouput log to file <customer>.log")
parse.add_argument('-d', '--debug', action='store_true',
help="Enable debug messages")
return parse.parse_args()
def setup_logging(debug=False, usefile=False):
'''
Set up logging
Parameters:
debug (bool): True or False.
Returns:
None.
'''
if debug:
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s %(levelname)s: %(message)s')
else:
if usefile:
# Full log format
logging.basicConfig(level=logging.INFO,
format='%(asctime)s %(levelname)s: %(message)s')
else:
# Simple log format
logging.basicConfig(level=logging.INFO,
format='%(levelname)s: %(message)s')
return
def open_file(filename):
'''
Attempt to open output file
Parameters:
filename (str): desired filename
Returns file handler
handler (file): File handler object
'''
if os.path.isfile(filename):
backup = filename+".bak"
try:
shutil.move(filename, backup)
log.info("Outfile exists moved to {}".format(backup))
try:
handler = open(filename, mode='w')
log.info("Successfully opened output file {}.".format(filename))
except IOError as err:
log.error("{}".format(err))
handler = False
except:
logging.warning("Could not back up existing file {}, exiting.".format(filename))
handler = False
else:
try:
handler = open(filename, mode='w')
log.info("Opened file {} for invalid lines.".format(filename))
except IOError as err:
log.error("{}".format(err))
handler = False
return handler
def read_demo_ini(ini_filename, app=''):
'''
Open and parse ini file
Parameters:
ini_filename (str): name of inifile
Returns:
config (dict): Dictionary of BloxOne configuration elements
'''
# Local Variables
section = 'B1_POV'
cfg = configparser.ConfigParser()
config = {}
if app == 'b1ddi':
ini_keys = [ 'b1inifile', 'owner', 'location', 'customer', 'prefix',
'postfix', 'tld', 'dns_view', 'dns_domain', 'nsg',
'no_of_records', 'ip_space', 'base_net',
'no_of_networks', 'no_of_ips', 'container_cidr',
'cidr', 'net_comments', 'ipv6_prefix' ]
elif app == 'b1td':
ini_keys = [ 'b1inifile', 'owner', 'location', 'customer',
'customer_domain', 'prefix', 'postfix',
'policy_level', 'policy', 'allow_list', 'deny_list',
'ext_net', 'ext_cidr', 'ext_net_name' ]
else:
log.error(f'App: {app} not supported.')
ini_keys = None
if ini_keys:
# Attempt to read api_key from ini file
try:
cfg.read(ini_filename)
except configparser.Error as err:
logging.error(err)
# Look for demo section
if section in cfg:
config['filename'] = ini_filename
for key in ini_keys:
# Check for key in BloxOne section
if key in cfg[section]:
config[key] = cfg[section][key].strip("'\"")
logging.debug(f'Key {key} found in {ini_filename}: {config[key]}')
else:
logging.warning(f'Key {key} not found in {section} section.')
config[key] = ''
else:
logging.warning(f'No {section} Section in config file: {ini_filename}')
else:
config = {}
return config
def create_tag_body(config, **params):
'''
Add Owner tag and any others defined in **params
Parameters:
owner (str): Typically username
params (dict): Tag key/value pairs
Returns:
tags (str): JSON string to append to body
'''
now = datetime.datetime.now()
# datestamp = now.isoformat()
datestamp = now.strftime('%Y-%m-%dT%H:%MZ')
owner = config['owner']
location = config['location']
tags = {}
tags.update({"Owner": owner})
tags.update({"Location": location})
tags.update({"Usage": "AUTOMATION DEMO"})
tags.update({"Created": datestamp})
if params:
tags.update(**params)
tag_body = '"tags":' + json.dumps(tags)
else:
tag_body = '"tags":' + json.dumps(tags)
log.debug("Tag body: {}".format(tag_body))
return tag_body
def ip_space(b1ddi, config):
'''
Create IP Space
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
status (bool): True if successful
'''
status = False
# Check for existence
if not b1ddi.get_id('/ipam/ip_space', key="name", value=config['ip_space']):
log.info("---- Create IP Space ----")
tag_body = create_tag_body(config)
body = '{ "name": "' + config['ip_space'] + '",' + tag_body +' }'
log.debug("Body:{}".format(body))
log.info("Creating IP_Space {}".format(config['ip_space']))
response = b1ddi.create('/ipam/ip_space', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("IP_Space {} Created".format(config['ip_space']))
status = True
else:
log.warning("IP Space {} not created".format(config['ip_space']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning("IP Space {} already exists".format(config['ip_space']))
return status
def create_networks(b1ddi, config):
'''
Create Subnets
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
status (bool): True if successful
'''
status = False
net_comments = config['net_comments'].split(',')
# Get id of ip_space
log.info("---- Create Address Block and subnets ----")
space = b1ddi.get_id('/ipam/ip_space', key="name",
value=config['ip_space'], include_path=True)
if space:
log.info("IP Space id found: {}".format(space))
tag_body = create_tag_body(config)
base_net = config['base_net']
# Create subnets
cidr = config['container_cidr']
body = ( '{ "address": "' + base_net + '", '
+ '"cidr": "' + cidr + '", '
+ '"space": "' + space + '", '
+ '"comment": "Internal Address Allocation", '
+ tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("~~~~ Creating Addresses block {}/{}~~~~ "
.format(base_net, cidr))
response = b1ddi.create('/ipam/address_block', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ Address block {}/{} created".format(base_net, cidr))
# Create subnets
network = ipaddress.ip_network(base_net + '/' + cidr)
# Reset cidr for subnets
cidr = config['cidr']
subnet_list = list(network.subnets(new_prefix=int(cidr)))
if len(subnet_list) < int(config['no_of_networks']):
nets = len(subnet_list)
log.warning("Address block only supports {} subnets".format(nets))
else:
nets = int(config['no_of_networks'])
log.info("~~~~ Creating {} subnets ~~~~".format(nets))
for n in range(nets):
address = str(subnet_list[n].network_address)
comment = net_comments[random.randrange(0,len(net_comments))]
body = ( '{ "address": "' + address + '", '
+ '"cidr": "' + cidr + '", '
+ '"space": "' + space + '", '
+ '"comment": "' + comment + '", '
+ tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating Subnet {}/{}".format(address, cidr))
response = b1ddi.create('/ipam/subnet', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ Subnet {}/{} successfully created".format(address, cidr))
if populate_network(b1ddi, config, space, subnet_list[n]):
log.info("+++ Network populated.")
status = True
else:
log.warning("--- Issues populating network")
else:
log.warning("--- Subnet {}/{} not created".format(network, cidr))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning("--- Address Block {}/{} not created".format(base_net, cidr))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning("IP Space {} does not exist".format(config['ip_space']))
return status
def create_ipv6_networks(b1ddi, config):
'''
Create IPv6 Subnets
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
status (bool): True if successful
'''
status = False
net_comments = config['net_comments'].split(',')
# Get id of ip_space
log.info("---- Create IPv6 Address Block and subnets ----")
space = b1ddi.get_id('/ipam/ip_space', key="name",
value=config['ip_space'], include_path=True)
if space:
log.info("IP Space id found: {}".format(space))
tag_body = create_tag_body(config)
base_net = config.get('ipv6_prefix')
if not base_net:
log.warning('No ipv6_prefix defined in inifile, using 2001:db8::')
base_net = '2001:db8::'
# Create subnets
cidr = '32'
body = ( '{ "address": "' + base_net + '", '
+ '"cidr": "' + cidr + '", '
+ '"space": "' + space + '", '
+ '"comment": "Internal Address Allocation", '
+ tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("~~~~ Creating IPv6 Addresses block {}/{}~~~~ "
.format(base_net, cidr))
response = b1ddi.create('/ipam/address_block', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IPv6 Address block {}/{} created".format(base_net, cidr))
# Create subnets
network = ipaddress.ip_network(base_net + '/' + cidr)
# Reset cidr for subnets
new_cidr = '64'
subnets = network.subnets(new_prefix=int(new_cidr))
if int(new_cidr) > int(cidr) and int(new_cidr) < 127:
nets = int(config['no_of_networks'])
log.info("~~~~ Creating {} IPv6 subnets ~~~~".format(nets))
for n in range(nets):
subnet = next(subnets)
address = str(subnet.network_address)
comment = net_comments[random.randrange(0,len(net_comments))]
body = ( '{ "address": "' + address + '", '
+ '"cidr": "' + new_cidr + '", '
+ '"space": "' + space + '", '
+ '"comment": "' + comment + '", '
+ tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating IPv6 Subnet {}/{}".format(address, new_cidr))
response = b1ddi.create('/ipam/subnet', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IPv6 Subnet {}/{} successfully created".format(address, cidr))
if populate_ipv6_network(b1ddi, config, space, subnet):
log.info("+++ IPv6 Network populated.")
status = True
else:
log.warning("--- Issues populating IPv6 network")
else:
log.warning("--- IPv6 Subnet {}/{} not created".format(network, cidr))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning(f"IPv6 network block cannot support {new_cidr} subnets")
else:
log.warning("--- IPv6 Address Block {}/{} not created".format(base_net, cidr))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning("IP Space {} does not exist".format(config['ip_space']))
return status
def populate_network(b1ddi, config, space, network):
'''
Create DHCP Range and IPs
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
network (str): Network base address
Returns:
status (bool): True if successful
'''
status = False
log.info("~~~~ Creating Range ~~~~")
tag_body = create_tag_body(config)
net_size = network.num_addresses
range_size = int(net_size / 2)
broadcast = network.broadcast_address
start_ip = str(broadcast - (range_size + 1))
end_ip = str(broadcast - 1)
body = ( '{ "start": "' + start_ip + '", "end": "' + end_ip +
'", "space": "' + space + '", ' + tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating Range start: {}, end: {}".format(start_ip, end_ip))
response = b1ddi.create('/ipam/range', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ Range created in network {}".format(str(network)))
status = True
else:
log.warning("--- Range for network {} not created".format(str(network)))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
# Add reservations
no_of_ips = int(range_size / 2)
# If number requested is lt than caluculated use configured
if int(config['no_of_ips']) < no_of_ips:
no_of_ips = int(config['no_of_ips'])
log.info("~~~~ Creating {} IPs ~~~~".format(no_of_ips))
ips = list(network.hosts())
for ip in range(1, no_of_ips):
address = str(ips[ip])
body = ( '{ "address": "' + address + '", "space": "'
+ space + '", ' + tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating IP Reservation: {}".format(address))
response = b1ddi.create('/ipam/address', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IP {} created".format(address))
status = True
else:
log.warning("--- IP {} not created".format(address))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
status = False
return status
def populate_ipv6_network(b1ddi, config, space, network):
'''
Create DHCP Range and IPs
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
network (str): Network base address
Returns:
status (bool): True if successful
'''
status = False
log.info("~~~~ Creating IPv6 Range ~~~~")
tag_body = create_tag_body(config)
net_size = network.num_addresses
range_size = int(net_size / 2)
broadcast = network.broadcast_address
start_ip = str(network.network_address) + 'ffff'
end_ip = str(broadcast - 1)
body = ( '{ "start": "' + start_ip + '", "end": "' + end_ip +
'", "space": "' + space + '", ' + tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating IPv6 Range start: {}, end: {}".format(start_ip, end_ip))
response = b1ddi.create('/ipam/range', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IPv6 Range created in network {}".format(str(network)))
status = True
else:
log.warning("--- IPv6 Range for network {} not created".format(str(network)))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
# Add reservations
no_of_ips = int(range_size / 2)
# If number requested is lt than caluculated use configured
if int(config['no_of_ips']) < no_of_ips:
no_of_ips = int(config['no_of_ips'])
log.info("~~~~ Creating {} IPs ~~~~".format(no_of_ips))
ips = network.hosts()
for ip in range(no_of_ips):
address = str(next(ips))
body = ( '{ "address": "' + address + '", "space": "'
+ space + '", ' + tag_body + ' }' )
log.debug("Body:{}".format(body))
log.info("Creating IPv6 Reservation: {}".format(address))
response = b1ddi.create('/ipam/address', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IP {} created".format(address))
status = True
else:
log.warning("--- IPv6 {} not created".format(address))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
status = False
return status
def populate_dns(b1ddi, config):
'''
Populate DNS View with zones/records
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
view (str): Network base address
Returns:
bool: True if successful
'''
status = False
if create_zones(b1ddi, config):
status = True
else:
status = False
return status
def create_hosts(b1ddi, config):
'''
Create DNS View
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
bool: True if successful
'''
status = False
return status
def create_zones(b1ddi, config):
'''
Create DNS Zones
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
status (bool): True if successful
'''
status = False
# Get id of DNS view
log.info("---- Create Forward & Reverse Zones ----")
view = b1ddi.get_id('/dns/view', key="name",
value=config['dns_view'], include_path=True)
if view:
log.info("DNS View id found: {}".format(view))
# Check for NSG
nsg = b1ddi.get_id('/dns/auth_nsg',
key="name",
value=config['nsg'],
include_path=True)
if nsg:
# Prepare Body
tag_body = create_tag_body(config)
zone = config['dns_domain']
body = ( '{ "fqdn": "' + zone + '", "view": "' + view + '", '
+ '"nsgs": ["' + nsg + '"], '
+ '"primary_type": "cloud", '
+ tag_body + ' }' )
# Create zone
response = b1ddi.create('/dns/auth_zone', body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ Zone {} created in view".format(zone))
else:
# Log error
log.warning("--- Zone {} in view {} not created"
.format(zone, config['dns_view']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
# Work out reverse /16 for network
r_network = bloxone.utils.reverse_labels(config['base_net'])
# Remove "last" two octets
r_network = bloxone.utils.get_domain(r_network, no_of_labels=2)
zone = r_network + '.in-addr.arpa.'
body = ( '{ "fqdn": "' + zone + '", "view": "' + view + '", '
+ '"nsgs": ["' + nsg + '"], '
+ '"primary_type": "cloud", '
+ tag_body + ' }' )
# Create reverse zone
response = b1ddi.create('/dns/auth_zone', body)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ Zone {} created in view".format(zone))
else:
# Log error
log.warning("--- Zone {} in view {} not created"
.format(zone, config['dns_view']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
# Add Records to zones
if add_records(b1ddi, config):
log.info("+++ Records added to zones")
status = True
else:
log.warning("--- Failed to add records")
status = False
else:
log.warning("NSG {} not found. Cannot create zones."
.format(config['nsg']))
status = False
return status
def create_dnsview(b1ddi, config):
'''
Create DNS Hosts
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
bool: True if successful
'''
status = False
# Check for existence
if not b1ddi.get_id('/dns/view', key="name", value=config['dns_view']):
log.info("---- Create DNS View ----")
tag_body = create_tag_body(config)
# Associate IP Space
ip_space = b1ddi.get_id('/ipam/ip_space',
key="name",
value=config['ip_space'],
include_path=True)
if ip_space:
ip_spaces = '"ip_spaces": [ "' + ip_space + '"]'
body = ( '{ "name": "' + config['dns_view'] + '",'
+ ip_spaces + ',' + tag_body +' }' )
else:
body = '{ "name": "' + config['dns_view'] + '",' + tag_body +' }'
log.debug("Body:{}".format(body))
log.info("Creating DNS View {}".format(config['dns_view']))
response = b1ddi.create('/dns/view', body=body)
if response.status_code in b1ddi.return_codes_ok:
log.info("DNS View {} Created".format(config['dns_view']))
status = True
else:
log.warning("DNS View {} not created".format(config['dns_view']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.warning("DNS View {} already exists".format(config['dns_view']))
return status
def add_records(b1ddi, config):
'''
Add records to zone
Parameters:
b1ddi (obj): bloxone.b1ddi object
zone (str): Name of zone
view
no_of_records (int): number of records to create
type (str): Record type
Returns:
bool: True if successful
'''
status = False
zone_id = ''
zone = config['dns_domain']
view = b1ddi.get_id('/dns/view', key="name",
value=config['dns_view'], include_path=True)
if view:
filter = ( '(fqdn=="' + zone + '")and(view=="' + view + '")' )
# Get zone id
response = b1ddi.get('/dns/auth_zone',
_filter=filter,
_fields="fqdn,id")
if response.status_code in b1ddi.return_codes_ok:
if 'results' in response.json().keys():
zones = response.json()['results']
if len(zones) == 1:
zone_id = zones[0]['id']
log.debug("Zone ID: {} Found".format(zone_id))
else:
log.warning("Too many results returned for zone {}"
.format(zone))
else:
log.warning("No results returned for zone {}"
.format(zone))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
else:
log.error("--- Request for zone {} failed".format(zone))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
# Create Records
if zone_id:
record_count = 0
network = ipaddress.ip_network(config['base_net'] + '/' + config['cidr'])
net_size = int(network.num_addresses) - 2
# Check we can fit no_of_records in network
if int(config['no_of_records']) > net_size:
no_of_records = net_size
else:
no_of_records = int(config['no_of_records'])
tag_body = create_tag_body(config)
# Generate records and add to zone
for n in range(1, (no_of_records + 1)):
hostname = "host" + str(n)
address = str(network.network_address + n)
body = ( '{"name_in_zone":"' + hostname + '",' +
'"zone": "' + zone_id + '",' +
'"type": "A", ' +
'"rdata": {"address": "' + address + '"}, ' +
'"options": {"create_ptr": true},' +
'"inheritance_sources": ' +
'{"ttl": {"action": "inherit"}}, ' +
tag_body + ' }' )
log.debug("Body: {}".format(body))
response = b1ddi.create('/dns/record', body)
if response.status_code in b1ddi.return_codes_ok:
log.info("Created record: {}.{} with IP {}"
.format(hostname, zone, address))
record_count += 1
else:
log.warning("Failed to create record {}.{}"
.format(hostname, zone))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
if record_count == no_of_records:
log.info("+++ Successfully created {} DNS Records"
.format(record_count))
status = True
else:
log.info("--- Only {} DNS Records created".format(record_count))
status = False
else:
log.warning("--- Unable to add records to zone {} in view {}"
.format(zone,view))
status = False
else:
log.error("--- Request for id of view {} failed"
.format(config['dns_view']))
return status
def create_demo(b1ddi, config, ipv6=False):
'''
Create the demo data
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
ipv6 (bool): Build IPv6 networks
Returns:
status (bool): True if successful
'''
exitcode = 0
# Create IP Space
if ip_space(b1ddi, config):
# Create network structure
if create_networks(b1ddi, config):
log.info("+++ Successfully Populated IP Space")
if ipv6:
log.info("~~~ Creating IPv6 Networks ~~~")
if create_ipv6_networks(b1ddi, config):
log.info("+++ Successfully Populated IPv6 in IP Space")
else:
log.error("--- Failed to create IPv6 networks in {}"
.format(config['ip_space']))
exitcode = 1
else:
log.error("--- Failed to create networks in {}"
.format(config['ip_space']))
exitcode = 1
else:
exitcode = 1
# Create DNS View
if create_dnsview(b1ddi, config):
if populate_dns(b1ddi, config):
log.info("+++ Successfully Populated DNS View")
else:
log.error("--- Failed to create zones in {}"
.format(config['dns_view']))
exitcode = 1
else:
exitcode = 1
return exitcode
def clean_up(b1ddi, config):
'''
Clean Up Demo Data
Parameters:
b1ddi (obj): bloxone.b1ddi object
config (obj): ini config object
Returns:
bool: True if successful
'''
exitcode = 0
# Check for existence
id = b1ddi.get_id('/dns/view', key="name", value=config['dns_view'])
if id:
log.info("Cleaning up Zones for DNS View {}".format(config['dns_view']))
if clean_up_zones(b1ddi, id):
log.info("Deleting DNS View {}".format(config['dns_view']))
response = b1ddi.delete('/dns/view', id=id)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ DNS View {} deleted".format(config['dns_view']))
else:
log.warning("--- DNS View {} not deleted due to error".format(config['dns_view']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
exitcode = 1
else:
log.warning("Unable to clean-up zones in view {}".format(config['dns_view']))
exitcode = 1
else:
log.warning("DNS View {} not fonud.".format(config['dns_view']))
exitcode = 1
# Check for existence
id = b1ddi.get_id('/ipam/ip_space', key="name", value=config['ip_space'])
if id:
log.info("Deleting IP_Space {}".format(config['ip_space']))
response = b1ddi.delete('/ipam/ip_space', id=id)
if response.status_code in b1ddi.return_codes_ok:
log.info("+++ IP_Space {} deleted".format(config['ip_space']))
else:
log.warning("--- IP Space {} not deleted due to error".format(config['ip_space']))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
exitcode = 1
else:
log.warning("IP Space {} not fonud.".format(config['ip_space']))
exitcode = 1
return exitcode
def clean_up_zones(b1ddi, view_id):
'''
Clean up zones for specified view id
Parameters:
Returns:
bool: True if successful
'''
status = False
filter = 'view=="' + view_id + '"'
response = b1ddi.get('/dns/auth_zone', _filter=filter, _fields="fqdn,id")
if response.status_code in b1ddi.return_codes_ok:
if 'results' in response.json().keys():
zones = response.json()['results']
if len(zones):
for zone in zones:
id = zone['id'].split('/')[2]
log.info("Deleting zone {}".format(zone['fqdn']))
r = b1ddi.delete('/dns/auth_zone', id=id)
if r.status_code in b1ddi.return_codes_ok:
log.info("+++ Zone {} deleted successfully"
.format(zone['fqdn']))
status = True
else:
log.info("--- Zone {} not deleted".format(zone['fqdn']))
log.debug("Return code: {}"
.format(response.status_code))
log.debug("Return body: {}".format(response.text))
status = False
else:
log.info("No zones present")
status = True
else:
log.info("No results for view")
else:
log.info("--- Unable to retrieve zones for view id = {}"
.format(view_id))
log.debug("Return code: {}".format(response.status_code))
log.debug("Return body: {}".format(response.text))
status = False
return status