Allied Telesis AR4000S-Cloud Microsoft Azure Installation Guide
- June 15, 2024
- Allied Telesis
Table of Contents
Technical Guide
AR4000S-Cloud on Microsoft Azure Installation Guide
Installation Guide
Introduction
The AR4000S-Cloud is a virtual router appliance product that provides
functions such as VPN and firewall.
This installation guide enables you to install and configure your AR4000S-
Cloud in a Microsoft Azure cloud environment.
Note: This document contains a lot of Azure-specific terminology. For
more detailed information about Azure terms and concepts, please refer to the
Azure documentation. Also, the screenshots shown were current at the time of
creation, but are subject to change.
Procedure overview
The general procedure for setting up this product on Azure is as follows:
-
“Create a Microsoft Azure image”
Upload the VHD image file of this product to Azure to create a Microsoft Azure image. -
“Create an instance”
Create an instance (virtual machine) of this product from the image created in Step 1.
Create a Microsoft Azure image
The standard way to create virtual machines on Microsoft Azure is to use a
Virtual Machine Image. A virtual machine image is a template containing all
the information needed to create instances of a specific type.
To allow the creation of AR4000S-Cloud instances on Microsoft Azure, an
AR4000S-Cloud virtual machine image is needed.
The following section covers downloading AR4000S-Cloud from the Allied Telesis
Download Center, and the requirements to upload the Virtual Hard Disk (VHD)
image to your Microsoft Azure account as a virtual machine image.
Prerequisites
To create a Microsoft Azure AR4000S-Cloud image, you will need access to the
following:
- A PC, connected to the Internet.
- A Microsoft Azure account.
- A Microsoft Azure AR4000S-Cloud VHD image. This can be downloaded from the Allied Telesis Download Center.
- The Microsoft Azure CLI 2.51. This can be downloaded from https://docs.microsoft.com/en-us/cli/azure/install-azure-cli.
Note: This process was tested with version 2.51. Later versions of the
Microsoft Azure CLI will likely also work, but have not been specifically
tested.
Uncompress the VHD image
The VHD image downloaded from the Allied Telesis Download Center will be in a
compressed .gz format. Before it can be used, it must be uncompressed.
Using gunzip: On platforms where it is supported, such as Unix and Linux,
the .gz file can be uncompressed using the gunzip command. To uncompress the
file, use the following command: gunzip <name_of_file.gz>
Using 7-Zip: On platforms where gunzip is not available, such as Windows,
use 7-Zip to uncompress the file. 7Zip can be downloaded from
http://www.7-zip.org.
Install the Microsoft Azure CLI 2.51
The following steps require the use of the Microsoft Azure CLI 2.51. This can
be downloaded from https://docs.microsoft.com/en-us/cli/azure/install-azure-
cli. For instructions on how to install Microsoft Azure CLI 2.51, and
documentation of its functionality, refer to https://docs.microsoft.com/en-
us/cli/azure/overview.
Login to Microsoft Azure
To configure your Microsoft Azure account and upload the VHD, it is necessary
to log in to the Microsoft Azure account using the Microsoft Azure CLI 2.51.
- At the command line, enter the following command: az login
- This will open a web browser to authenticate your connection. Log in using your Microsoft Azure credentials.
Create the Microsoft Azure resource group
A Microsoft Azure Resource Group is required to associate all of your
Microsoft Azure resources.
Note: If you already have an existing Resource Group that you want to
use, you may skip this step.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
group create –location
The following parameters are required:
Table 1: az group create Command Parameters
Example:
az group create –location westus –name myresourcegroup
Note: For a list of an account’s supported regions, use the following
command: az account list-locations –output table
Create the Microsoft Azure storage account
A Microsoft Azure Storage Account is required to store all of your Microsoft
Azure resources.
Note: If you already have an existing Storage Account that you want to use,
you may skip this step.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
storage account create –resource-group
Standard_LRS
The following parameters are required:
Table 2: az storage account create Command Parameters
Example:
az storage account create –resource-group myresourcegroup –name
mystorageaccount –sku Standard_LRS
Create the Microsoft Azure storage container
A Microsoft Azure Storage Container is required as a specific area for your
Microsoft Azure resources. This storage container will hold the uploaded AMF
Cloud VHD.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
storage container create –account-name
The following parameters are required:
Table 3: az storage container create Command Parameters
Example:
az storage container create –account-name mystorageaccount –name mycontainer
Upload the VHD to Microsoft Azure
The AMF Cloud VHD needs to be uploaded to the Storage Container. From there,
it will be used to create the AMF Cloud image.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
storage blob upload –account-name
Example:
az storage blob upload –account-name mystorageaccount –container-name
mycontainer –name AR4000S-Cloud-1.8.3-5.5.31.3.vhd –type page–file “C:\VHD
\AR4000S-Cloud-1.8.3-5.5.31.3.vhd”
Determine the VHD URL
To create the AMF Cloud image, it is necessary to determine the blob URL of
the uploaded VHD.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
storage blob url –account-name
Example:
az storage blob url –account-name mystorageaccount –containername mycontainer
–name AR4000S-Cloud-1.8.3-5.5.3-1.3.vhd
Note: Make note of the URL returned by this command, as it will be used
in the next part of the process.
Create the Microsoft Azure image
Now create the Microsoft Azure AMF Cloud image, using the blob URL of the VHD.
Enter the following command at the Microsoft Azure CLI 2.51 command line: az
image create –resource-group
Example:
az image create –resource-group myresourcegroup –name
AR4000SCloud-1.8.3-5.5.3-1.3 –os-type Linux –source
“https://mystorageaccount.blob.core.windows.net/vhds/AR4000SCloud-1.8.3-5.5.3-1.3.vhd”
Create an instance
The next step in the process is to create an instance (virtual machine).
Prerequisites
To create an instance, you need an AMI as a template. This section assumes
that you have already completed the “Create a Microsoft Azure image” section.
Network configuration, SSH keys, access control, etc, also need to be planned
in advance. This document assumes these have already been completed.
-
From the All Services page of Microsoft Azure, select the Resource groups service.
-
All of the resource groups are listed in the Resource groups service. Select the resource group created earlier.
-
This view shows all the resources stored in the selected resource group. Select the image created earlier.
-
From the image view, select +Create VM.
-
From the Create a virtual machine page, the Image field should contain the image created earlier. The supported VM Size is Standard_B1 and above. When you have finished configuring the options, click on Review + Create.
-
This default setup will create a VM that can be connected to via SSH, using the default user-name and password, on the public IP listed on the instance page.
Note: The SSH private key generated by Azure is not used by AR-Cloud. For more information about configuring an SSH key to authenticate connecting users, refer to the Secure Shell (SSH)
Feature Overview and Configuration Guide. -
From the All Services page of Microsoft Azure, select the Virtual machines service.
-
Select the VM you newly created.
-
The service page shows information specific to the selected VM, including the public IP. You can connect to the VM using the default user-name and password. In the VM details, find the Public IP address of your VM, then use the following command to connect: ssh
C613-04159-00 REV A
NETWORK SMARTER
North America Headquarters | 19800 North Creek Parkway | Suite 100 | Bothell |
WA 98011 | USA | T: +1 800 424 4284 | F: +1 425 481 3895
Asia-Pacific Headquarters | 11 Tai Seng Link | Singapore | 534182 |
T:+6563833832| F: +65 6383 3830
EMEA & CSA Operations | Incheonweg 7 | 1437 EK Rozenburg | The Netherlands |
T:+31207950020| F:+31207950021
alliedtelesis.com
© 2022 Allied Telesis, Inc. All rights reserved. Information in this document
is subject to change without notice. All company names, logos,
andproductdesigns thataretrademarks or registered trademarks aretheproperty
oftheir respective owners.
Create an instance
References
- Welcome to Allied Telesis | Allied Telesis
- Azure Command-Line Interface (CLI) - Overview | Microsoft Learn
- Microsoft Learn: Build skills that open doors in your career
- How to install the Azure CLI | Microsoft Learn
- Azure Command-Line Interface (CLI) - Overview | Microsoft Learn
- Secure Shell (SSH) Feature Overview and Configuration Guide | Allied Telesis
Read User Manual Online (PDF format)
Read User Manual Online (PDF format) >>