Skip to content

Add, Show, Ping, and Remove Hubs

Add each development VeeaHub to the local VHT configuration before creating Docker contexts or uploading licenses.

Add a Hub

Run:

vhc2 hub config add-hub --ip-addr 192.168.1.36 \
  --serial-number E10CTWE080C000002341 vh-2341

The example uses vh-2341 because the serial number ends in 2341.

Show Hubs

Run:

vhc2 hub config show

Expected output:

hub:
  hubs:
    - id: vh-2341
      ipv4Addr: 192.168.1.36:9000
      serialnumber: E10CTWE080C000002341

Ping a Hub

Run:

vhc2 hub access --hub-id vh-2341 ping

Expected output:

Success

Remove a Hub

Run:

vhc2 hub config remove-hub vh-2341

Confirm removal:

vhc2 hub config show

Expected output:

hub:
  No hubs configured.