ICX-AlphaCom Core in Hyper-V
From Zenitel Wiki
This article describes how to install ICX-Core in a Hyper-V environment.
Prerequisites
- Windows Server or Windows 10 with the Hyper-V feature installed.
- Operating System: Ubuntu 18.04.x LTS Server (Mandatory): http://releases.ubuntu.com/18.04/
- File transfer software: WinSCP (version 5.15.3 used in this guide): WinSCP https://winscp.net/eng/index.php
- ICX-Core software: ICX System
Hyper-V Manager
Run the Hyper-V Manager:
First, we need to create an External Network Adapter. From the Actions tab, choose Virtual Switch Manager:
Select External and press Create Virtual Switch
Connect this new Virtual Switch to the External Network by choosing the correct network adapter and giving it a name. If you have more than one network adapter, be sure to identify the correct one and click OK.
Now, we can create a New Virtual Machine. Click New and select Virtual Machine from the Actions tab.
Click Next.
Give the new Virtual Machine a name, and choose where you should store this VM.
Select Generation 2 as the Generation of the Virtual Machine
Specify 1028MB as the RAM required for the Virtual Machine, and disable Dynamic Memory
Connect your new Virtual Machine to the Default Switch for Hyper V. We will add the new External Network to the Virtual Machine in a later step.
Create a new Virtual Hard Disk and give it a size of 15GB
Attach the Ubuntu .ISO installation media to the Virtual Machine for it's first boot.
Check the summary of options and click Finish.
Now we need to configure the final options prior to booting the Virtual Machine. Right-Click on your newly created Virtual Machine and choose Settings.
Under Security, disable Enable Secure Boot
Click Add Hardware, and select Network Adapter and press Add
Choose the External Network Virtual Switch created in the first steps and click OK.
Time to start your Virtual Machine. Double-Click on your new Virtual Machine, and press start in the window.
Ubuntu
The Ubuntu installation will automatically launch after Start in the previous section. Note that while the screen captures are from VirtualBox, the process remains the same for Hyper-V
Choose your language:
Define your keyboard:
Confirm the network adapter:
Enter Proxy if needed:
Confirm mirror:
Filesystem:
Select HDD:
Confirm partition:
Confirm installation:
Enter profile and credentials. VERY important to not forget this. Write it down!:
Select Install OpenSSH server:
Skip:
The installation is now running:
Installation complete! Hit Enter key to reboot:
The virtual machine reboots and starts up with Ubuntu running in terminal mode.
ICX-Core
Log in with the username and password defined earlier. Use command "ip a" to see the IP address that the virtual machine has:
Connect to the virtual machine with WinSCP ...
... and copy the ICX-Core installation file from your computer to the virtual machine:
Close WinSCP.
Install ICX-Core using the command (case sensitive):
sudo tar -xf ICX-Core-01.00-bionic-1.0.3.0.apt.tar install.sh --to-command /bin/sh
|
Where ICX-Core-01.00-bionic-1.0.3.0.apt.tar is the ICX-Core file name.
After installation, you can access the ICX Web from any PC in the network by using the IP address of the virtual machine.
If your Hyper-V system is Headless, and you cannot access the Web Interface from the Default Network Adapter, use the following command to enable port 80 in the Filters from the console. Don't forget to enable the correct filters in the AlphaWeb once you login.
sudo iptables -A INPUT -i eth1 -p tcp -m tcp --dport 80 -j ACCEPT
|