Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 2.22 KB

setup.md

File metadata and controls

83 lines (57 loc) · 2.22 KB

Purpose

This script sets up the services, policies and identities for the sdk-golang chat-p2p example.

Prerequisites

You need at least one controller and an edge router running. for this to work. You can use the quick-start script found here.

Setup

Ensure we're logged into the controller

ziti edge login

Remove any entities from previous runs

ziti edge delete service chat-p2p
ziti edge delete identities user1 user2 user3 user4
ziti edge delete service-policies chat-p2p-dial chat-p2p-bind
ziti edge delete edge-router-policy chat-p2p
ziti edge delete service-edge-router-policy chat-p2p

Create and enroll the client app identity

ziti edge create identity user user1 -a chat-p2p -o user1.jwt
ziti edge enroll --rm user1.jwt

ziti edge create identity user user2 -a chat-p2p -o user2.jwt
ziti edge enroll --rm user2.jwt

ziti edge create identity user user3 -a chat-p2p -o user3.jwt
ziti edge enroll --rm user3.jwt

ziti edge create identity user user4 -a chat-p2p -o user4.jwt
ziti edge enroll --rm user4.jwt

Configure the dial and bind service policies

ziti edge create service-policy chat-p2p-dial Dial --service-roles '#chat-p2p' --identity-roles '#chat-p2p'
ziti edge create service-policy chat-p2p-bind Bind --service-roles '#chat-p2p' --identity-roles '#chat-p2p'

Configure the edge router policy

ziti edge create edge-router-policy chat-p2p --edge-router-roles '#all' --identity-roles '#chat-p2p'

Configure the service edge router policy

ziti edge create service-edge-router-policy chat-p2p --edge-router-roles '#all' --service-roles '#chat-p2p'

Create the service

ziti edge create service chat-p2p -a chat-p2p

Summary

After you've configured the service side, you should now be to run the chat-p2p client for each of the four configured identities as follows.

chat-p2p -i user1.json
chat-p2p -i user2.json
chat-p2p -i user3.json
chat-p2p -i user4.json

Note that you will need to run each chat-p2p command in a separate terminal.