# Manage DNS records

## Manage DNS records

DNS records connect your domain to servers and services.

### Common record types

* **A**: points a name to an IPv4 address.
* **AAAA**: points a name to an IPv6 address.
* **CNAME**: alias one name to another name.
* **MX**: mail routing.
* **TXT**: verification and email auth (SPF/DKIM/DMARC).

### Typical setups

#### Website on a VPS

* `A` record for `@` → your VPS IPv4
* Optional `A` record for `www` → your VPS IPv4, or `CNAME www → @`

#### Email deliverability

* SPF (TXT)
* DKIM (TXT)
* DMARC (TXT)

{% hint style="warning" %}
Bad MX/TXT records can break email. Make one change at a time.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.prevps.com/domains/manage-dns-records.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
