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?

已提问 4 个月前161 查看次数
2 回答
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
专家
已回答 4 个月前
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
专家
Mike_L
已回答 4 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则