limit access to serial console from a specific subnet

Joe G 20 Reputation points
2023-04-20T14:00:00.7366667+00:00

How does one limit serial console access to a Virtual Machine from a specific set of IP addresses?

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
9,013 questions
{count} votes

Accepted answer
  1. Alistair Ross 7,466 Reputation points Microsoft Employee
    2023-04-20T14:47:37.55+00:00

    This isn't possible in the traditional sense of blocking a port as the connection is done from within Azure. For you to be able to achieve this, you need to control who is authorised to perform the action. First you would need to configure your RBAC model to grant the least privilege, ensuring that no one had access to the serial console ( effectively removing the ARM action "Microsoft.SerialConsole/serialPorts/connect/action" from everyone). https://learn.microsoft.com/en-us/troubleshoot/azure/virtual-machines/serial-console-enable-disable#enabling-least-privilege-access-to-serial-console-using-rbac You would then need to implement conditional access so that only authorised users can sign in from selected ip ranges. A secure way of doing this is implementing Privileged Access workstations, which I would advised for the administration of Azure https://learn.microsoft.com/en-us/security/privileged-access-workstations/privileged-access-deployment kind regards Alistair


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.