Microsoft Azure Setup VM With 2 NIC Adapters
Create resources:
az group create --name mConf --location westeurope
Create VNet1 - NET-mConf and FrontEnd Network - DMZ:
az network vnet create \
--resource-group mConf \
--name NET-mConf \
--address-prefix 192.168.0.0/16 \
--subnet-name DMZ-mConf \
--subnet-prefix 192.168.1.0/24
Create BackEnd Network - Home:
az network vnet subnet create \
--resource-group mConf \
--vnet-name NET-mConf \
--name Home-mConf \
--address-prefix 192.168.100.0/24
Create a network security group (NSG):
az network nsg create \
--resource-group mConf \
--name NSG-mConf
Create and configure multiple NICs:
az network nic create \
--resource-group mConf \
--name NIC-DMZ \
--vnet-name NET-mConf \
--subnet DMZ-mConf \
--network-security-group NSG-mConf
az network nic create \
--resource-group mConf \
--name NIC-Home \
--vnet-name NET-mConf \
--subnet Home-mConf \
--network-security-group NSG-mConf
Create a VM and attach the NICs: Standard_F2s
(When you create the VM, specify the NICs you created with --nics)
(To check all available images: az vm image list / az vm image list -o table)
az vm create \
--resource-group mConf \
--name FW1-mConf \
--image Debian \
--size Standard_F2s \
--admin-username shristov \
--ssh-key-value "ssh-rsa AAAFHkjfndksL6l6kYm8aGXZQTUmNbeLvSFxc/qQ==" \
--nics NIC-DMZ NIC-Home
On NIC-DMZ: add public address dynamically
Over azure online dashboard
Start VM:
az vm start --resource-group mConf --name FW1-mConf