> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bunny.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Custom Nameservers

> Use your own branded nameservers with the bunny.net cPanel plugin.

By default, the bunny.net cPanel plugin uses `kiki.bunny.net` and `coco.bunny.net` as nameservers. You can replace these with your own branded nameservers (e.g., `ns1.example.com`).

## Set up custom nameservers

<Steps>
  <Step title="Create DNS records">
    Add the following records to your domain's DNS zone, pointing your nameservers to bunny.net:

    ```
    ns1.example.com.  IN  A     91.200.176.1
    ns1.example.com.  IN  AAAA  2400:52e0:fff0::1
    ns2.example.com.  IN  A     109.104.147.1
    ns2.example.com.  IN  AAAA  2400:52e0:fff2::1
    ```
  </Step>

  <Step title="Update the configuration file">
    Edit `/etc/bunnynet.conf` and add your custom nameservers:

    ```
    NS1=ns1.example.com
    NS2=ns2.example.com
    SOA_EMAIL=hostmaster@example.com
    ```
  </Step>

  <Step title="Restart the daemon">
    Apply the changes by restarting the daemon:

    ```bash theme={null}
    systemctl restart bunnynet-cpanel-daemon
    ```
  </Step>
</Steps>

The plugin will now display your custom nameservers instead of the default bunny.net ones.
