How to set up SPF record for mail in static DNS

How to set up SPF record for mail in static DNS

SPF is the acronym for Sender Policy Framework, a protection against address forgery for sending email. It identifies SMTP email servers authorized for the transport of messages through  the domain name records (DNS).
 
Its meant, for example, to stop messages from a sender false_user@example.com from sending emails using machines not authorized by our domain for that purpose.
 
To configure an SPF record, go directly to Manage DNS from the "List of services" of your control panel and follow the steps below.
 
 
1.- Add record
In the "DNS Records" list click on New Record and in "Record Type" choose the TXT/SPF option.
 
 
Indicate the subdomain, the value and save the record.
 
 
 
How is it configured?
This protocol is configured using the TXT (DNS) record and generally looks as follows.
 Subdomain: @
Value: v=spf1 mx a ptr ip4:46.16.60.0/23 include:cdmon.com include:srv.cat ~all
 
Where:
defines the SPF version used (version1)
record of the DNS for the domain
ptr authorizes the machines under the domain
IP4 v4 IP addresses
IP6 v6 IP addresses
~all Disallows machines that do not fit with that which has been explicitly authorized
 
Once you have entered all the data, save and the information will be stored.
You can find more information at open-spf.org/SPF_Record_Syntax
 
2.-Propagation
You already have the SPF record created. Now, you only have to wait for the changes to propagate, an action that may take about five minutes.
 
 
For more information, please contact us.

    • Related Articles

    • How to set up the SRV record for mail in static DNS

      SRV is a DNS record where information about the available services of the domain is specified. In practical terms, this record is required in protocols such as SIP or XMPP, where information is queried to determine where to find the service. For ...
    • How to set up a TXT record

      A TXT record is a type of DNS record that provides text information to external sources outside our domain. The TXT record not only allows you to enter any type of information in text format, but nowadays, combined with the SPF protocol, it can be ...
    • How to set up email or record MX

      The MX Record (Mail Exchanger Record) is the record that allows the reception of mail. It specifies the mail servers that the domain has. An MX record always points to an A record, it never points to a CNAME. To configure the mail record or MX record ...
    • What is the static DNS server and how we can modify it

      DNS is a Domain Name System, distributed naming system for resources connected to the Internet. In cdmon Static DNS means the resources that it points to are assigned constant, non-changeable IP (as in opposition to Dynamic DNS system). DNS servers ...
    • How to set up a CNAME record

      Register domain online A CNAME Record (Canonical Name Record) is the equivalent of an alias for another record. It is used when one or multiple records need to point to the same record. If that record points to an IP address and the others point to ...