Skip to main content

Appendix - VMware Conductor Configuration

This appendix contains the complete SSR PCLI configuration for the Conductor VMware ESXi conductor described in this guide. Apply this configuration after completing Step 3 — Configure the Conductor.

Network Design Reference

The following IP addressing and naming scheme is used consistently throughout this guide. Substitute your own values when configuring your network.

ParameterExample ValueDescription
Authority NameAuthority128Organizational authority name
Conductor NameConductorConductor system name
Conductor Node Namenode0Conductor node name
Conductor Management IP192.168.100.10Static IP on the VMware management network
Conductor Subnet Mask/24Management network prefix
Conductor Gateway192.168.100.1Management network gateway
DNS Server8.8.8.8DNS used during initialization
Tenant NamecorpLAN-side user tenant
Service NameInternet-TrafficInternet breakout service
Service Address0.0.0.0/0All internet-bound traffic

Applying This Configuration

This configuration can be applied to a freshly initialized conductor using the PCLI import function.

  1. Save the configuration below to a file — for example vmware-conductor.cfg.

  2. Copy the file to the conductor:

    scp vmware-conductor.cfg admin@192.168.100.10:/tmp/
  3. Log in to the conductor PCLI:

    ssh admin@192.168.100.10
  4. Enter configuration mode and import:

    admin@node0.Conductor# import config /tmp/vmware-conductor.cfg
  5. Review any validation warnings, then commit:

    admin@node0.Conductor (config)# commit
    Are you sure you want to commit the candidate config? [y/N]: y

Alternatively, you may copy and paste each block into the PCLI while in configureedit mode.

Complete Conductor Configuration

config
authority
name Authority128

conductor-address 192.168.100.10

tenant corp
name corp
exit

service Internet-Traffic
name Internet-Traffic
scope public
security internal

access-policy
source corp
exit

address 0.0.0.0/0
exit

router Conductor
name Conductor
inter-node-security internal

node node0
name node0
role conductor

device-interface mgmt-dev
name mgmt-dev
type ethernet
pci-address 0000:0b:00.0
forwarding false

network-interface mgmt-intf
name mgmt-intf
type management

address 192.168.100.10
ip-address 192.168.100.10
prefix-length 24
gateway 192.168.100.1
exit
exit
exit
exit
exit
exit
exit

Configuration Notes

important

The pci-address value 0000:0b:00.0 is an example. The actual PCI address of the VMXNet3 NIC in your conductor VM must be discovered after installation. From the Linux shell on the conductor, run:

ethtool -i <interface-name> | grep bus-info

Substitute the discovered value in the device-interface mgmt-dev block before applying this configuration.

ItemNote
pci-address (conductor NIC)Must be replaced with the actual VMXNet3 NIC PCI address. The value 0000:0b:00.0 varies by VM slot assignment.
conductor-addressReplace 192.168.100.10 with the actual static IP assigned to the conductor VM if different.
gatewayReplace 192.168.100.1 with your management network gateway.
forwarding on conductor NICSet to false — the conductor management NIC is not a forwarding interface.