Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
This template allows you to deploy one or more stand-alone Darktrace vSensors
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
location | Location for all resources. The default is the Resource Group location. |
virtualNetworkResourceGroupName | Name of the Virtual Network Resource Group. |
virtualNetworkName | Name of the Virtual Network, should be in the above Location. |
subnet1Name | Name of the Subnet in the Virtual Network. |
networkSecurityGroupName | Name for the Network Security Group that the template will create. Note that a pre-existing Network Security Group with the same name will be replaced. |
MgmtSourceAddressOrRange | Provide an address range using CIDR notation (e.g. 10.1.0.0/24), or an IP address (e.g. 192.168.99.21) for Management access via ssh (port 22/TCP). You can also provide a comma-separated list of IP addresses and/or address ranges (a valid comma-separated list is 10.1.0.4,10.2.1.0/24). To allow access from any IP you can use 0.0.0.0/0. |
vsensorName | The name of the vSensor. |
numberOfVsensors | Number of vSensors to be deployed, max is 4. |
diskSize | The vSensor disk size in GB between 30 and 1024. Check the Darktrace customer portal for more information. |
virtualMachineSize | The VM size. Check the Darktrace customer portal for more information about the vSensor Virtual Hardware requirements. |
adminUsername | Username to be created when the vSensor is spun up. Note that password authentication over ssh for newly created VMs is disabled. |
adminPublicKey | Public key for the adminUsername user to ssh the vSensor. |
applianceHostName | The FQDN or the IP of the Darktrace master instance (virtual/physical). |
appliancePort | Darktrace master instance connection port. |
updateKey | Darktrace Update Key needed to install the vSensor package. Contact your Darktrace representative for more information. |
pushToken | The push token that vSensor will use to connect and register on the Darktrace master instance. Should be generated on the Darktrace master instance. |
osSensorHMACToken | TThe osSensor HMAC Token. |
Uso de la plantilla
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/darktrace-vsensor-standalone/azuredeploy.json
Línea de comandos
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/darktrace-vsensor-standalone/azuredeploy.json