Adding Resources to your Network

Add a peer to your DevZero network

  1. Get a shell inside the node that you want to add to the network.

  2. Run

sudo dz auth login
  1. Add the node to the network by running (optional --hostname flag: replace <some_name> with a memorable hostname)

sudo dz network connect --hostname=<some_name>
# example: sudo dz net connect --hostname=my-rds-jump-node
  1. Verify that the node is in the network by running

dz network status

Advertise routes to your DevZero network

  1. Get a shell inside the node that you want to add to the network.

  2. Install the CLI following these steps.

  3. Run

sudo dz auth login
  1. Add the node to the network by running (optional --hostname flag: replace <some_name> with a memorable hostname)

sudo dz network connect --hostname=<some_name> --advertise-routes=<CIDR range>
# example: sudo dz net connect --hostname=my-rds-jump-node --advertise-routes=172.31.0.0/16 
# where the current node is on a VPC w/ CIDR range 172.31.0.0/16 
  1. Verify that the node is in the network by running

dz network status

Last updated