-
Microsoft Azure Stack Technical Preview Download is available
A few minutes ago Microsoft opened the download for the Microsoft Azure Stack Technical Preview! Taking the cloud to your datacenter and start using Azure Stack! -> https://azure.microsoft.com/en-us/overview/azure-stack/try/ The documentation for the Azure Stack Technical Preview is also online now. -> https://azure.microsoft.com/en-us/documentation/articles/azure-stack-overview/ Last but not least check out the Microsoft Azure Stack Whitepaper! -> http://download.microsoft.com/download/3/F/3/3F3811C0-969D-422C-9EDA-42CB79BABA96/Bring-the-cloud-to-your-datacenter-Microsoft-Azure-Stack.pdf
-
The first Microsoft Azure Stack Technical Preview is coming this week
Today Mike Neil, Corporate Vice President, Enterprise Cloud, announced that the first technical preview of Microsoft Azure Stack will be available on January 29. -> https://azure.microsoft.com/en-us/blog/announcing-the-first-technical-preview-of-microsoft-azure-stack/ You can sign up to get a notification when it is available and I highly recommend to do so! -> https://azure.microsoft.com/en-us/overview/azure-stack/ Furthermore I recommend to have a look at…
-
Azure Security Center – keep your Azure VMs up to date
Actually the Azure Security Center is in public preview, but nevertheless it is a very useful extension to the existing Azure services. -> https://azure.microsoft.com/en-us/blog/azure-security-center-now-available/ First of all you have to define the security policy for your subscription. Afterwards the Azure Security Center will install the data collection agents on your Azure VMs. Now you have…
-
Azure IaaS ARM Template – Enable Boot Diagnostics per Default
One great thing Microsoft had introduced last year to the Azure platform was the boot diagnostics capability. Looking at an ARM template you can add the following lines to the VM definition to activate the boot diagnostics for your VM per default. “diagnosticsProfile”: { “bootDiagnostics”: { “enabled”: “true”, “storageUri”: “[concat(‘http://’,parameters(‘newStorageAccountName’),’.’, parameters(‘blobStorageEndpoint’))]” } } Have a…
-
Azure IaaS ARM Template – Installing BGInfo VM Extension
When you want to install the BGInfo VM extension during the Azure VM deployment through an ARM template, then you have to add the following lines to your template. { “apiVersion”: “2015-06-15”, “type”: “Microsoft.Compute/virtualMachines/extensions”, “name”: “[concat(variables(‘vmName’),’/’, parameters(‘vmBGInfo’))]”, “location”: “[parameters(‘location’)]”, “dependsOn”: [ “[concat(‘Microsoft.Compute/virtualMachines/’, variables(‘vmName’))]” ], “properties”: { “publisher”: “Microsoft.Compute”, “type”: “BGInfo”, “typeHandlerVersion”: “2.1”, “settings”: {}, “protectedSettings”:…
-
Using Operations Management Suite to detect RDP access attempts
The malicious IP detection functionality of OMS can not only detect the outgoing communication from your Azure VM to a malicious target. -> http://blogs.technet.com/b/momteam/archive/2015/09/10/find-out-if-your-servers-are-talking-to-a-malicious-ip-address-with-operations-management-suite.aspx It can also detect incoming connection attempts to your Azure VMs. For example you would like to know who tries to access your Azure VM via RDP. Then you should give…