From 053a3530b515aa4990fd21bd001020eabe1e4f05 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Fri, 8 Apr 2022 21:40:58 +0100 Subject: [PATCH] add notes on namecheap srv records --- computery_stuff/namecheap.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 computery_stuff/namecheap.md diff --git a/computery_stuff/namecheap.md b/computery_stuff/namecheap.md new file mode 100755 index 0000000..ecb04dd --- /dev/null +++ b/computery_stuff/namecheap.md @@ -0,0 +1,30 @@ +--- +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. +``` +