Ingest Kubernetes DNS logs from AWS
This page describes how to ingest Kubernetes-related DNS logs from AWS to Dynatrace with containers running in an Amazon Elastic Kubernetes Service (EKS) Cluster.
Kubernetes and domain name resolution
In EKS, service discovery and domain name resolution are both done via the CoreDNS add-on, which is a flexible, extensible DNS server that can serve as the Kubernetes cluster DNS.
When you launch an Amazon EKS cluster with at least one node, two replicas of the CoreDNS image are deployed by default, regardless of the number of nodes deployed in your cluster.
Read more about working with the CoreDNS Amazon EKS add-on.
CoreDNS
When a pod in an EKS cluster tries to resolve the domain name www.dynatrace.com
, the request is first sent to the CoreDNS service. CoreDNS keeps a local registry of the registered services in the EKS cluster and a DNS cache, to provide faster responses to incoming DNS queries.
CoreDNS does not log DNS queries by default.
To enable DNS query logging in Kubernetes, you need to enable the log plugin in the CoreDNS configuration.
-
Open your Kubernetes management console to view your existing CoreDNS
ConfigMap
, which includes the currentCorefile
. CoreDNS service is running under thekube-system
namespace:kubectl describe configmaps --namespace kube-system coredns -
Copy the
Corefile
from the response to the respectivecoredns-config.yml
section. The default KubernetesConfigMap
looks something like this:apiVersion: v1kind: ConfigMapmetadata:name: corednsnamespace: kube-systemdata:Corefile: |.:53 {errorshealthkubernetes cluster.local in-addr.arpa ip6.arpa {pods insecurefallthrough in-addr.arpa ip6.arpa}prometheus :9153forward . /etc/resolv.confcache 30loopreloadloadbalance} -
To use the log plugin and start logging all the DNS queries to standard output, apply the following configuration:
. {log} -
To activate the log plugin, add the corresponding line to the default
Corefile
in yourcoredns-config.yml
file. Output when using the defaultConfigMap
should be similar to this:apiVersion: v1kind: ConfigMapmetadata:name: corednsnamespace: kube-systemdata:Corefile: |.:53 {logerrorshealthkubernetes cluster.local in-addr.arpa ip6.arpa {pods insecurefallthrough in-addr.arpa ip6.arpa}prometheus :9153forward . /etc/resolv.confcache 30loopreloadloadbalance} -
Apply the
coredns-config.yml
to your CoreDNS service in Kubernetes with the following command:kubectl apply -f coredns-config.ymlAs a result, the DNS query logs can now be seen in the CoreDNS pods' logs, which can now be either forwarded to Dynatrace or viewed in the AWS CloudShell environment with the command:
kubectl logs --namespace kube-system -f deployment/coredns --follow
Route53
If CoreDNS doesn’t have an answer for www.dynatrace.com
in the registry, the DNS query is forwarded to the DNS server of the cluster Node. Usually, this is the AWS Route53 service, which is the default recursive DNS server in AWS.
Like CoreDNS, Route53 does not log DNS queries by default.
To configure Route53 to log DNS queries
-
Open your AWS management console and go to the Route53 Dashboard page.
-
From the left menu, go to Resolver > Query logging and select Configure query logging.
-
Select CloudWatch Logs log group as your destination and choose a log group as the destination log group for your query logs.
-
Add the VPCs that you want the queries to be logged for (for example, the VPC where your EKS nodes reside).
-
Select Configure query logging to save your settings.
Read more about configuring logging for DNS queries.
DNS log content in EKS
Let's go through why you need both CoreDNS logs and Route53 logs with some log content.
-
In CoreDNS, the query logs are stored in the following format by default:
172.31.47.132:40395 - 23683 "A IN www.dynatrace.com. udp 35 false 512" NOERROR qr,rd,ra 278 0.002157881sThe log record contains:
- the source IP address and port
- an ID of the request
- request type and class
- query itself
- some other details about the response, such as the response code, flags, and the size of the response
The fields can be configured to some extent.
Read more about the CoreDNS custom log format.
-
Route53 logs are stored in the following JSON structure:
{"version":"1.100000","account_id":"<id>","region":"us-east-1","vpc_id":"vpc-<id>","query_timestamp":"2023-11-20T21:20:29Z","query_name":"www.dynatrace.com.","query_type":"A","query_class":"IN","rcode":"NOERROR","answers":[{"Rdata":"52.3.5.163","Type":"A","Class":"IN"}],"srcaddr":"172.31.73.143","srcport":"51217","transport":"UDP","srcids":{"instance":"i-<id>"}}From the example above, we can see that Route53 logs contain far more details about the DNS query, including detailed content of the response data, which is needed for threat hunting. Note that we don’t have the pods' IP address in Route53 logs: we can only see that an EKS Node has tried to resolve this host. Therefore, if you want to pinpoint the exact pod that's creating malicious DNS traffic, Route53 logs would not be enough.
In CoreDNS logs we can find information about the request origin (pods' IP and source port), but the logs don't contain any information about the response payload.
To find an infected process that is getting its commands from an external server via DNS responses, threat hunting is required. To perform it precisely, we need to analyze both of those logs and correlate them as needed.
Stream logs to Dynatrace
The easiest way to ingest logs into Dynatrace is via Amazon Data Firehose integration.
To configure it in AWS CloudShell, perform the following actions:
# setting the environment in CLITARGET_URL=<your_environment_URL>TARGET_API_TOKEN=dt0c01.*****STACK_NAME=dynatrace-log-delivery-streamwget -O dynatrace-firehose-log-stream.yaml https://assets.cloud.dynatrace.com/awslogstreaming/dynatrace-firehose-log-stream.yamlaws cloudformation deploy --capabilities CAPABILITY_NAMED_IAM --template-file ./dynatrace-firehose-log-stream.yaml --stack-name $STACK_NAME --parameter-overrides DtApiUrl=$DYNATRACE_API_URL DtApiToken=$DYNATRACE_API_KEY
To configure CloudWatch Logs log groups to be forwarded to Dynatrace, use the following command, both for the EKS clusters' CloudWatch Logs log group and for the log group you’re storing the Route53 logs.
wget -O dynatrace-firehose-logs.sh https://assets.cloud.dynatrace.com/awslogstreaming/dynatrace-firehose-logs.sh && chmod +x dynatrace-firehose-logs.sh./dynatrace-firehose-logs.sh subscribe --log-groups <log-group-name> --stack-name $STACK_NAME
To see your CloudWatch Logs log group in Dynatrace, use the following DQL script in your tenant.
fetch logs| filter aws.log_group == "<log-group-name>"