DNS: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
</syntaxhighlight>
</syntaxhighlight>


== Type of Records ==
* SOA
<syntaxhighlight lang="bash">
objclt.ca. IN SOA dns.objclt.ca. webmaster.objclt.ca. (
2009010605
7200
3600
1209600
38400 )
</syntaxhighlight>
* NS
<syntaxhighlight lang="bash">
objclt.ca. IN NS dns.objclt.ca.
</syntaxhighlight>
* MX
<syntaxhighlight lang="bash">
objclt.ca. IN MX 10 mail.objclt.ca.
</syntaxhighlight>
* A
<syntaxhighlight lang="bash">
objclt.ca. IN A 69.70.43.62
</syntaxhighlight>
* CNAME
* TXT
<syntaxhighlight lang="bash">
objclt.ca. IN TXT "v=spf1 a mx a:mail.objclt.ca ip4:69.70.43.62 -all"
</syntaxhighlight>
== Sender Permitted From ==
== OpenDkim ==
== DMARC ==
== DNSSEC Key Signin ==
== DNS Validation ==
* Google
<syntaxhighlight lang="bash">
@ IN TXT google-site-verification=_C1V8AhaVWFwNQn4fO5Id7IXbQTgcC67ItmH9r4SABY
</syntaxhighlight>




== Usefull Tools ==
== Usefull Tools ==
* Configuration Tools
** [https://webmin.com webmin]
* Test Mx Record
* Test Mx Record
** [https://mxtoolbox.com/MXLookup.aspx mxtoolbox]
** [https://mxtoolbox.com/MXLookup.aspx mxtoolbox]
Line 15: Line 61:
** [https://tools.wordtothewise.com/spf wordtothewise.com]   
** [https://tools.wordtothewise.com/spf wordtothewise.com]   
** [https://www.kitterman.com/spf/validate.html kitterman.com]
** [https://www.kitterman.com/spf/validate.html kitterman.com]
== Secondary DNS Server ==
* buddyns.com
* [https://www.buddyns.com/buddyboard/account buddyns.com]

Latest revision as of 05:38, 22 April 2025

Software Installation

  • Install Bind
apt-get install bind9 bind9utils bind9-doc

Type of Records

  • SOA
objclt.ca.	IN	SOA	dns.objclt.ca. webmaster.objclt.ca. (
			2009010605
			7200
			3600
			1209600
			38400 )
  • NS
objclt.ca.	IN	NS	dns.objclt.ca.
  • MX
objclt.ca.	IN	MX	10 mail.objclt.ca.
  • A
objclt.ca.	IN	A	69.70.43.62
  • CNAME
  • TXT
objclt.ca.	IN	TXT	"v=spf1 a mx a:mail.objclt.ca ip4:69.70.43.62 -all"


Sender Permitted From

OpenDkim

DMARC

DNSSEC Key Signin

DNS Validation

  • Google
@		IN	TXT		google-site-verification=_C1V8AhaVWFwNQn4fO5Id7IXbQTgcC67ItmH9r4SABY


Usefull Tools

Secondary DNS Server