From 46ee7229fe7874c607f4e0c694621bd1f2aebc05 Mon Sep 17 00:00:00 2001 From: hustliyilin Date: Thu, 10 Sep 2020 22:14:08 +0800 Subject: [PATCH] rune/libenclave/skeleton: Enable --debug option for RA The --debug option of rune should be enabled to show IAS report when running RA. Signed-off-by: Yilin Li --- .../pal/skeleton/skeleton_remote_attestation_with_rune.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rune/libenclave/internal/runtime/pal/skeleton/skeleton_remote_attestation_with_rune.md b/rune/libenclave/internal/runtime/pal/skeleton/skeleton_remote_attestation_with_rune.md index 7ed1303..98617e2 100644 --- a/rune/libenclave/internal/runtime/pal/skeleton/skeleton_remote_attestation_with_rune.md +++ b/rune/libenclave/internal/runtime/pal/skeleton/skeleton_remote_attestation_with_rune.md @@ -33,14 +33,14 @@ cd "$HOME/rune_workdir/rune-container" # copy /etc/resolv.conf from host to bundles to ensure network is ready for the remote attestation of IAS. cp /etc/resolv.conf rootfs/etc/resolv.conf -sudo rune run skeleton-enclave-container +sudo rune --debug run skeleton-enclave-container ``` # Use `rune attest` command with skeleton You can type the following command to use `rune attest` command with skeleton in another shell: ```shell -rune attest --product=false \ +rune --debug attest --product=false \ --linkable=false \ --spid=${EPID_SPID} \ --subscription-key=${EPID_SUBSCRIPTION_KEY} \ -- GitLab