summaryrefslogtreecommitdiff
path: root/keama/tests/dhcp3/dhcp_hosts/njrarar.hosts
blob: 26e1e0bee124f195dfcf2d7aa379f1741e834206 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
host 0004edf4c20e {
                hardware ethernet 00:04:ed:f4:c2:12;
                option host-name "0004edf4c20e";
                fixed-address 68.180.106.21;
        }
        host 0004edf4c216 {
                hardware ethernet 00:04:ed:f4:c2:1a;
                option host-name "0004edf4c216";
                fixed-address 68.180.106.22;
        }
        host 0004edf4c21e {
                hardware ethernet 00:04:ed:f4:c2:22;
                option host-name "0004edf4c21e";
                fixed-address 68.180.106.23;
        }
        host 0004edf4c226 {
                hardware ethernet 00:04:ed:f4:c2:2a;
                option host-name "0004edf4c226";
                fixed-address 68.180.106.24;
        }
        host 0004edf4c22e {
                hardware ethernet 00:04:ed:f4:c2:32;
                option host-name "0004edf4c22e";
                fixed-address 68.180.106.25;
        }
        host 0004edf4c236 {
                hardware ethernet 00:04:ed:f4:c2:3a;
                option host-name "0004edf4c236";
                fixed-address 68.180.106.26;
        }
        host 0004edf4c23e {
                hardware ethernet 00:04:ed:f4:c2:42;
                option host-name "0004edf4c23e";
                fixed-address 68.180.106.27;
        }
        host 0004edf4c246 {
                hardware ethernet 00:04:ed:f4:c2:4a;
                option host-name "0004edf4c246";
                fixed-address 68.180.106.28;
        }
        host 0004edf4c24e {
                hardware ethernet 00:04:ed:f4:c2:52;
                option host-name "0004edf4c24e";
                fixed-address 68.180.106.29;
        }
        host 0004edf4c256 {
                hardware ethernet 00:04:ed:f4:c2:5a;
                option host-name "0004edf4c256";
                fixed-address 68.180.106.30;
        }
        host 0004edf4c25e {
                hardware ethernet 00:04:ed:f4:c2:62;
                option host-name "0004edf4c25e";
                fixed-address 68.180.106.31;
        }
        host 0004edf4c266 {
                hardware ethernet 00:04:ed:f4:c2:6a;
                option host-name "0004edf4c266";
                fixed-address 68.180.106.32;
        }
        host 0004edf4c26e {
                hardware ethernet 00:04:ed:f4:c2:72;
                option host-name "0004edf4c26e";
                fixed-address 68.180.106.33;
        }
        host 0004edf4c276 {
                hardware ethernet 00:04:ed:f4:c2:7a;
                option host-name "0004edf4c276";
                fixed-address 68.180.106.34;
        }
        host 0004edf4c27e {
                hardware ethernet 00:04:ed:f4:c2:82;
                option host-name "0004edf4c27e";
                fixed-address 68.180.106.35;
        }
        host 0004edf4c286 {
                hardware ethernet 00:04:ed:f4:c2:8a;
                option host-name "0004edf4c286";
                fixed-address 68.180.106.36;
        }
        host 0004edf4c28e {
                hardware ethernet 00:04:ed:f4:c2:92;
                option host-name "0004edf4c28e";
                fixed-address 68.180.106.37;
        }
        host 0004edf4c29e {
                hardware ethernet 00:04:ed:f4:c2:a2;
                option host-name "0004edf4c29e";
                fixed-address 68.180.106.38;
        }
        host 0004edf4c2a6 {
                hardware ethernet 00:04:ed:f4:c2:aa;
                option host-name "0004edf4c2a6";
                fixed-address 68.180.106.39;
        }
        host 0004edf4c2b6 {
                hardware ethernet 00:04:ed:f4:c2:ba;
                option host-name "0004edf4c2b6";
                fixed-address 68.180.106.40;
        }
        host 0004edf4c2c6 {
                hardware ethernet 00:04:ed:f4:c2:ca;
                option host-name "0004edf4c2c6";
                fixed-address 68.180.106.41;
        }
        host 0004edf4c2ce {
                hardware ethernet 00:04:ed:f4:c2:d2;
                option host-name "0004edf4c2ce";
                fixed-address 68.180.106.42;
        }
        host 0004edf4c2de {
                hardware ethernet 00:04:ed:f4:c2:e2;
                option host-name "0004edf4c2de";
                fixed-address 68.180.106.43;
        }
        host 0004edf4c2ee {
                hardware ethernet 00:04:ed:f4:c2:f2;
                option host-name "0004edf4c2ee";
                fixed-address 68.180.106.44;
        }
        host 0004edf4c2fe {
                hardware ethernet 00:04:ed:f4:c3:02;
                option host-name "0004edf4c2fe";
                fixed-address 68.180.106.45;
        }
        host 0004edf4c306 {
                hardware ethernet 00:04:ed:f4:c3:0a;
                option host-name "0004edf4c306";
                fixed-address 68.180.106.46;
        }
        host 0004edf4c30e {
                hardware ethernet 00:04:ed:f4:c3:12;
                option host-name "0004edf4c30e";
                fixed-address 68.180.106.47;
        }
        host 0004edf4c316 {
                hardware ethernet 00:04:ed:f4:c3:1a;
                option host-name "0004edf4c316";
                fixed-address 68.180.106.48;
        }
        host 0004edf4c31e {
                hardware ethernet 00:04:ed:f4:c3:22;
                option host-name "0004edf4c31e";
                fixed-address 68.180.106.49;
        }
        host 0004edf4c32e {
                hardware ethernet 00:04:ed:f4:c3:32;
                option host-name "0004edf4c32e";
                fixed-address 68.180.106.50;
        }
        host 0004edf4c336 {
                hardware ethernet 00:04:ed:f4:c3:3a;
                option host-name "0004edf4c336";
                fixed-address 68.180.106.51;
        }
        host 0004edf4c346 {
                hardware ethernet 00:04:ed:f4:c3:4a;
                option host-name "0004edf4c346";
                fixed-address 68.180.106.52;
        }
        host 0004edf4c34e {
                hardware ethernet 00:04:ed:f4:c3:52;
                option host-name "0004edf4c34e";
                fixed-address 68.180.106.53;
        }
        host 0004edf4c35e {
                hardware ethernet 00:04:ed:f4:c3:62;
                option host-name "0004edf4c35e";
                fixed-address 68.180.106.54;
        }
        host 0004edf4c366 {
                hardware ethernet 00:04:ed:f4:c3:6a;
                option host-name "0004edf4c366";
                fixed-address 68.180.106.55;
        }
        host 0004edf4c36e {
                hardware ethernet 00:04:ed:f4:c3:72;
                option host-name "0004edf4c36e";
                fixed-address 68.180.106.56;
        }
        host 0004edf4c37e {
                hardware ethernet 00:04:ed:f4:c3:82;
                option host-name "0004edf4c37e";
                fixed-address 68.180.106.57;
        }
        host 0004edf4c386 {
                hardware ethernet 00:04:ed:f4:c3:8a;
                option host-name "0004edf4c386";
                fixed-address 68.180.106.58;
        }
        host 0004edf4c38e {
                hardware ethernet 00:04:ed:f4:c3:92;
                option host-name "0004edf4c38e";
                fixed-address 68.180.106.59;
        }
        host 0004edf4c39e {
                hardware ethernet 00:04:ed:f4:c3:a2;
                option host-name "0004edf4c39e";
                fixed-address 68.180.106.60;
        }
        host 0004edf4c3a6 {
                hardware ethernet 00:04:ed:f4:c3:aa;
                option host-name "0004edf4c3a6";
                fixed-address 68.180.106.61;
        }
        host 0004edf4c3be {
                hardware ethernet 00:04:ed:f4:c3:c2;
                option host-name "0004edf4c3be";
                fixed-address 68.180.106.62;
        }
        host 0004edf4c3c6 {
                hardware ethernet 00:04:ed:f4:c3:ca;
                option host-name "0004edf4c3c6";
                fixed-address 68.180.106.63;
        }
        host 0004edf4c3ce {
                hardware ethernet 00:04:ed:f4:c3:d2;
                option host-name "0004edf4c3ce";
                fixed-address 68.180.106.64;
        }
        host 0004edf4c3d6 {
                hardware ethernet 00:04:ed:f4:c3:da;
                option host-name "0004edf4c3d6";
                fixed-address 68.180.106.65;
        }
        host 0004edf4c3ee {
                hardware ethernet 00:04:ed:f4:c3:f2;
                option host-name "0004edf4c3ee";
                fixed-address 68.180.106.66;
        }
        host 0004edf4c3f6 {
                hardware ethernet 00:04:ed:f4:c3:fa;
                option host-name "0004edf4c3f6";
                fixed-address 68.180.106.67;
        }
        host 0004edf4c3fe {
                hardware ethernet 00:04:ed:f4:c4:02;
                option host-name "0004edf4c3fe";
                fixed-address 68.180.106.68;
        }
        host 0004edf4c40e {
                hardware ethernet 00:04:ed:f4:c4:12;
                option host-name "0004edf4c40e";
                fixed-address 68.180.106.69;
        }
        host 0004edf4c426 {
                hardware ethernet 00:04:ed:f4:c4:2a;
                option host-name "0004edf4c426";
                fixed-address 68.180.106.70;
        }
        host 0004edf4c42e {
                hardware ethernet 00:04:ed:f4:c4:32;
                option host-name "0004edf4c42e";
                fixed-address 68.180.106.71;
        }
        host 0004edf4c43e {
                hardware ethernet 00:04:ed:f4:c4:42;
                option host-name "0004edf4c43e";
                fixed-address 68.180.106.72;
        }
        host 0004edf4c44e {
                hardware ethernet 00:04:ed:f4:c4:52;
                option host-name "0004edf4c44e";
                fixed-address 68.180.106.73;
        }
        host 0004edf4c45e {
                hardware ethernet 00:04:ed:f4:c4:62;
                option host-name "0004edf4c45e";
                fixed-address 68.180.106.74;
        }
        host 0004edf4c476 {
                hardware ethernet 00:04:ed:f4:c4:7a;
                option host-name "0004edf4c476";
                fixed-address 68.180.106.75;
        }
        host 0004edf4c47e {
                hardware ethernet 00:04:ed:f4:c4:82;
                option host-name "0004edf4c47e";
                fixed-address 68.180.106.76;
        }
        host 0004edf4c486 {
                hardware ethernet 00:04:ed:f4:c4:8a;
                option host-name "0004edf4c486";
                fixed-address 68.180.106.77;
        }
        host 0004edf4c496 {
                hardware ethernet 00:04:ed:f4:c4:9a;
                option host-name "0004edf4c496";
                fixed-address 68.180.106.78;
        }
        host 0004edf4c49e {
                hardware ethernet 00:04:ed:f4:c4:a2;
                option host-name "0004edf4c49e";
                fixed-address 68.180.106.79;
        }
        host 0004edf4c4ae {
                hardware ethernet 00:04:ed:f4:c4:b2;
                option host-name "0004edf4c4ae";
                fixed-address 68.180.106.80;
        }
        host 0004edf4c4d6 {
                hardware ethernet 00:04:ed:f4:c4:da;
                option host-name "0004edf4c4d6";
                fixed-address 68.180.106.81;
        }
        host 0004edf4c4ee {
                hardware ethernet 00:04:ed:f4:c4:f2;
                option host-name "0004edf4c4ee";
                fixed-address 68.180.106.82;
        }
        host 0004edf4c50e {
                hardware ethernet 00:04:ed:f4:c5:12;
                option host-name "0004edf4c50e";
                fixed-address 68.180.106.83;
        }
        host 0004edf4c516 {
                hardware ethernet 00:04:ed:f4:c5:1a;
                option host-name "0004edf4c516";
                fixed-address 68.180.106.84;
        }
        host 0004edf4c5a6 {
                hardware ethernet 00:04:ed:f4:c5:aa;
                option host-name "0004edf4c5a6";
                fixed-address 68.180.106.85;
        }
        host 0004edf4c5ae {
                hardware ethernet 00:04:ed:f4:c5:b2;
                option host-name "0004edf4c5ae";
                fixed-address 68.180.106.86;
        }
        host 0004edf4c5be {
                hardware ethernet 00:04:ed:f4:c5:c2;
                option host-name "0004edf4c5be";
                fixed-address 68.180.106.87;
        }
        host 0004edf4c5c6 {
                hardware ethernet 00:04:ed:f4:c5:ca;
                option host-name "0004edf4c5c6";
                fixed-address 68.180.106.88;
        }
        host 0004edf4c5e6 {
                hardware ethernet 00:04:ed:f4:c5:ea;
                option host-name "0004edf4c5e6";
                fixed-address 68.180.106.89;
        }
        host 0004edf4c5ee {
                hardware ethernet 00:04:ed:f4:c5:f2;
                option host-name "0004edf4c5ee";
                fixed-address 68.180.106.90;
        }
        host 0004edf4c5fe {
                hardware ethernet 00:04:ed:f4:c6:02;
                option host-name "0004edf4c5fe";
                fixed-address 68.180.106.91;
        }
        host 0004edf4c61e {
                hardware ethernet 00:04:ed:f4:c6:22;
                option host-name "0004edf4c61e";
                fixed-address 68.180.106.92;
        }
        host 0004edf4c63e {
                hardware ethernet 00:04:ed:f4:c6:42;
                option host-name "0004edf4c63e";
                fixed-address 68.180.106.93;
        }
        host 0004edf4c646 {
                hardware ethernet 00:04:ed:f4:c6:4a;
                option host-name "0004edf4c646";
                fixed-address 68.180.106.94;
        }
        host 0004edf4c64e {
                hardware ethernet 00:04:ed:f4:c6:52;
                option host-name "0004edf4c64e";
                fixed-address 68.180.106.95;
        }
        host 0004edf4c66e {
                hardware ethernet 00:04:ed:f4:c6:72;
                option host-name "0004edf4c66e";
                fixed-address 68.180.106.96;
        }
        host 0004edf4c696 {
                hardware ethernet 00:04:ed:f4:c6:9a;
                option host-name "0004edf4c696";
                fixed-address 68.180.106.97;
        }
        host 0004edf4c706 {
                hardware ethernet 00:04:ed:f4:c7:0a;
                option host-name "0004edf4c706";
                fixed-address 68.180.106.98;
        }
        host 0004edf4c726 {
                hardware ethernet 00:04:ed:f4:c7:2a;
                option host-name "0004edf4c726";
                fixed-address 68.180.106.99;
        }
        host 0004edf4c73e {
                hardware ethernet 00:04:ed:f4:c7:42;
                option host-name "0004edf4c73e";
                fixed-address 68.180.106.100;
        }
        host 0004edf4c74e {
                hardware ethernet 00:04:ed:f4:c7:52;
                option host-name "0004edf4c74e";
                fixed-address 68.180.106.101;
        }
        host 0004edf4c756 {
                hardware ethernet 00:04:ed:f4:c7:5a;
                option host-name "0004edf4c756";
                fixed-address 68.180.106.102;
        }
        host 0004edf4c776 {
                hardware ethernet 00:04:ed:f4:c7:7a;
                option host-name "0004edf4c776";
                fixed-address 68.180.106.103;
        }
        host 0004edf4c77e {
                hardware ethernet 00:04:ed:f4:c7:82;
                option host-name "0004edf4c77e";
                fixed-address 68.180.106.104;
        }
        host 0004edf4c786 {
                hardware ethernet 00:04:ed:f4:c7:8a;
                option host-name "0004edf4c786";
                fixed-address 68.180.106.105;
        }
        host 0004edf4c78e {
                hardware ethernet 00:04:ed:f4:c7:92;
                option host-name "0004edf4c78e";
                fixed-address 68.180.106.106;
        }
        host 0004edf4c796 {
                hardware ethernet 00:04:ed:f4:c7:9a;
                option host-name "0004edf4c796";
                fixed-address 68.180.106.107;
        }
        host 0004edf4c79e {
                hardware ethernet 00:04:ed:f4:c7:a2;
                option host-name "0004edf4c79e";
                fixed-address 68.180.106.108;
        }
        host 0004edf4c7ae {
                hardware ethernet 00:04:ed:f4:c7:b2;
                option host-name "0004edf4c7ae";
                fixed-address 68.180.106.109;
        }
        host 0004edf4c7b6 {
                hardware ethernet 00:04:ed:f4:c7:ba;
                option host-name "0004edf4c7b6";
                fixed-address 68.180.106.110;
        }
        host 0004edf4c7be {
                hardware ethernet 00:04:ed:f4:c7:c2;
                option host-name "0004edf4c7be";
                fixed-address 68.180.106.111;
        }
        host 0004edf4c7c6 {
                hardware ethernet 00:04:ed:f4:c7:ca;
                option host-name "0004edf4c7c6";
                fixed-address 68.180.106.112;
        }
        host 0004edf4c7ce {
                hardware ethernet 00:04:ed:f4:c7:d2;
                option host-name "0004edf4c7ce";
                fixed-address 68.180.106.113;
        }
        host 0004edf4c7d6 {
                hardware ethernet 00:04:ed:f4:c7:da;
                option host-name "0004edf4c7d6";
                fixed-address 68.180.106.114;
        }
        host 0004edf4c7de {
                hardware ethernet 00:04:ed:f4:c7:e2;
                option host-name "0004edf4c7de";
                fixed-address 68.180.106.115;
        }
        host 0004edf4c7ee {
                hardware ethernet 00:04:ed:f4:c7:f2;
                option host-name "0004edf4c7ee";
                fixed-address 68.180.106.116;
        }
        host 0004edf4c80e {
                hardware ethernet 00:04:ed:f4:c8:12;
                option host-name "0004edf4c80e";
                fixed-address 68.180.106.117;
        }
        host 0004edf4c81e {
                hardware ethernet 00:04:ed:f4:c8:22;
                option host-name "0004edf4c81e";
                fixed-address 68.180.106.118;
        }
        host 0004edf4c826 {
                hardware ethernet 00:04:ed:f4:c8:2a;
                option host-name "0004edf4c826";
                fixed-address 68.180.106.119;
        }
        host 0004edf4c846 {
                hardware ethernet 00:04:ed:f4:c8:4a;
                option host-name "0004edf4c846";
                fixed-address 68.180.106.120;
        }
        host 0004edf4c84e {
                hardware ethernet 00:04:ed:f4:c8:52;
                option host-name "0004edf4c84e";
                fixed-address 68.180.106.121;
        }
        host 0004edf4c866 {
                hardware ethernet 00:04:ed:f4:c8:6a;
                option host-name "0004edf4c866";
                fixed-address 68.180.106.122;
        }
        host 0004edf4c876 {
                hardware ethernet 00:04:ed:f4:c8:7a;
                option host-name "0004edf4c876";
                fixed-address 68.180.106.123;
        }
        host 0004edf4c88e {
                hardware ethernet 00:04:ed:f4:c8:92;
                option host-name "0004edf4c88e";
                fixed-address 68.180.106.124;
        }
        host 0004edf4c896 {
                hardware ethernet 00:04:ed:f4:c8:9a;
                option host-name "0004edf4c896";
                fixed-address 68.180.106.125;
        }
        host 0004edf4c89e {
                hardware ethernet 00:04:ed:f4:c8:a2;
                option host-name "0004edf4c89e";
                fixed-address 68.180.106.126;
        }
        host 0004edf4c8ce {
                hardware ethernet 00:04:ed:f4:c8:d2;
                option host-name "0004edf4c8ce";
                fixed-address 68.180.106.127;
        }
        host 0004edf4c8e6 {
                hardware ethernet 00:04:ed:f4:c8:ea;
                option host-name "0004edf4c8e6";
                fixed-address 68.180.106.128;
        }
        host 0004edf4c8f6 {
                hardware ethernet 00:04:ed:f4:c8:fa;
                option host-name "0004edf4c8f6";
                fixed-address 68.180.106.129;
        }
        host 0004edf4c906 {
                hardware ethernet 00:04:ed:f4:c9:0a;
                option host-name "0004edf4c906";
                fixed-address 68.180.106.130;
        }
        host 0004edf4c90e {
                hardware ethernet 00:04:ed:f4:c9:12;
                option host-name "0004edf4c90e";
                fixed-address 68.180.106.131;
        }
        host 0004edf4c916 {
                hardware ethernet 00:04:ed:f4:c9:1a;
                option host-name "0004edf4c916";
                fixed-address 68.180.106.132;
        }
        host 0004edf4c946 {
                hardware ethernet 00:04:ed:f4:c9:4a;
                option host-name "0004edf4c946";
                fixed-address 68.180.106.133;
        }
        host 0004edf4c94e {
                hardware ethernet 00:04:ed:f4:c9:52;
                option host-name "0004edf4c94e";
                fixed-address 68.180.106.134;
        }
        host 0004edf4c996 {
                hardware ethernet 00:04:ed:f4:c9:9a;
                option host-name "0004edf4c996";
                fixed-address 68.180.106.135;
        }
        host 0004edf4c9a6 {
                hardware ethernet 00:04:ed:f4:c9:aa;
                option host-name "0004edf4c9a6";
                fixed-address 68.180.106.136;
        }
        host 0004edf4c9b6 {
                hardware ethernet 00:04:ed:f4:c9:ba;
                option host-name "0004edf4c9b6";
                fixed-address 68.180.106.137;
        }
        host 0004edf4c9be {
                hardware ethernet 00:04:ed:f4:c9:c2;
                option host-name "0004edf4c9be";
                fixed-address 68.180.106.138;
        }
        host 0004edf4c9c6 {
                hardware ethernet 00:04:ed:f4:c9:ca;
                option host-name "0004edf4c9c6";
                fixed-address 68.180.106.139;
        }
        host 0004edf4c9de {
                hardware ethernet 00:04:ed:f4:c9:e2;
                option host-name "0004edf4c9de";
                fixed-address 68.180.106.140;
        }
        host 0004edf4c9e6 {
                hardware ethernet 00:04:ed:f4:c9:ea;
                option host-name "0004edf4c9e6";
                fixed-address 68.180.106.141;
        }
        host 0004edf4c9f6 {
                hardware ethernet 00:04:ed:f4:c9:fa;
                option host-name "0004edf4c9f6";
                fixed-address 68.180.106.142;
        }
        host 0004edf4c9fe {
                hardware ethernet 00:04:ed:f4:ca:02;
                option host-name "0004edf4c9fe";
                fixed-address 68.180.106.143;
        }
        host 0004edf4ca06 {
                hardware ethernet 00:04:ed:f4:ca:0a;
                option host-name "0004edf4ca06";
                fixed-address 68.180.106.144;
        }
        host 0004edf4ca0e {
                hardware ethernet 00:04:ed:f4:ca:12;
                option host-name "0004edf4ca0e";
                fixed-address 68.180.106.145;
        }
        host 0004edf4ca16 {
                hardware ethernet 00:04:ed:f4:ca:1a;
                option host-name "0004edf4ca16";
                fixed-address 68.180.106.146;
        }
        host 0004edf4ca26 {
                hardware ethernet 00:04:ed:f4:ca:2a;
                option host-name "0004edf4ca26";
                fixed-address 68.180.106.147;
        }
        host 0004edf4ca2e {
                hardware ethernet 00:04:ed:f4:ca:32;
                option host-name "0004edf4ca2e";
                fixed-address 68.180.106.148;
        }
        host 0004edf4ca36 {
                hardware ethernet 00:04:ed:f4:ca:3a;
                option host-name "0004edf4ca36";
                fixed-address 68.180.106.149;
        }
        host 0004edf4ca46 {
                hardware ethernet 00:04:ed:f4:ca:4a;
                option host-name "0004edf4ca46";
                fixed-address 68.180.106.150;
        }
        host 0004edf4ca4e {
                hardware ethernet 00:04:ed:f4:ca:52;
                option host-name "0004edf4ca4e";
                fixed-address 68.180.106.151;
        }
        host 0004edf4ca66 {
                hardware ethernet 00:04:ed:f4:ca:6a;
                option host-name "0004edf4ca66";
                fixed-address 68.180.106.152;
        }
        host 0004edf4ca6e {
                hardware ethernet 00:04:ed:f4:ca:72;
                option host-name "0004edf4ca6e";
                fixed-address 68.180.106.153;
        }
        host 0004edf4ca7e {
                hardware ethernet 00:04:ed:f4:ca:82;
                option host-name "0004edf4ca7e";
                fixed-address 68.180.106.154;
        }
        host 0004edf4ca86 {
                hardware ethernet 00:04:ed:f4:ca:8a;
                option host-name "0004edf4ca86";
                fixed-address 68.180.106.155;
        }
        host 0004edf4ca96 {
                hardware ethernet 00:04:ed:f4:ca:9a;
                option host-name "0004edf4ca96";
                fixed-address 68.180.106.156;
        }
        host 0004edf4ca9e {
                hardware ethernet 00:04:ed:f4:ca:a2;
                option host-name "0004edf4ca9e";
                fixed-address 68.180.106.157;
        }
        host 0004edf4cab6 {
                hardware ethernet 00:04:ed:f4:ca:ba;
                option host-name "0004edf4cab6";
                fixed-address 68.180.106.158;
        }
        host 0004edf4cabe {
                hardware ethernet 00:04:ed:f4:ca:c2;
                option host-name "0004edf4cabe";
                fixed-address 68.180.106.159;
        }
        host 0004edf4cade {
                hardware ethernet 00:04:ed:f4:ca:e2;
                option host-name "0004edf4cade";
                fixed-address 68.180.106.160;
        }
        host 0004edf4caee {
                hardware ethernet 00:04:ed:f4:ca:f2;
                option host-name "0004edf4caee";
                fixed-address 68.180.106.161;
        }
        host 0004edf4cbbe {
                hardware ethernet 00:04:ed:f4:cb:c2;
                option host-name "0004edf4cbbe";
                fixed-address 68.180.106.162;
        }
        host 0004edf4cbc6 {
                hardware ethernet 00:04:ed:f4:cb:ca;
                option host-name "0004edf4cbc6";
                fixed-address 68.180.106.163;
        }
        host 0004edf4cbce {
                hardware ethernet 00:04:ed:f4:cb:d2;
                option host-name "0004edf4cbce";
                fixed-address 68.180.106.164;
        }
        host 0004edf4cbf6 {
                hardware ethernet 00:04:ed:f4:cb:fa;
                option host-name "0004edf4cbf6";
                fixed-address 68.180.106.165;
        }
        host 0004edf4cc06 {
                hardware ethernet 00:04:ed:f4:cc:0a;
                option host-name "0004edf4cc06";
                fixed-address 68.180.106.166;
        }
        host 0004edf4cc0e {
                hardware ethernet 00:04:ed:f4:cc:12;
                option host-name "0004edf4cc0e";
                fixed-address 68.180.106.167;
        }
        host 0004edf4cc2e {
                hardware ethernet 00:04:ed:f4:cc:32;
                option host-name "0004edf4cc2e";
                fixed-address 68.180.106.168;
        }
        host 0004edf4cc3e {
                hardware ethernet 00:04:ed:f4:cc:42;
                option host-name "0004edf4cc3e";
                fixed-address 68.180.106.169;
        }
        host 0004edf4cc5e {
                hardware ethernet 00:04:ed:f4:cc:62;
                option host-name "0004edf4cc5e";
                fixed-address 68.180.106.170;
        }
        host 0004edf4cc66 {
                hardware ethernet 00:04:ed:f4:cc:6a;
                option host-name "0004edf4cc66";
                fixed-address 68.180.106.171;
        }
        host 0004edf4cc6e {
                hardware ethernet 00:04:ed:f4:cc:72;
                option host-name "0004edf4cc6e";
                fixed-address 68.180.106.172;
        }
        host 0004edf4cc76 {
                hardware ethernet 00:04:ed:f4:cc:7a;
                option host-name "0004edf4cc76";
                fixed-address 68.180.106.173;
        }
        host 0004edf4cc7e {
                hardware ethernet 00:04:ed:f4:cc:82;
                option host-name "0004edf4cc7e";
                fixed-address 68.180.106.174;
        }
        host 0004edf4cc86 {
                hardware ethernet 00:04:ed:f4:cc:8a;
                option host-name "0004edf4cc86";
                fixed-address 68.180.106.175;
        }
        host 0004edf4cc8e {
                hardware ethernet 00:04:ed:f4:cc:92;
                option host-name "0004edf4cc8e";
                fixed-address 68.180.106.176;
        }
        host 0004edf4cc96 {
                hardware ethernet 00:04:ed:f4:cc:9a;
                option host-name "0004edf4cc96";
                fixed-address 68.180.106.177;
        }
        host 0004edf4ccb6 {
                hardware ethernet 00:04:ed:f4:cc:ba;
                option host-name "0004edf4ccb6";
                fixed-address 68.180.106.178;
        }
        host 0004edf4ccce {
                hardware ethernet 00:04:ed:f4:cc:d2;
                option host-name "0004edf4ccce";
                fixed-address 68.180.106.179;
        }
        host 0004edf4ccd6 {
                hardware ethernet 00:04:ed:f4:cc:da;
                option host-name "0004edf4ccd6";
                fixed-address 68.180.106.180;
        }
        host 0004edf4ccde {
                hardware ethernet 00:04:ed:f4:cc:e2;
                option host-name "0004edf4ccde";
                fixed-address 68.180.106.181;
        }
        host 0004edf4ccf6 {
                hardware ethernet 00:04:ed:f4:cc:fa;
                option host-name "0004edf4ccf6";
                fixed-address 68.180.106.182;
        }
        host 0004edf4cd16 {
                hardware ethernet 00:04:ed:f4:cd:1a;
                option host-name "0004edf4cd16";
                fixed-address 68.180.106.183;
        }
        host 0004edf4cd2e {
                hardware ethernet 00:04:ed:f4:cd:32;
                option host-name "0004edf4cd2e";
                fixed-address 68.180.106.184;
        }
        host 0004edf4cd36 {
                hardware ethernet 00:04:ed:f4:cd:3a;
                option host-name "0004edf4cd36";
                fixed-address 68.180.106.185;
        }
        host 0004edf4cd6e {
                hardware ethernet 00:04:ed:f4:cd:72;
                option host-name "0004edf4cd6e";
                fixed-address 68.180.106.186;
        }
        host 0004edf4cd86 {
                hardware ethernet 00:04:ed:f4:cd:8a;
                option host-name "0004edf4cd86";
                fixed-address 68.180.106.187;
        }
        host 0004edf4cdb6 {
                hardware ethernet 00:04:ed:f4:cd:ba;
                option host-name "0004edf4cdb6";
                fixed-address 68.180.106.188;
        }
        host 0004edf4ce2e {
                hardware ethernet 00:04:ed:f4:ce:32;
                option host-name "0004edf4ce2e";
                fixed-address 68.180.106.189;
        }
        host 0004edf4cece {
                hardware ethernet 00:04:ed:f4:ce:d2;
                option host-name "0004edf4cece";
                fixed-address 68.180.106.190;
        }
        host 0004edf4ced6 {
                hardware ethernet 00:04:ed:f4:ce:da;
                option host-name "0004edf4ced6";
                fixed-address 68.180.106.191;
        }
        host 0004edf4ceee {
                hardware ethernet 00:04:ed:f4:ce:f2;
                option host-name "0004edf4ceee";
                fixed-address 68.180.106.192;
        }
        host 0004edf4cf0e {
                hardware ethernet 00:04:ed:f4:cf:12;
                option host-name "0004edf4cf0e";
                fixed-address 68.180.106.193;
        }
        host 0004edf4cf5e {
                hardware ethernet 00:04:ed:f4:cf:62;
                option host-name "0004edf4cf5e";
                fixed-address 68.180.106.194;
        }
        host 0004edf4cfb6 {
                hardware ethernet 00:04:ed:f4:cf:ba;
                option host-name "0004edf4cfb6";
                fixed-address 68.180.106.195;
        }
        host 0004edf4cfce {
                hardware ethernet 00:04:ed:f4:cf:d2;
                option host-name "0004edf4cfce";
                fixed-address 68.180.106.196;
        }
        host 0004edf4d056 {
                hardware ethernet 00:04:ed:f4:d0:5a;
                option host-name "0004edf4d056";
                fixed-address 68.180.106.197;
        }
        host 0004edf4d0a6 {
                hardware ethernet 00:04:ed:f4:d0:aa;
                option host-name "0004edf4d0a6";
                fixed-address 68.180.106.198;
        }
        host 0004edf4d10e {
                hardware ethernet 00:04:ed:f4:d1:12;
                option host-name "0004edf4d10e";
                fixed-address 68.180.106.199;
        }
        host 0004edf4d11e {
                hardware ethernet 00:04:ed:f4:d1:22;
                option host-name "0004edf4d11e";
                fixed-address 68.180.106.200;
        }
        host 0004edf4d136 {
                hardware ethernet 00:04:ed:f4:d1:3a;
                option host-name "0004edf4d136";
                fixed-address 68.180.106.201;
        }
        host 0004edf4d13e {
                hardware ethernet 00:04:ed:f4:d1:42;
                option host-name "0004edf4d13e";
                fixed-address 68.180.106.202;
        }
        host 0004edf4d196 {
                hardware ethernet 00:04:ed:f4:d1:9a;
                option host-name "0004edf4d196";
                fixed-address 68.180.106.203;
        }
        host 0004edf4d19e {
                hardware ethernet 00:04:ed:f4:d1:a2;
                option host-name "0004edf4d19e";
                fixed-address 68.180.106.204;
        }
        host 0004edf4d1ee {
                hardware ethernet 00:04:ed:f4:d1:f2;
                option host-name "0004edf4d1ee";
                fixed-address 68.180.106.205;
        }
        host 0004edf4d33e {
                hardware ethernet 00:04:ed:f4:d3:42;
                option host-name "0004edf4d33e";
                fixed-address 68.180.106.206;
        }
        host 0004edf4d3b6 {
                hardware ethernet 00:04:ed:f4:d3:ba;
                option host-name "0004edf4d3b6";
                fixed-address 68.180.106.207;
        }
        host 0004edf4d3be {
                hardware ethernet 00:04:ed:f4:d3:c2;
                option host-name "0004edf4d3be";
                fixed-address 68.180.106.208;
        }
        host 0004edf4d3c6 {
                hardware ethernet 00:04:ed:f4:d3:ca;
                option host-name "0004edf4d3c6";
                fixed-address 68.180.106.209;
        }
        host 0004edf4d3de {
                hardware ethernet 00:04:ed:f4:d3:e2;
                option host-name "0004edf4d3de";
                fixed-address 68.180.106.210;
        }
        host 0004edf4d3e6 {
                hardware ethernet 00:04:ed:f4:d3:ea;
                option host-name "0004edf4d3e6";
                fixed-address 68.180.106.211;
        }
        host 0004edf4d406 {
                hardware ethernet 00:04:ed:f4:d4:0a;
                option host-name "0004edf4d406";
                fixed-address 68.180.106.212;
        }
        host 0004edf4d45e {
                hardware ethernet 00:04:ed:f4:d4:62;
                option host-name "0004edf4d45e";
                fixed-address 68.180.106.213;
        }
        host 0004edf4d466 {
                hardware ethernet 00:04:ed:f4:d4:6a;
                option host-name "0004edf4d466";
                fixed-address 68.180.106.214;
        }
        host 0004edf4d46e {
                hardware ethernet 00:04:ed:f4:d4:72;
                option host-name "0004edf4d46e";
                fixed-address 68.180.106.215;
        }
        host 0004edf4d476 {
                hardware ethernet 00:04:ed:f4:d4:7a;
                option host-name "0004edf4d476";
                fixed-address 68.180.106.216;
        }
        host 0004edf4d47e {
                hardware ethernet 00:04:ed:f4:d4:82;
                option host-name "0004edf4d47e";
                fixed-address 68.180.106.217;
        }
        host 0004edf4d486 {
                hardware ethernet 00:04:ed:f4:d4:8a;
                option host-name "0004edf4d486";
                fixed-address 68.180.106.218;
        }
        host 0004edf4d4ae {
                hardware ethernet 00:04:ed:f4:d4:b2;
                option host-name "0004edf4d4ae";
                fixed-address 68.180.106.219;
        }
        host 0004edf4d4b6 {
                hardware ethernet 00:04:ed:f4:d4:ba;
                option host-name "0004edf4d4b6";
                fixed-address 68.180.106.220;
        }
        host 0004edf4d4c6 {
                hardware ethernet 00:04:ed:f4:d4:ca;
                option host-name "0004edf4d4c6";
                fixed-address 68.180.106.221;
        }
        host 0004edf4d4d6 {
                hardware ethernet 00:04:ed:f4:d4:da;
                option host-name "0004edf4d4d6";
                fixed-address 68.180.106.222;
        }
        host 0004edf4d4de {
                hardware ethernet 00:04:ed:f4:d4:e2;
                option host-name "0004edf4d4de";
                fixed-address 68.180.106.223;
        }
        host 0004edf4d4f6 {
                hardware ethernet 00:04:ed:f4:d4:fa;
                option host-name "0004edf4d4f6";
                fixed-address 68.180.106.224;
        }
        host 0004edf4d4fe {
                hardware ethernet 00:04:ed:f4:d5:02;
                option host-name "0004edf4d4fe";
                fixed-address 68.180.106.225;
        }
        host 0004edf4d51e {
                hardware ethernet 00:04:ed:f4:d5:22;
                option host-name "0004edf4d51e";
                fixed-address 68.180.106.226;
        }
        host 0004edf4d536 {
                hardware ethernet 00:04:ed:f4:d5:3a;
                option host-name "0004edf4d536";
                fixed-address 68.180.106.227;
        }
        host 0004edf4d546 {
                hardware ethernet 00:04:ed:f4:d5:4a;
                option host-name "0004edf4d546";
                fixed-address 68.180.106.228;
        }
        host 0004edf4d556 {
                hardware ethernet 00:04:ed:f4:d5:5a;
                option host-name "0004edf4d556";
                fixed-address 68.180.106.229;
        }
        host 0004edf4d55e {
                hardware ethernet 00:04:ed:f4:d5:62;
                option host-name "0004edf4d55e";
                fixed-address 68.180.106.230;
        }
        host 0004edf4d566 {
                hardware ethernet 00:04:ed:f4:d5:6a;
                option host-name "0004edf4d566";
                fixed-address 68.180.106.231;
        }
        host 0004edf4d56e {
                hardware ethernet 00:04:ed:f4:d5:72;
                option host-name "0004edf4d56e";
                fixed-address 68.180.106.232;
        }
        host 0004edf4d576 {
                hardware ethernet 00:04:ed:f4:d5:7a;
                option host-name "0004edf4d576";
                fixed-address 68.180.106.233;
        }
        host 0004edf4d5ce {
                hardware ethernet 00:04:ed:f4:d5:d2;
                option host-name "0004edf4d5ce";
                fixed-address 68.180.106.234;
        }
        host 0004edf4d636 {
                hardware ethernet 00:04:ed:f4:d6:3a;
                option host-name "0004edf4d636";
                fixed-address 68.180.106.235;
        }
        host 0004edf4d646 {
                hardware ethernet 00:04:ed:f4:d6:4a;
                option host-name "0004edf4d646";
                fixed-address 68.180.106.236;
        }
        host 0004edf4d64e {
                hardware ethernet 00:04:ed:f4:d6:52;
                option host-name "0004edf4d64e";
                fixed-address 68.180.106.237;
        }
        host 0004edf4d65e {
                hardware ethernet 00:04:ed:f4:d6:62;
                option host-name "0004edf4d65e";
                fixed-address 68.180.106.238;
        }
        host 0004edf9fd82 {
                hardware ethernet 00:04:ed:f9:fd:86;
                option host-name "0004edf9fd82";
                fixed-address 68.180.106.239;
        }
        host 0004edf9fdea {
                hardware ethernet 00:04:ed:f9:fd:ee;
                option host-name "0004edf9fdea";
                fixed-address 68.180.106.240;
        }
        host 0004edf9fdf2 {
                hardware ethernet 00:04:ed:f9:fd:f6;
                option host-name "0004edf9fdf2";
                fixed-address 68.180.106.241;
        }
        host 0004edffe1e2 {
                hardware ethernet 00:04:ed:ff:e1:e6;
                option host-name "0004edffe1e2";
                fixed-address 68.180.106.242;
        }

      	host 0004edf4c8c6 {
                hardware ethernet 00:04:ed:f4:c8:ca;
                option host-name "0004edf4c8c6";
                fixed-address 68.180.106.243;
        }