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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南