Get Started¶
Get started with the Intel Developer Cloud console. In this guide, you learn how to:
Sign Up¶
Sign up with your corporate email address at Intel® Developer Cloud Console.
Enter your email ID and click on the Sign In button.
Keep the email field empty and just click on the “Employee Sign in”

Intel Developer Cloud Console Sign-In¶
Set Up SSH Keys¶
Setting up SSH Keys is a one-time task. See also SSH Keys.
Warning
Never share your private keys with anyone. Never create a SSH Private key without a passphrase.
Generate an SSH Key¶
Select the tab below per your operating system (OS).
Launch a Terminal on your local system.
Copy and paste the following to your terminal to generate SSH Keys
ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa
If you are prompted to overwrite, select No.
Copy and paste the following to your terminal to open your SSH key:
vi ~/.ssh/id_rsa.pub
Upload the generated file.
Launch a new PowerShell window on your local system.
Optional: If you haven't generated a key before, create an .ssh directory.
mkdir $env:UserProfile\.ssh
Copy and paste the following to your terminal to generate SSH Keys
ssh-keygen -t rsa -b 4096 -f $env:UserProfile\.ssh\id_rsa
If you are prompted to overwrite, select No.
Copy and paste the following to your PowerShell window to view your SSH key:
cat $env:UserProfile\.ssh\id_rsa.pub
Paste your key’s contents in the field below.
Upload an SSH Key¶
Once signed in to the console, click on the keys menu.
Cloud Console Keys Menu¶
At the keys screen, click on upload key button.
Specify a name for your key and paste the contents of your key on the key contents field. To generate a key, follow Generate an SSH Key.
Create name for SSH key¶
The uploaded key will appear in the keys screen. You can delete a key. To rename a key, you must delete the original key and upload a new one with a new name.
Access from Corporate Network¶
Warning
If you are connecting to Intel Developer Cloud from your company Corporate Network, you will need to update SSH config file.
Note
If you connect using PowerShell on Microsoft Windows Operating System, you must install gitforwindows.
Setting up SSH Configuration is an one-time task.
Your SSH configuration file is in a folder named
.ssh
under your user’s home folder. If the file is not present, create one.Open the
.ssh/config
file with an editor:~/.ssh/config
Copy and paste the following configuration to
.ssh/config
, per your Operating System.Host 146.152.*.* ProxyCommand /usr/bin/nc -x PROXYSERVER:PROXYSPORT %h %p
Host 146.152.*.* ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S PROXYSERVER:PROXYSPORT %h %p
From your Lab Administrator, get PROXYSERVER and PROXYPORT in your Corporate Network for SSH, NOT for HTTP/HTTPS Proxy.
Replace PROXYSERVER and PROXYPORT with the information you received from your lab administrator and save the SSH Config file.
Add a cloud credit coupon¶
Open the cloud credits option from your account menu.
Cloud Credits¶
Click on the Redeem coupon button.
Redeem Coupon Button¶
Provide a coupon code.
Cick on Redeem.
Note
The system will validate the code. Once it is accepted it will show up under the detailed list of credit information (due to latency, the code can appear in the list after a few minutes).
Launch a compute instance¶
There are two ways to launch a compute instance.

Launch a compute instance¶
Launch from Homepage Catalog¶
Select one of the product families available in the homepage.
At the Launch Instance page select your instance type, specify a name, select a machine operating system, and select the SSH keys that will work with the instance.
Click Launch.
Accessing a compute instance¶
To access your instance with an SSH client:
From the Intel network:
To connect to the Developer Cloud tenant SSH proxy, you need to configure the SSH client to use the Intel SOCKS proxy. You can do this by adding the following configuration to
~/.ssh/config
.Host 146.152.*.* ProxyCommand /usr/bin/nc -x proxy-dmz.intel.com:1080 %h %p
Open an SSH client.
Locate your SSH key file (my-key.ssh). The wizard automatically detects the key you used to launch the instance.
Your key must not be publicly visible for SSH to work. Use this command:
chmod 400 my-key.ssh
SSH command to connect to instance:
ssh -J guest-dev8@10.165.57.246 ubuntu@172.16.1.118
Please note that in most cases the username above will be correct, however please ensure that you read your instance usage instructions to ensure that the instance owner has not changed the default instance use
From the Intel network:
To connect to the Developer Cloud tenant SSH proxy, you need to configure the SSH client to use the Intel SOCKS proxy. You can do this by adding the following configuration to
~/.ssh/config
.Host 146.152.*.* ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S proxy-dmz.intel.com:1080 %h %p
Open an SSH client
Locate your SSH key file (my-key.ssh). The wizard automatically detects the key you used to launch the instance
Your key must not be publicly visible for SSH to work. Use this command:
chmod 400 my-key.ssh
SSH command to connect to instance:
ssh -J guest-dev8@10.165.57.246 ubuntu@172.16.1.118
Please note that in most cases the username above will be correct, however please ensure that you read your instance usage instructions to ensure that the instance owner has not changed the default instance username.