31 lines
815 B
Markdown
Executable File
31 lines
815 B
Markdown
Executable File
---
|
|
author: Akbar Rahman
|
|
date: \today
|
|
title: Namecheap DNS
|
|
tags: []
|
|
uuid: d4d9fa2b-3d4c-44f7-a44d-12b0410be633
|
|
---
|
|
|
|
# SRV Records not Showing up on DNS Servers
|
|
|
|
> There is a bug on Namecheap's DNS configuration interface.
|
|
> When defining a SRV Record you must write the subdomain in the protocol box aswell.
|
|
> After you save that entry, a visual bug kicks in and the protocol box now only shows the protocol
|
|
> itself, but in the backend it's saved as protocol+subdomain, as it should be.
|
|
>
|
|
> ~ [exore13](https://www.spigotmc.org/threads/solved-multiple-servers-namecheap-srv-record-config.517697/)
|
|
|
|
|
|
So say your SRV record looks something like this:
|
|
|
|
```
|
|
_minecraft _tcp 0 5 25566 peen.mc.alv.cx.
|
|
```
|
|
|
|
You'll have to enter this instead:
|
|
|
|
```
|
|
_minecraft _tcp.peen.mc 0 5 25566 peen.mc.alv.cx.
|
|
```
|
|
|