Monitoring and Policies for TLS Egress

The Configure Egress Traffic using Wildcard Hosts exampledescribes how to enable TLS egress traffic for a set of hosts in a common domain, in that case *.wikipedia.org. Thisexample extends that example to show how to configure SNI monitoring and apply policies on TLS egress traffic.

Before you begin

Zip

  1. $ kubectl apply -f @samples/sleep/sleep.yaml@

Otherwise, manually inject the sidecar before deploying the sleep application with the following command:

Zip

  1. $ kubectl apply -f <(istioctl kube-inject -f @samples/sleep/sleep.yaml@)

You can use any pod with curl installed as a test source.

  • Set the SOURCE_POD environment variable to the name of your source pod:
  1. $ export SOURCE_POD=$(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name})

Policy enforcement must be enabled in your cluster for this task. Follow the steps inEnabling Policy Enforcement to ensure that policy enforcement is enabled.

SNI monitoring and access policies

Since you configured the egress traffic to flow through the egress gateway, you can apply monitoring and access policyenforcement on the egress traffic, securely. In this section you will define a log entry and an access policy forthe egress traffic to *.wikipedia.org.

  • Create logging configuration:

Zip

  1. $ kubectl apply -f @samples/sleep/telemetry/sni-logging.yaml@
  1. $ kubectl exec -it $SOURCE_POD -c sleep -- sh -c 'curl -s https://en.wikipedia.org/wiki/Main_Page | grep -o "<title>.*</title>"; curl -s https://de.wikipedia.org/wiki/Wikipedia:Hauptseite | grep -o "<title>.*</title>"'
  2. <title>Wikipedia, the free encyclopedia</title>
  3. <title>Wikipedia Die freie Enzyklopädie</title>
  • Check the mixer log. If Istio is deployed in the istio-system namespace, the command to print the log is:
  1. $ kubectl -n istio-system logs -l istio-mixer-type=telemetry -c mixer | grep 'egress-access'
  • Define a policy that allows access to the hostnames matching *.wikipedia.org except for Wikipedia inEnglish:

Zip

  1. $ kubectl apply -f @samples/sleep/policy/sni-wikipedia.yaml@
  1. $ kubectl exec -it $SOURCE_POD -c sleep -- sh -c 'curl -v https://en.wikipedia.org/wiki/Main_Page'
  2. ...
  3. curl: (35) Unknown SSL protocol error in connection to en.wikipedia.org:443
  4. command terminated with exit code 35

Access to Wikipedia in English is blocked according to the policy you defined.

  1. $ kubectl exec -it $SOURCE_POD -c sleep -- sh -c 'curl -s https://es.wikipedia.org/wiki/Wikipedia:Portada | grep -o "<title>.*</title>"; curl -s https://de.wikipedia.org/wiki/Wikipedia:Hauptseite | grep -o "<title>.*</title>"'
  2. <title>Wikipedia, la enciclopedia libre</title>
  3. <title>Wikipedia Die freie Enzyklopädie</title>

Access to Wikipedia sites in other languages is allowed, as expected.

Cleanup of monitoring and policy enforcement

ZipZip

  1. $ kubectl delete -f @samples/sleep/telemetry/sni-logging.yaml@
  2. $ kubectl delete -f @samples/sleep/policy/sni-wikipedia.yaml@

Monitor the SNI and the source identity, and enforce access policies based on them

Since you enabled mutual TLS between the sidecar proxies and the egress gateway, you can monitor the service identity of the applications that access external services, and enforce policiesbased on the identities of the traffic source.In Istio on Kubernetes, the identities are based onService Accounts. In thissubsection, you deploy two sleep containers, sleep-us and sleep-canada under two service accounts,sleep-us and sleep-canada, respectively. Then you define a policy that allows applications with the sleep-usidentity to access the English and the Spanish versions of Wikipedia, and services with sleep-canada identity toaccess the English and the French versions.

  • Deploy two sleep containers, sleep-us and sleep-canada, with sleep-us and sleep-canada serviceaccounts, respectively:

ZipZip

  1. $ sed 's/: sleep/: sleep-us/g' @samples/sleep/sleep.yaml@ | kubectl apply -f -
  2. $ sed 's/: sleep/: sleep-canada/g' @samples/sleep/sleep.yaml@ | kubectl apply -f -
  3. serviceaccount "sleep-us" created
  4. service "sleep-us" created
  5. deployment "sleep-us" created
  6. serviceaccount "sleep-canada" created
  7. service "sleep-canada" created
  8. deployment "sleep-canada" created
  • Create logging configuration:

Zip

  1. $ kubectl apply -f @samples/sleep/telemetry/sni-logging.yaml@
  • Send HTTPS requests to Wikipedia sites in English, German, Spanish and French, from sleep-us:
  1. $ kubectl exec -it $(kubectl get pod -l app=sleep-us -o jsonpath='{.items[0].metadata.name}') -c sleep-us -- sh -c 'curl -s https://en.wikipedia.org/wiki/Main_Page | grep -o "<title>.*</title>"; curl -s https://de.wikipedia.org/wiki/Wikipedia:Hauptseite | grep -o "<title>.*</title>"; curl -s https://es.wikipedia.org/wiki/Wikipedia:Portada | grep -o "<title>.*</title>"; curl -s https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal | grep -o "<title>.*</title>"'
  2. <title>Wikipedia, the free encyclopedia</title>
  3. <title>Wikipedia Die freie Enzyklopädie</title>
  4. <title>Wikipedia, la enciclopedia libre</title>
  5. <title>Wikipédia, l'encyclopédie libre</title>
  • Check the mixer log. If Istio is deployed in the istio-system namespace, the command to print the log is:
  1. $ kubectl -n istio-system logs -l istio-mixer-type=telemetry -c mixer | grep 'egress-access'
  2. {"level":"info","time":"2019-01-10T17:33:55.559093Z","instance":"egress-access.instance.istio-system","connectionEvent":"open","destinationApp":"","requestedServerName":"en.wikipedia.org","source":"istio-egressgateway-with-sni-proxy","sourceNamespace":"default","sourcePrincipal":"cluster.local/ns/default/sa/sleep-us","sourceWorkload":"istio-egressgateway-with-sni-proxy"}
  3. {"level":"info","time":"2019-01-10T17:33:56.166227Z","instance":"egress-access.instance.istio-system","connectionEvent":"open","destinationApp":"","requestedServerName":"de.wikipedia.org","source":"istio-egressgateway-with-sni-proxy","sourceNamespace":"default","sourcePrincipal":"cluster.local/ns/default/sa/sleep-us","sourceWorkload":"istio-egressgateway-with-sni-proxy"}
  4. {"level":"info","time":"2019-01-10T17:33:56.779842Z","instance":"egress-access.instance.istio-system","connectionEvent":"open","destinationApp":"","requestedServerName":"es.wikipedia.org","source":"istio-egressgateway-with-sni-proxy","sourceNamespace":"default","sourcePrincipal":"cluster.local/ns/default/sa/sleep-us","sourceWorkload":"istio-egressgateway-with-sni-proxy"}
  5. {"level":"info","time":"2019-01-10T17:33:57.413908Z","instance":"egress-access.instance.istio-system","connectionEvent":"open","destinationApp":"","requestedServerName":"fr.wikipedia.org","source":"istio-egressgateway-with-sni-proxy","sourceNamespace":"default","sourcePrincipal":"cluster.local/ns/default/sa/sleep-us","sourceWorkload":"istio-egressgateway-with-sni-proxy"}

Note the requestedServerName attribute, and sourcePrincipal, it must be cluster.local/ns/default/sa/sleep-us.

  • Define a policy that will allow access to Wikipedia in English and Spanish for applications with the sleep-usservice account and to Wikipedia in English and French for applications with the sleep-canada service account.Access to other Wikipedia sites will be blocked.

Zip

  1. $ kubectl apply -f @samples/sleep/policy/sni-serviceaccount.yaml@
  • Resend HTTPS requests to Wikipedia sites in English, German, Spanish and French, from sleep-us:
  1. $ kubectl exec -it $(kubectl get pod -l app=sleep-us -o jsonpath='{.items[0].metadata.name}') -c sleep-us -- sh -c 'curl -s https://en.wikipedia.org/wiki/Main_Page | grep -o "<title>.*</title>"; curl -s https://de.wikipedia.org/wiki/Wikipedia:Hauptseite | grep -o "<title>.*</title>"; curl -s https://es.wikipedia.org/wiki/Wikipedia:Portada | grep -o "<title>.*</title>"; curl -s https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal | grep -o "<title>.*</title>";:'
  2. <title>Wikipedia, the free encyclopedia</title>
  3. <title>Wikipedia, la enciclopedia libre</title>

Note that only the allowed Wikipedia sites for sleep-us service account are allowed, namely Wikipedia in Englishand Spanish.

It may take several minutes for the Mixer policy components to synchronize on the new policy. In case you want toquickly demonstrate the new policy without waiting until the synchronization is complete, delete the Mixer policy pods:

  1. $ kubectl delete pod -n istio-system -l istio-mixer-type=policy
  • Resend HTTPS requests to Wikipedia sites in English, German, Spanish and French, from sleep-canada:
  1. $ kubectl exec -it $(kubectl get pod -l app=sleep-canada -o jsonpath='{.items[0].metadata.name}') -c sleep-canada -- sh -c 'curl -s https://en.wikipedia.org/wiki/Main_Page | grep -o "<title>.*</title>"; curl -s https://de.wikipedia.org/wiki/Wikipedia:Hauptseite | grep -o "<title>.*</title>"; curl -s https://es.wikipedia.org/wiki/Wikipedia:Portada | grep -o "<title>.*</title>"; curl -s https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal | grep -o "<title>.*</title>";:'
  2. <title>Wikipedia, the free encyclopedia</title>
  3. <title>Wikipédia, l'encyclopédie libre</title>

Note that only the allowed Wikipedia sites for sleep-canada service account are allowed, namely Wikipedia inEnglish and French.

Cleanup of monitoring and policy enforcement of SNI and source identity

ZipZip

  1. $ kubectl delete service sleep-us sleep-canada
  2. $ kubectl delete deployment sleep-us sleep-canada
  3. $ kubectl delete serviceaccount sleep-us sleep-canada
  4. $ kubectl delete -f @samples/sleep/telemetry/sni-logging.yaml@
  5. $ kubectl delete -f @samples/sleep/policy/sni-serviceaccount.yaml@

Cleanup

Zip

  1. $ kubectl delete -f @samples/sleep/sleep.yaml@

相关内容

Secure Control of Egress Traffic in Istio, part 3

Comparison of alternative solutions to control egress traffic including performance considerations.

Secure Control of Egress Traffic in Istio, part 2

Use Istio Egress Traffic Control to prevent attacks involving egress traffic.

Secure Control of Egress Traffic in Istio, part 1

Attacks involving egress traffic and requirements for egress traffic control.

Egress Gateway Performance Investigation

Verifies the performance impact of adding an egress gateway.

Consuming External MongoDB Services

Describes a simple scenario based on Istio's Bookinfo example.

Monitoring and Access Policies for HTTP Egress Traffic

Describes how to configure Istio for monitoring and access policies of HTTP egress traffic.