-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
zones.yaml
1337 lines (1278 loc) · 58.5 KB
/
zones.yaml
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
domains:
- domain: attestation.app
ttl: &default_ttl 3600
records:
# OVH Beauharnois
ns1.attestation.app: &ns1
- a: &ns1_a 51.161.34.158
- aaaa: &ns1_aaaa 2607:5300:205:200::eaa
- caa: &ns1_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1396393346"
- caa: &ns1_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/124323224"
- caa: &caa_iodef 0 iodef "mailto:[email protected]"
- https: &https
content: 1 . alpn=h2
ttl: &stable_ttl 86400
- mx: &null_mx 0 .
- sshfp: &null_sshfp 4 2 0000000000000000000000000000000000000000000000000000000000000000
- txt: &null_spf "v=spf1 -all"
# BuyVM New York, BuyVM Las Vegas and BuyVM Luxembourg with anycast IPv4
ns2.attestation.app: &ns2
- a: 198.251.90.93
- aaaa: &ns2_aaaa_0 2605:6400:10:102e:95bc:89ef:2e7f:49bb
- aaaa: &ns2_aaaa_1 2605:6400:20:1c8f:a0c9:372d:482e:945b
- aaaa: &ns2_aaaa_2 2605:6400:30:ec25:102c:af6d:5be:1eb8
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1396399226"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/124323954"
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
_443._tcp.ns1.attestation.app: &ns1_tlsa
- tlsa: 3 1 1 1892a7db35f1a969ec5fa8aaef9fdcc7978a9bf503f7631e7e5ed65f09f7b8f1
_853._tcp.ns1.attestation.app: *ns1_tlsa
_443._tcp.ns2.attestation.app: &ns2_tlsa
- tlsa: 3 1 1 acc175a1bd70f6608f63da1717dc2cb752ed9ea9492a890c008159cfb1a3a360
_853._tcp.ns2.attestation.app: *ns2_tlsa
attestation.app:
- a: &attestation_a 51.79.66.27
- aaaa: &attestation_aaaa 2607:5300:205:200::7e9
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/130076561"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/20256460"
- caa: *caa_iodef
- https: *https
- mx: &grapheneos_mx
content: 0 mail.grapheneos.org
ttl: *stable_ttl
- mx: &grapheneos_mx_backup
content: 10 mail.grapheneos.net
ttl: *stable_ttl
- ns:
content: ns1.attestation.app
ttl: *stable_ttl
- ns:
content: ns2.attestation.app
ttl: *stable_ttl
- soa:
content: ns1.attestation.app hostmaster.attestation.app {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: 4 2 3c03c6c4ebc5ca097d55d4b2941ad581e840f230a6927c58755522c0ec3e98c6
- txt: &grapheneos_spf "v=spf1 a:mail.grapheneos.org -all"
- txt: google-site-verification=N_aN03-oRkhotXYqvQqFinrMMK2W2aq73NK-Ce1kTYY
- txt: "yandex-verification: aafc5b649d6fa07d"
- txt: facebook-domain-verification=flutp8v6yshxc45wrvr6iozw08ek1j
_443._tcp.attestation.app: &attestation_tlsa
- tlsa: 3 1 1 6bf7ed5d90827ee9af90a2760fe788994a86d1b1eab392880c84c4b269330121
_443._tcp.mta-sts.attestation.app: &mta_sts_tlsa
- tlsa: 3 1 1 b8c9e403ed081e57cd43c8a924b8ce6311431640f4daff1e510cbe3b0c20f4cf
_443._tcp.staging.attestation.app:
- tlsa: 3 1 1 25e4779bc88d9e764b052c4866e362dae2d59ddd6b67f5b4ce674684e5db9655
_443._tcp.www.attestation.app: *attestation_tlsa
_dmarc.attestation.app:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.attestation.app: &_mta-sts
- txt: "v=STSv1; id=2023062500"
_smtp._tls.attestation.app:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._domainkey.attestation.app: &grapheneos_dkim
- txt: "v=DKIM1; k=rsa; t=s; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAscpBvhA4SSPi2+Mdj8Ds4UB24dpeEST2hhhcm3d95rIqq0q7I7Tn39S/Mnr/ijk4a6W1V7nwMcz41JDIb1dneMJIpNlXrl79HN8wIlyxRith39VxbuohGnb5XN779uMEzJXyCPpYoffAbqSg6syzPf5VxNVRQihC62EebPjwSTlSvvT0+9oJ+Lk9Fyg00IZZt18vZJA8dJmDAuhAFvxSkzX0YzGug/N0fJXISQdMjIoSviBWzIUaLei7oDtgx0U3zhwOX3QnBQq2zxkGo4MTo5VF1dYEe3I9KC4k+Xdht3AOkXmd0AiJdMYjj2e16VOWJm3UCKPSgiY+d2Od0GMYowIDAQAB"
mta-sts.attestation.app: &mta_sts_subdomain
- a: &mail_a 192.99.98.22
- aaaa: &mail_aaaa 2607:5300:205:200::472f
- caa: &mail_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/130207648"
- caa: &mail_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/20271371"
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
staging.attestation.app:
- a: 198.98.57.157
- aaaa: 2605:6400:10:aa9:1c0f:44d3:da15:c0ec
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1182490537"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/108989964"
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: 4 2 ef4b234f6dc92f2feef6e334ab38c50d299eea13bb12739fff17e8175c53573b
- txt: *null_spf
ns1.staging.attestation.app: &ns_staging
- a: &ns_staging_a 198.98.56.238
- aaaa: &ns_staging_aaaa 2605:6400:10:c41:de92:c534:326a:711a
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1396615276"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/124333884"
- caa: &caa_iodef 0 iodef "mailto:[email protected]"
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
ns2.staging.attestation.app: *ns_staging
_443._tcp.ns1.staging.attestation.app: &ns_staging_tlsa
- tlsa: 3 1 1 0c7449b868c722bcc5d2d6e51cca4fbdc8990776f15f09bcd88a195d56e7c4d1
_853._tcp.ns1.staging.attestation.app: *ns_staging_tlsa
_443._tcp.ns2.staging.attestation.app: *ns_staging_tlsa
_853._tcp.ns2.staging.attestation.app: *ns_staging_tlsa
www.attestation.app:
- a: *attestation_a
- aaaa: *attestation_aaaa
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
- domain: grapheneos.network
ttl: *default_ttl
records:
ns1.grapheneos.network: *ns1
ns2.grapheneos.network: *ns2
_443._tcp.ns1.grapheneos.network: *ns1_tlsa
_853._tcp.ns1.grapheneos.network: *ns1_tlsa
_443._tcp.ns2.grapheneos.network: *ns2_tlsa
_853._tcp.ns2.grapheneos.network: *ns2_tlsa
# OVH Beauharnois
0.grapheneos.network:
- a: 51.222.159.116
- aaaa: 2607:5300:205:200::2584
- mx: *null_mx
- sshfp: 4 2 9a8876378e235a49e228664b10122a26cd42abca33ad65d995c38331e1f705a7
- txt: *null_spf
# BuyVM Las Vegas
1.grapheneos.network:
- a: 209.141.37.35
- aaaa: 2605:6400:20:387:72d4:dab9:a369:f351
- mx: *null_mx
- sshfp: 4 2 de55978ac1bfdac3b4a4bb2743ac072e14610fbefe5fcb208f987b57ce8d1eb1
- txt: *null_spf
# OVH Gravelines
2.grapheneos.network:
- a: 54.37.41.189
- aaaa: 2001:41d0:304:200::b109
- mx: *null_mx
- sshfp: 4 2 6196ecec20f639a38aa440f494a9623575ac0654b798ab77f037a04820795f6a
- txt: *null_spf
# OVH Singapore
3.grapheneos.network:
- a: 51.79.161.36
- aaaa: 2402:1f00:8000:800::1949
- mx: *null_mx
- sshfp: 4 2 ca9b96fe0da5173ee4098f02c0128dc40173036545bb47c566a9b98765dfafe6
- txt: *null_spf
grapheneos.network:
- lua: &network_lua_a
content: "A \";
local ips_na_east = {'51.222.159.116'}
local ips_na_west = {'209.141.37.35'}
local ips_eu = {'54.37.41.189'}
local ips_sg = {'51.79.161.36'}
local ips
local cn = continentCode()
local cc = countryCode()
local re = regionCode()
local cc_eu = {ae=true, am=true, az=true, bh=true, eg=true, ge=true, il=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, om=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
local us_re_na_west = {ak=true, az=true, ca=true, co=true, hi=true, id=true, ks=true, mt=true, nd=true, ne=true, nm=true, nv=true, ok=true, ['or']=true, ut=true, sd=true, tx=true, wa=true, wy=true}
local ca_re_na_west = {ab=true, bc=true, nt=true, sk=true, yt=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na_east, ips_na_west, ips_sg}
elseif (cn == 'as' or cn == 'oc') then
ips = {ips_sg, ips_na_west, ips_na_east, ips_eu}
elseif ((cc == 'us' and us_re_na_west[re]) or (cc == 'ca' and ca_re_na_west[re]) or cc == 'mx') then
ips = {ips_na_west, ips_na_east, ips_eu, ips_sg}
else
ips = {ips_na_east, ips_na_west, ips_eu, ips_sg}
end
return ifurlup('https://broadcom.psds.grapheneos.org/rtistatus.dat', ips, {backupSelector='all'})[1]\""
ttl: &dynamic_ttl 300
- lua: &network_lua_aaaa
content: "AAAA \";
local ips_na_east = {'2607:5300:205:200::2584'}
local ips_na_west = {'2605:6400:20:387:72d4:dab9:a369:f351'}
local ips_eu = {'2001:41d0:304:200::b109'}
local ips_sg = {'2402:1f00:8000:800::1949'}
local ips
local cn = continentCode()
local cc = countryCode()
local re = regionCode()
local cc_eu = {ae=true, am=true, az=true, bh=true, eg=true, ge=true, il=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, om=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
local us_re_na_west = {ak=true, az=true, ca=true, co=true, hi=true, id=true, ks=true, mt=true, nd=true, ne=true, nm=true, nv=true, ok=true, ['or']=true, ut=true, sd=true, tx=true, wa=true, wy=true}
local ca_re_na_west = {ab=true, bc=true, nt=true, sk=true, yt=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na_east, ips_na_west, ips_sg}
elseif (cn == 'as' or cn == 'oc') then
ips = {ips_sg, ips_na_west, ips_na_east, ips_eu}
elseif ((cc == 'us' and us_re_na_west[re]) or (cc == 'ca' and ca_re_na_west[re]) or cc == 'mx') then
ips = {ips_na_west, ips_na_east, ips_eu, ips_sg}
else
ips = {ips_na_east, ips_na_west, ips_eu, ips_sg}
end
return ifurlup('https://broadcom.psds.grapheneos.org/rtistatus.dat', ips, {backupSelector='all'})[1]\""
ttl: *dynamic_ttl
- caa: &network_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/130087249"
- caa: &network_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/20257739"
- caa: *caa_iodef
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.network
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.network
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.network hostmaster.grapheneos.network {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=vrIeCpGv-UOSpkXfnoTy-zixDMTrIrJq1KRU77ctlaQ
- txt: "yandex-verification: b3fce6bedf3d57f9"
- txt: facebook-domain-verification=2oqt2pmvl6hqiagmm7zpn46bfogvcq
_443._tcp.grapheneos.network: &network_tlsa
- tlsa: 3 1 1 41ad2febc559633f6e153afa21dbfbdb7c1395f21ed79fb88a89a89c864f29a3
_443._tcp.connectivitycheck.grapheneos.network: *network_tlsa
_443._tcp.mta-sts.grapheneos.network: *mta_sts_tlsa
_443._tcp.www.grapheneos.network: *network_tlsa
_dmarc.grapheneos.network:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.network: *_mta-sts
_smtp._tls.grapheneos.network:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.network: &grapheneos_bimi
- txt: "v=BIMI1; l=https://grapheneos.org/bimi.svg"
default._domainkey.grapheneos.network: *grapheneos_dkim
mta-sts.grapheneos.network: *mta_sts_subdomain
connectivitycheck.grapheneos.network: &network_subdomain
- lua: *network_lua_a
- lua: *network_lua_aaaa
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
www.grapheneos.network: *network_subdomain
- domain: grapheneos.online
ttl: *default_ttl
records:
ns1.grapheneos.online: *ns1
ns2.grapheneos.online: *ns2
_443._tcp.ns1.grapheneos.online: *ns1_tlsa
_853._tcp.ns1.grapheneos.online: *ns1_tlsa
_443._tcp.ns2.grapheneos.online: *ns2_tlsa
_853._tcp.ns2.grapheneos.online: *ns2_tlsa
grapheneos.online:
- lua: *network_lua_a
- lua: *network_lua_aaaa
- caa: *network_caa
- caa: *network_caa_staging
- caa: *caa_iodef
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.online
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.online
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.online hostmaster.grapheneos.online {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=rkGfZrJ1QmHSOhN0F-mu6Av1SQzxtzM1ONk76QBQ0Xo
- txt: "yandex-verification: f5675cd6f4757892"
- txt: facebook-domain-verification=gp5x6ttukle4aklh6jajhaldq3v303
_443._tcp.grapheneos.online: *network_tlsa
_443._tcp.connectivitycheck.grapheneos.online: *network_tlsa
_443._tcp.mta-sts.grapheneos.online: *mta_sts_tlsa
_443._tcp.www.grapheneos.online: *network_tlsa
_dmarc.grapheneos.online:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.online: *_mta-sts
_smtp._tls.grapheneos.online:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.online: *grapheneos_bimi
default._domainkey.grapheneos.online: *grapheneos_dkim
mta-sts.grapheneos.online: *mta_sts_subdomain
connectivitycheck.grapheneos.online: *network_subdomain
www.grapheneos.online: *network_subdomain
- domain: grapheneos.org
ttl: *default_ttl
records:
ns1.grapheneos.org:
- a: *ns1_a
- aaaa: *ns1_aaaa
- caa: *ns1_caa
- caa: *ns1_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: 4 2 26f6b833fb1d0ab8fa5d2341f3dc37418e5240382dbaff61ce862f4e47ebe3d8
- txt: *null_spf
ns2.grapheneos.org: *ns2
_443._tcp.ns1.grapheneos.org: *ns1_tlsa
_853._tcp.ns1.grapheneos.org: *ns1_tlsa
_443._tcp.ns2.grapheneos.org: *ns2_tlsa
_853._tcp.ns2.grapheneos.org: *ns2_tlsa
0.ns2.grapheneos.org:
- a: 198.98.53.141
- aaaa: *ns2_aaaa_0
- mx: *null_mx
- sshfp: 4 2 666cd41b78b171fbe617146547e5312a9210ce9f471b61303c3da7864eda32bc
- txt: *null_spf
1.ns2.grapheneos.org:
- a: 205.185.124.155
- aaaa: *ns2_aaaa_1
- mx: *null_mx
- sshfp: 4 2 07a7a4b03d7d7b3108e1cf028e4c10aac8ef0e140c982ed4864512ca65ae56f0
- txt: *null_spf
2.ns2.grapheneos.org:
- a: 107.189.3.168
- aaaa: *ns2_aaaa_2
- mx: *null_mx
- sshfp: 4 2 1bc33eb5d8949b53a2a2cab1163e1ba2543506ae579c4a9e1a37b3e1a3234edd
- txt: *null_spf
geoip.grapheneos.org:
- txt:
content: "ip: %ip, region: %re, country: %cc, continent: %cn"
ttl: 60
# OVH Beauharnois
0.grapheneos.org:
- a: 51.222.156.101
- aaaa: 2607:5300:205:200::29c6
- mx: *null_mx
- sshfp: 4 2 ef9845da6e542a593cbb666026935eb90b8eefe7b70a17d5edfc024985b39306
- txt: *null_spf
# BuyVM Las Vegas
1.grapheneos.org:
- a: 209.141.35.164
- aaaa: 2605:6400:20:1131:8088:e08:84e6:632
- mx: *null_mx
- sshfp: 4 2 5a17966350748c352a3a8869a9609b2b2686786cc197de30bbae5f0cc3cc96bf
- txt: *null_spf
# OVH Gravelines
2.grapheneos.org:
- a: 54.37.41.188
- aaaa: 2001:41d0:304:200::902f
- mx: *null_mx
- sshfp: 4 2 7bb4e86336e9917eeea775b73c94a12b627e135b8fba73829b8866faf0a4075e
- txt: *null_spf
# OVH Singapore
3.grapheneos.org:
- a: 51.79.160.50
- aaaa: 2402:1f00:8000:800::16d6
- mx: *null_mx
- sshfp: 4 2 67bbc371b74adb54907bf5f5f5918c85a0a6a9b50c88050950c3a56aac334100
- txt: *null_spf
grapheneos.org:
- lua: &grapheneos_lua_a
content: "A \";
local ips_na_east = {'51.222.156.101'}
local ips_na_west = {'209.141.35.164'}
local ips_eu = {'54.37.41.188'}
local ips_sg = {'51.79.160.50'}
local ips
local cn = continentCode()
local cc = countryCode()
local re = regionCode()
local cc_eu = {ae=true, am=true, az=true, bh=true, eg=true, ge=true, il=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, om=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
local us_re_na_west = {ak=true, az=true, ca=true, co=true, hi=true, id=true, ks=true, mt=true, nd=true, ne=true, nm=true, nv=true, ok=true, ['or']=true, ut=true, sd=true, tx=true, wa=true, wy=true}
local ca_re_na_west = {ab=true, bc=true, nt=true, sk=true, yt=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na_east, ips_na_west, ips_sg}
elseif (cn == 'as' or cn == 'oc') then
ips = {ips_sg, ips_na_west, ips_na_east, ips_eu}
elseif ((cc == 'us' and us_re_na_west[re]) or (cc == 'ca' and ca_re_na_west[re]) or cc == 'mx') then
ips = {ips_na_west, ips_na_east, ips_eu, ips_sg}
else
ips = {ips_na_east, ips_na_west, ips_eu, ips_sg}
end
return ifurlup('https://grapheneos.org/robots.txt', ips, {backupSelector='all'})[1]\""
ttl: *dynamic_ttl
- lua: &grapheneos_lua_aaaa
content: "AAAA \";
local ips_na_east = {'2607:5300:205:200::29c6'}
local ips_na_west = {'2605:6400:20:1131:8088:e08:84e6:632'}
local ips_eu = {'2001:41d0:304:200::902f'}
local ips_sg = {'2402:1f00:8000:800::16d6'}
local ips
local cn = continentCode()
local cc = countryCode()
local re = regionCode()
local cc_eu = {ae=true, am=true, az=true, bh=true, eg=true, ge=true, il=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, om=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
local us_re_na_west = {ak=true, az=true, ca=true, co=true, hi=true, id=true, ks=true, mt=true, nd=true, ne=true, nm=true, nv=true, ok=true, ['or']=true, ut=true, sd=true, tx=true, wa=true, wy=true}
local ca_re_na_west = {ab=true, bc=true, nt=true, sk=true, yt=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na_east, ips_na_west, ips_sg}
elseif (cn == 'as' or cn == 'oc') then
ips = {ips_sg, ips_na_west, ips_na_east, ips_eu}
elseif ((cc == 'us' and us_re_na_west[re]) or (cc == 'ca' and ca_re_na_west[re]) or cc == 'mx') then
ips = {ips_na_west, ips_na_east, ips_eu, ips_sg}
else
ips = {ips_na_east, ips_na_west, ips_eu, ips_sg}
end
return ifurlup('https://grapheneos.org/robots.txt', ips, {backupSelector='all'})[1]\""
ttl: *dynamic_ttl
- caa: &grapheneos_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/130081862"
- caa: &grapheneos_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/20257076"
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.org
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.org
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.org hostmaster.grapheneos.org {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=QCDUfSSfeAUufP-H3m4f5uvhknjIZVBVVmMSDaFRdz0
- txt: "yandex-verification: 10fdf27f68b946c5"
- txt: facebook-domain-verification=jv1fv1fh38fz7v1yi5jai9e0c6sid2
_atproto.grapheneos.org:
- txt: "did=did:plc:kym5w7pcv4v7xbz7lvbj24na"
_443._tcp.grapheneos.org: &grapheneos_tlsa
- tlsa: 3 1 1 162362745255ede81d6bcbb25ba8bdcc6254cc17f39db3ad6f35d9c5ac8c19ef
_443._tcp.mta-sts.grapheneos.org: *mta_sts_tlsa
_443._tcp.www.grapheneos.org: *grapheneos_tlsa
_dmarc.grapheneos.org:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.org: *_mta-sts
_smtp._tls.grapheneos.org:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.org: *grapheneos_bimi
default._domainkey.grapheneos.org: *grapheneos_dkim
mta-sts.grapheneos.org: *mta_sts_subdomain
www.grapheneos.org: &grapheneos_subdomain
- lua: *grapheneos_lua_a
- lua: *grapheneos_lua_aaaa
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
dnscheck.grapheneos.org:
- ns:
content: ns1.grapheneos.org
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.org
ttl: *stable_ttl
staging.grapheneos.org:
- a: 199.195.250.78
- aaaa: 2605:6400:10:9d6:6d84:e183:acda:16d7
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1172126677"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/108221874"
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: 4 2 ba61a88c88b406e2266dab834c99fa4159f11c5b2d840223e2930fed5be4fcef
- txt: *null_spf
_443._tcp.staging.grapheneos.org:
- tlsa: 3 1 1 5df9fbeb15ef8a94396b91c08836270c897ae2499c50e27e433ce74dc9111782
ns1.staging.grapheneos.org:
- a: *ns_staging_a
- aaaa: *ns_staging_aaaa
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/1396615276"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/124333884"
- caa: &caa_iodef 0 iodef "mailto:[email protected]"
- https: *https
- mx: *null_mx
- sshfp: 4 2 10d4eff8189e9b5f83066b0f70260fd379fd0657f8012c27abf8df6e53c9fd81
- txt: *null_spf
ns2.staging.grapheneos.org: *ns_staging
_443._tcp.ns1.staging.grapheneos.org: *ns_staging_tlsa
_853._tcp.ns1.staging.grapheneos.org: *ns_staging_tlsa
_443._tcp.ns2.staging.grapheneos.org: *ns_staging_tlsa
_853._tcp.ns2.staging.grapheneos.org: *ns_staging_tlsa
time.grapheneos.org: &org_network_subdomain
- lua: *network_lua_a
- lua: *network_lua_aaaa
- caa: *network_caa
- caa: *network_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
_443._tcp.time.grapheneos.org: *network_tlsa
remoteprovisioning.grapheneos.org: *org_network_subdomain
_443._tcp.remoteprovisioning.grapheneos.org: *network_tlsa
widevineprovisioning.grapheneos.org: *org_network_subdomain
_443._tcp.widevineprovisioning.grapheneos.org: *network_tlsa
broadcom.psds.grapheneos.org: *org_network_subdomain
_443._tcp.broadcom.psds.grapheneos.org: *network_tlsa
samsung.psds.grapheneos.org: *org_network_subdomain
_443._tcp.samsung.psds.grapheneos.org: *network_tlsa
qualcomm.psds.grapheneos.org: *org_network_subdomain
_443._tcp.qualcomm.psds.grapheneos.org: *network_tlsa
supl.grapheneos.org: *org_network_subdomain
_443._tcp.supl.grapheneos.org: *network_tlsa
_7275._tcp.supl.grapheneos.org:
- tlsa: 3 1 1 71615ea3c0c223a68cb3d1f1d2957d58b2aa0740db5684ff31a54381631711e7
nominatim.grapheneos.org: *org_network_subdomain
_443._tcp.nominatim.grapheneos.org: *network_tlsa
gs-loc.apple.grapheneos.org: *org_network_subdomain
_443._tcp.gs-loc.apple.grapheneos.org: *network_tlsa
element.grapheneos.org:
- a: &matrix_a 51.79.51.42
- aaaa: &matrix_aaaa 2607:5300:205:200::26e1
- caa: &matrix_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/124662806"
- caa: &matrix_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/19642445"
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
_443._tcp.element.grapheneos.org: &matrix_tlsa
- tlsa: 3 1 1 5fdbac0be6ee09e8b118df22392f90cc0421eaa05993900da27b8be543120dd8
matrix.grapheneos.org:
- a: *matrix_a
- aaaa: *matrix_aaaa
- caa: *matrix_caa
- caa: *matrix_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- sshfp: 4 2 1ee56669970c01bfd289a466e21062312afd7536d6f63d09e11778010aba41cc
- txt: *grapheneos_spf
_443._tcp.matrix.grapheneos.org: *matrix_tlsa
_443._tcp.mta-sts.matrix.grapheneos.org: *mta_sts_tlsa
_mta-sts.matrix.grapheneos.org: *_mta-sts
_smtp._tls.matrix.grapheneos.org:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.matrix.grapheneos.org: *grapheneos_bimi
default._domainkey.matrix.grapheneos.org: *grapheneos_dkim
mta-sts.matrix.grapheneos.org: *mta_sts_subdomain
discuss.grapheneos.org:
- a: 51.79.52.38
# IPv6 interacts badly with IP-based spam filtering
#- aaaa: 2607:5300:205:200::3c4
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/581421616"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/56904264"
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- sshfp: 4 2 8191c5fa45eba387c4626f69cbe36d87ed23a01ae69b9f223831c1673a438f60
- txt: *grapheneos_spf
_443._tcp.discuss.grapheneos.org:
- tlsa: 3 1 1 d78f2102f1286335fdbcfc50bb6b633b7ea5ee2e4d25fc4cd24168808a63ef81
_443._tcp.mta-sts.discuss.grapheneos.org: *mta_sts_tlsa
_mta-sts.discuss.grapheneos.org: *_mta-sts
_smtp._tls.discuss.grapheneos.org:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.discuss.grapheneos.org: *grapheneos_bimi
default._domainkey.discuss.grapheneos.org: *grapheneos_dkim
mta-sts.discuss.grapheneos.org: *mta_sts_subdomain
mail.grapheneos.org:
- a: *mail_a
- aaaa: *mail_aaaa
- caa: *mail_caa
- caa: *mail_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- sshfp: 4 2 d81687f26b1ef2a856585afe45e96e8e28aef4144d040ad070eb56df2267cd02
- txt: *grapheneos_spf
_25._tcp.mail.grapheneos.org: &mail_tlsa
- tlsa: 3 1 1 667717e5d9e5243904928cdff1349cba2072a70400278d4c5e282c32dd0b9f81
_443._tcp.mail.grapheneos.org: *mta_sts_tlsa
_443._tcp.mta-sts.mail.grapheneos.org: *mta_sts_tlsa
_465._tcp.mail.grapheneos.org: *mail_tlsa
_993._tcp.mail.grapheneos.org: *mail_tlsa
_mta-sts.mail.grapheneos.org: *_mta-sts
_smtp._tls.mail.grapheneos.org:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.mail.grapheneos.org: *grapheneos_bimi
default._domainkey.mail.grapheneos.org: *grapheneos_dkim
mta-sts.mail.grapheneos.org:
- a: *mail_a
- aaaa: *mail_aaaa
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
# OVH Beauharnois
0.releases.grapheneos.org:
- a: 167.114.114.114
- aaaa: 2607:5300:201:3100::6210
- mx: *null_mx
- sshfp: 4 2 1995238ac7f72f17a74b0930c3b511d29d3df0a9e3bc203ed8e5a74f1dda4637
- txt: *null_spf
# OVH Beauharnois
1.releases.grapheneos.org:
- a: 51.79.74.15
- aaaa: 2607:5300:205:200::2441
- mx: *null_mx
- sshfp: 4 2 10d95e196a4aa367d7c52c11c7b78d2d4cc12c53c4696e804efdc4fa019487b1
- txt: *null_spf
# OVH Beauharnois
2.releases.grapheneos.org:
- a: 51.222.159.48
- aaaa: 2607:5300:205:200::3f46
- mx: *null_mx
- sshfp: 4 2 7be1b8a2a3c10fd8ae352ac495da6cf738ebf6613d01074261833bc5df59cb80
- txt: *null_spf
# OVH Beauharnois
3.releases.grapheneos.org:
- a: 148.113.200.36
- aaaa: 2607:5300:205:200::5854
- mx: *null_mx
- sshfp: 4 2 95e01c29f2a0b6311f18f0e413ee57b19bd4362a02177aa82c154dc6c56105c9
- txt: *null_spf
# OVH Gravelines
4.releases.grapheneos.org:
- a: 51.75.22.47
- aaaa: 2001:41d0:304:200::9f9a
- mx: *null_mx
- sshfp: 4 2 5ef22e355aae705c78d5a885497cf9df677c4773d3574b0d2fa0b64867c71a83
- txt: *null_spf
# OVH Gravelines
5.releases.grapheneos.org:
- a: 141.94.71.72
- aaaa: 2001:41d0:304:200::a687
- mx: *null_mx
- sshfp: 4 2 53bb0626ca839d58c68e44739cb2b18186df979f4cc4fb4c101fdaeb2426ab8d
- txt: *null_spf
# OVH Frankfurt
6.releases.grapheneos.org:
- a: 135.125.183.155
- aaaa: 2001:41d0:701:1100::2ec9
- mx: *null_mx
- sshfp: 4 2 625bce6286240c1d0a9961746b23b7876a44ceaf49ffa90c29e2127dc4971fc7
- txt: *null_spf
# OVH Frankfurt
7.releases.grapheneos.org:
- a: 141.95.0.242
- aaaa: 2001:41d0:701:1100::3e56
- mx: *null_mx
- sshfp: 4 2 1ce631b4e4fc2e97c8f6c619ddaf09119ecc234f2c75ac2220be35a093b902fd
- txt: *null_spf
releases.grapheneos.org: &releases
- lua: &releases_lua_a
content: "A \";
local ips_na = {'167.114.114.114', '51.79.74.15', '51.222.159.48', '148.113.200.36'}
local ips_eu = {'51.75.22.47', '141.94.71.72', '135.125.183.155', '141.95.0.242'}
local ips
local cn = continentCode()
local cc = countryCode()
local cc_eu = {ae=true, af=true, am=true, az=true, bd=true, bh=true, bt=true, eg=true, ge=true, il=true, ['in']=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, lk=true, mv=true, np=true, om=true, pk=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na}
else
ips = {ips_na, ips_eu}
end
local all = ifurlup('https://releases.grapheneos.org/comet-stable', ips, {selector='all', backupSelector='all'})
return {all[1], all[2], all[3], all[4]}\""
ttl: *dynamic_ttl
- lua: &releases_lua_aaaa
content: "AAAA \";
local ips_na = {'2607:5300:201:3100::6210', '2607:5300:205:200::2441', '2607:5300:205:200::3f46', '2607:5300:205:200::5854'}
local ips_eu = {'2001:41d0:304:200::9f9a', '2001:41d0:304:200::a687', '2001:41d0:701:1100::2ec9', '2001:41d0:701:1100::3e56'}
local ips
local cn = continentCode()
local cc = countryCode()
local cc_eu = {ae=true, af=true, am=true, az=true, bd=true, bh=true, bt=true, eg=true, ge=true, il=true, ['in']=true, iq=true, ir=true, jo=true, kg=true, kw=true, kz=true, lb=true, lk=true, mv=true, np=true, om=true, pk=true, ps=true, qa=true, ru=true, sa=true, sy=true, tj=true, tm=true, tr=true, uz=true, ye=true}
if (cn == 'af' or cn == 'eu' or cc_eu[cc]) then
ips = {ips_eu, ips_na}
else
ips = {ips_na, ips_eu}
end
local all = ifurlup('https://releases.grapheneos.org/comet-stable', ips, {selector='all', backupSelector='all'})
return {all[1], all[2], all[3], all[4]}\""
ttl: *dynamic_ttl
- caa: &releases_caa 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/130107283"
- caa: &releases_caa_staging 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/20259697"
- caa: &releases_iodef 0 iodef "mailto:[email protected]"
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
_443._tcp.releases.grapheneos.org: &releases_tlsa
- tlsa: 3 1 1 e4454efd9b9b5f379cd2a7d11b3c41fc27e1fc5c2d73e1aa65755ae1c818b26a
apps.grapheneos.org: *releases
_443._tcp.apps.grapheneos.org: *releases_tlsa
# special zone without DNSSEC since results are unused and queries are randomized
- domain: dnscheck.grapheneos.org
ttl: *default_ttl
records:
dnscheck.grapheneos.org:
- ns:
content: ns1.grapheneos.org
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.org
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.org hostmaster.grapheneos.org {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
"*.dnscheck.grapheneos.org":
# RFC 5735 TEST-NET-1
- a: 192.0.2.1
# RFC 6666 Discard Prefix
- aaaa: 100::1
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
- domain: seamlessupdate.app
ttl: *default_ttl
records:
ns1.seamlessupdate.app: *ns1
ns2.seamlessupdate.app: *ns2
_443._tcp.ns1.seamlessupdate.app: *ns1_tlsa
_853._tcp.ns1.seamlessupdate.app: *ns1_tlsa
_443._tcp.ns2.seamlessupdate.app: *ns2_tlsa
_853._tcp.ns2.seamlessupdate.app: *ns2_tlsa
seamlessupdate.app:
- lua: *releases_lua_a
- lua: *releases_lua_aaaa
- caa: *releases_caa
- caa: *releases_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.seamlessupdate.app
ttl: *stable_ttl
- ns:
content: ns2.seamlessupdate.app
ttl: *stable_ttl
- soa:
content: ns1.seamlessupdate.app hostmaster.seamlessupdate.app {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=aYDRbuNH4up3btfMlzLQvaHtNjCPtBwyJiMvKDr1-5M
- txt: "yandex-verification: cba8ef4619bc43f5"
- txt: facebook-domain-verification=dmk338rg4stydpqilfadoob4skfx7y
_443._tcp.seamlessupdate.app: *releases_tlsa
_443._tcp.mta-sts.seamlessupdate.app: *mta_sts_tlsa
_443._tcp.www.seamlessupdate.app: *releases_tlsa
_dmarc.seamlessupdate.app:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.seamlessupdate.app: *_mta-sts
_smtp._tls.seamlessupdate.app:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._domainkey.seamlessupdate.app: *grapheneos_dkim
mta-sts.seamlessupdate.app: *mta_sts_subdomain
www.seamlessupdate.app:
- lua: *releases_lua_a
- lua: *releases_lua_aaaa
- caa: *releases_caa
- caa: *releases_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
- domain: vanadium.app
ttl: *default_ttl
records:
ns1.vanadium.app: *ns1
ns2.vanadium.app: *ns2
_443._tcp.ns1.vanadium.app: *ns1_tlsa
_853._tcp.ns1.vanadium.app: *ns1_tlsa
_443._tcp.ns2.vanadium.app: *ns2_tlsa
_853._tcp.ns2.vanadium.app: *ns2_tlsa
vanadium.app:
- lua: *grapheneos_lua_a
- lua: *grapheneos_lua_aaaa
- caa: *grapheneos_caa
- caa: *grapheneos_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.vanadium.app
ttl: *stable_ttl
- ns:
content: ns2.vanadium.app
ttl: *stable_ttl
- soa:
content: ns1.vanadium.app hostmaster.vanadium.app {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=zh9p055UIIdC1M-I6zo36hEpnuiHntOHbMC2hDGXdtA
- txt: "yandex-verification: 369dbb9acc84cb72"
- txt: facebook-domain-verification=copj7wgy2hwkf6cowe6o2s699d46o6
_443._tcp.vanadium.app: *grapheneos_tlsa
_443._tcp.mta-sts.vanadium.app: *mta_sts_tlsa
_443._tcp.www.vanadium.app: *grapheneos_tlsa
_dmarc.vanadium.app:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.vanadium.app: *_mta-sts
_smtp._tls.vanadium.app:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.vanadium.app: *grapheneos_bimi
default._domainkey.vanadium.app: *grapheneos_dkim
mta-sts.vanadium.app: *mta_sts_subdomain
www.vanadium.app: *grapheneos_subdomain
update.vanadium.app: *org_network_subdomain
_443._tcp.update.vanadium.app: *network_tlsa
dl.vanadium.app: *org_network_subdomain
_443._tcp.dl.vanadium.app: *network_tlsa
- domain: grapheneos.social
ttl: *default_ttl
records:
ns1.grapheneos.social: *ns1
ns2.grapheneos.social: *ns2
_443._tcp.ns1.grapheneos.social: *ns1_tlsa
_853._tcp.ns1.grapheneos.social: *ns1_tlsa
_443._tcp.ns2.grapheneos.social: *ns2_tlsa
_853._tcp.ns2.grapheneos.social: *ns2_tlsa
grapheneos.social:
- a: &social_a 51.222.159.14
- aaaa: &social_aaaa 2607:5300:205:200::5e3f
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/843621317"
- caa: 0 issue "letsencrypt.org; validationmethods=http-01; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/77600664"
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.social
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.social
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.social hostmaster.grapheneos.social {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: 4 2 079a217e085877ea780d77a0bf0cd4ef226b4b27b8f8b954ee7821f2a1cbaf8c
- txt: *grapheneos_spf
- txt: google-site-verification=1udi6RI56KjPtFGO38lCQImhEmY6XFxX1hVsdEK4_gw
- txt: "yandex-verification: ec33ee307706436f"
- txt: facebook-domain-verification=nn8qfg6l9xhnqkkizdgn97taizy6hj
_443._tcp.grapheneos.social: &social_tlsa
- tlsa: 3 1 1 5e41e70cf0af6198da8129d34a83696cd1edbbd36886cec5a4f04546c81c87c8
_443._tcp.mta-sts.grapheneos.social: *mta_sts_tlsa
_443._tcp.www.grapheneos.social: *social_tlsa
_dmarc.grapheneos.social:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.social: *_mta-sts
_smtp._tls.grapheneos.social:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.social: *grapheneos_bimi
default._domainkey.grapheneos.social: *grapheneos_dkim
mta-sts.grapheneos.social: *mta_sts_subdomain
www.grapheneos.social:
- a: *social_a
- aaaa: *social_aaaa
- https: *https
- mx: *null_mx
- sshfp: *null_sshfp
- txt: *null_spf
# reserved grapheneos.tld domains
- domain: grapheneos.app
ttl: *default_ttl
records:
ns1.grapheneos.app: *ns1
ns2.grapheneos.app: *ns2
_443._tcp.ns1.grapheneos.app: *ns1_tlsa
_853._tcp.ns1.grapheneos.app: *ns1_tlsa
_443._tcp.ns2.grapheneos.app: *ns2_tlsa
_853._tcp.ns2.grapheneos.app: *ns2_tlsa
grapheneos.app:
- lua: *grapheneos_lua_a
- lua: *grapheneos_lua_aaaa
- caa: *grapheneos_caa
- caa: *grapheneos_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.app
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.app
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.app hostmaster.grapheneos.app {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=9SR3Ol5Vtsn-T1o-SNKjdwBME_ljhDGVmA1q429Tddg
- txt: "yandex-verification: 7aae471af36dc967"
- txt: facebook-domain-verification=8ozq60jp4da846m4inbg84vznj4w2a
_443._tcp.grapheneos.app: *grapheneos_tlsa
_443._tcp.mta-sts.grapheneos.app: *mta_sts_tlsa
_443._tcp.www.grapheneos.app: *grapheneos_tlsa
_dmarc.grapheneos.app:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.app: *_mta-sts
_smtp._tls.grapheneos.app:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.app: *grapheneos_bimi
default._domainkey.grapheneos.app: *grapheneos_dkim
mta-sts.grapheneos.app: *mta_sts_subdomain
www.grapheneos.app: *grapheneos_subdomain
- domain: grapheneos.ca
ttl: *default_ttl
records:
ns1.grapheneos.ca: *ns1
ns2.grapheneos.ca: *ns2
_443._tcp.ns1.grapheneos.ca: *ns1_tlsa
_853._tcp.ns1.grapheneos.ca: *ns1_tlsa
_443._tcp.ns2.grapheneos.ca: *ns2_tlsa
_853._tcp.ns2.grapheneos.ca: *ns2_tlsa
grapheneos.ca:
- lua: *grapheneos_lua_a
- lua: *grapheneos_lua_aaaa
- caa: *grapheneos_caa
- caa: *grapheneos_caa_staging
- caa: *caa_iodef
- https: *https
- mx: *grapheneos_mx
- mx: *grapheneos_mx_backup
- ns:
content: ns1.grapheneos.ca
ttl: *stable_ttl
- ns:
content: ns2.grapheneos.ca
ttl: *stable_ttl
- soa:
content: ns1.grapheneos.ca hostmaster.grapheneos.ca {serial} 3600 1800 1209600 3600
ttl: *stable_ttl
- sshfp: *null_sshfp
- txt: *grapheneos_spf
- txt: google-site-verification=FvV0zEISHbEiaDmI2yDdc7Di7AL98pcxCdbA0PKzMeQ
- txt: "yandex-verification: b0eb1a78fb9fb370"
- txt: facebook-domain-verification=5p9lqhra1f09c7ibccdw4cfsk8lg45
_443._tcp.grapheneos.ca: *grapheneos_tlsa
_443._tcp.mta-sts.grapheneos.ca: *mta_sts_tlsa
_443._tcp.www.grapheneos.ca: *grapheneos_tlsa
_dmarc.grapheneos.ca:
- txt: "v=DMARC1; p=reject; adkim=s; aspf=s; fo=1; rua=mailto:[email protected]; ruf=mailto:[email protected]"
_mta-sts.grapheneos.ca: *_mta-sts
_smtp._tls.grapheneos.ca:
- txt: "v=TLSRPTv1; rua=mailto:[email protected]"
default._bimi.grapheneos.ca: *grapheneos_bimi
default._domainkey.grapheneos.ca: *grapheneos_dkim
mta-sts.grapheneos.ca: *mta_sts_subdomain
www.grapheneos.ca: *grapheneos_subdomain