Huntsman
Huntsman

Reputation: 33

Virtual Machine Scale Sets

I have a test azure subscription, I have created a Virtual Machine Scale Sets.

There are no errors in the scale set.

How do I connect to VM's and make my server to put in a load?

Can I connect with RDP to my Scale set VM's ? is this allowed?

Upvotes: 1

Views: 1612

Answers (1)

Jason Ye
Jason Ye

Reputation: 13974

If you create VMSS via Azure portal Marketplace, we can't add inbound NAT rules to use RDP to login the VMSS instances, we can't RDP them directly.
So if you want to login those instances, we can create a new VM in the same Vnet(same Vnet can connect by the private IP address), and use the private IP to RDP. enter image description here

How do I connect to VM's and make my server to put in a load?

By default, we can use load balancer public IP address and NAT port to RDP VMs behind the VMss.

Can I connect with RDP to my Scale set VM's ? is this allowed?

You can create a windows VM in the same Virtual Network, this VM work as a jumpbox, then use this vm to RDP those instances via private IP address.

Another way, modify template to add NAT rules.

More information about VMss and NAT rules, please refer to this link.

Upvotes: 2

Related Questions