Yes, both our Linux and Windows systems allow you to manage your domain's DNS records. You can create custom A, CNAME, MX, TXT and other types of records using your hosting account's respective control panel. This gives you direct control without depending on external DNS providers, enabling faster updates when changing server IPs, configuring email delivery, or verifying domain ownership.

DNS management is an advanced feature. Please only edit your domain's DNS records if you understand what you are doing. Incorrect entries can render your website unreachable, disrupt email services, or expose security gaps. Changes propagate across global DNS caches over minutes to 48 hours, so test thoroughly before implementing production modifications.

#DNS Record Fundamentals

The Domain Name System translates human-readable names like example.com into machine-readable IP addresses. When you host a domain, the associated records tell recursive resolvers where to direct traffic for web requests, email, subdomains, and validation tasks. Managing these records from within your hosting control panel keeps configuration centralized, simplifies maintenance, and avoids the latency or cost of third-party DNS services. Common scenarios include pointing a new domain to your hosted application, creating subdomains for APIs or staging sites, and setting up SPF/DKIM records to improve email deliverability.

#Commonly Supported Record Types

  • A Record: Maps a hostname to an IPv4 address. Essential for directing your root domain or subdomains to your server's IP.
  • AAAA Record: The IPv6 equivalent of an A record, used for modern networks that support IPv6 addressing.
  • CNAME Record: Creates an alias that points one name to another. Frequently used for www variants or CDN configurations.
  • MX Record: Defines which mail servers accept email for the domain. Priority values determine failover order.
  • TXT Record: Stores arbitrary text, commonly used for SPF policies, DKIM keys, Google site verification, or other validation strings.
  • Additional types such as NS for nameservers, SRV for service location, and others are available depending on the specific control panel interface.

#Accessing and Editing Records in the Control Panel

Log in to your hosting account and launch the control panel assigned to your Linux or Windows plan. Navigate to the domain management or DNS zone editor section, then select the target domain. Existing records appear in a tabular list. To add a new record, choose the type from a dropdown, enter the host name (use @ for the root domain), provide the destination value, set an appropriate TTL (typically 3600 seconds), and save. Edits follow the same path: locate the record, modify fields, and apply changes. Deletions are equally straightforward but should be performed with caution.

ini
$ORIGIN example.com.
@       IN  A       192.0.2.1
www     IN  CNAME   @
@       IN  MX  10  mail.example.com.
@       IN  TXT     "v=spf1 include:_spf.example.com ~all"

#Typical Fields in the Record Editor

  • Type: Select A, CNAME, MX, TXT, etc.
  • Name/Host: The subdomain or @ for apex.
  • Value/Data: IP address, target hostname, or text string.
  • Priority: Used mainly for MX records.
  • TTL: Time in seconds that resolvers should cache the record.

#Best Practices and Critical Cautions

Before making changes, record the current zone state so you can revert if needed. Validate new records with command-line tools such as dig or online DNS lookup services after propagation. Avoid overly short TTL values on production records because they increase query load. When configuring MX records, ensure the target mail servers are reachable and properly set up. Remember that this is an advanced feature—only edit your domain's DNS records if you understand what you are doing. A single misplaced dot or incorrect IP can take your entire domain offline.

For complex setups, consider the interaction between DNS records and your web server configuration. An A record must match the IP bound to your site in the hosting environment. Similarly, email-related records must align with the mail server software running on the platform.

#Practical Takeaway

The built-in DNS tools in your Linux and Windows control panels deliver the flexibility needed for professional hosting environments. Use them to maintain precise control over resolution behavior, but always verify changes and keep backups of working configurations. For further reading, review the domain setup and propagation guides available in the knowledge base or open a support ticket if you encounter unexpected behavior after edits.