Route53 health check for UDP

0

I would like to setup a route53 failover record for our syslog server running over port 514/udp. But there does not seem to be a UDP check. There is a TCP check but no UDP. I would very much like to avoid using a LoadBalancer.

Any ideas?

preguntada hace 4 meses161 visualizaciones
2 Respuestas
0

Hello.

As you know, Route53 health checks use HTTP, HTTPS, TCP, etc.
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-values.html
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-simple-configs.html

You create health checks for the resources that you can't create alias records for, such as EC2 instances or servers in your own data center. You specify how to send health-checking requests to the resource: which protocol to use (HTTP, HTTPS, or TCP), which IP address and port to use, and, for HTTP/HTTPS health checks, a domain name and path.

Therefore, if you want to monitor a protocol that uses UDP, you will need to create a monitoring mechanism using Lambda etc. for separate monitoring.

profile picture
EXPERTO
respondido hace 4 meses
0

As Riku mentioned, Route53 health checks do not support UDP.

One option is to do TCP check on a TCP service on your server. This can be HTTP web server on port 80, or perhaps syslog on TCP 514. You will need to enable Syslog TCP for the latter option.

You can configure your server firewall (or EC2 security group) to restrict inbound TCP access to Route 53 Health Check IP prefixes only.

AWS
EXPERTO
Mike_L
respondido hace 4 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas