Intel® Developer Cloud
Help connecting to or getting started on Intel® Developer Cloud
138 Discussions

How to connect to vpn to connect to Bare Metal to help access BareMetal port

Baysa
Beginner
510 Views

I want to connect to Bare Metal port without using ssh with -J, is there any way to access the port without ssh?

Labels (1)
0 Kudos
2 Replies
Megat_Intel
Moderator
460 Views

Hi Baysa,

Thank you for reaching out to us.

 

To access the instance when using a VPN or in a corporate network, you need to configure the Proxy Server and Proxy Port in the SSH configuration file located in your SSH folder (~/.ssh/config). You can check out the steps and guide in the Access via Corporate Network section on the Get Started page.

 

On the other hand, the SSH -J command is used to connect to the IDC jumphost before connecting to the instance and this step is necessary. However, you can configure the jumphost and IDC instances in the SSH configuration file (~/.ssh/config) to simplify the connecting process. You can try the following configuration:

 

Host jumphost
 Hostname 146.x.x.x
 User guest
 ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S PROXYSERVER:PROXYSPORT %h %p

Host idc
 Hostname 100.x.x.x
 User <instance_username>
 ProxyJump jumphost

 

Please update the Hostname and User accordingly using the SSH command provided on Intel Developer Cloud. Ex: ssh -J guest@146.x.x.x ubuntu@100.x.x.x . You can then connect to the instance by just using ssh idc command.

 

ssh idc.png

 

 

Regards,

Megat

 

0 Kudos
Megat_Intel
Moderator
370 Views

Hi Baysa,

Thank you for your question. This thread will no longer be monitored since we have provided a suggestion. If you need any additional information from Intel, please submit a new question.

 

 

Regards,

Megat


0 Kudos
Reply