Category: Uncategorized
-
Credit to whoever it belongs to.
-
User Defined Routes (UDR) are routes that can be created in Azure to override Azure’s default system route or to add additional routes to a subnet routing table. n Azure, you create a route table, then associate the route table to zero or more virtual network subnets. Each subnet can have zero or one route…
-
Find the commands to install IIS and creation of a default.html page. I have tested this and it’s working as expected. Install-WindowsFeature -name Web-Server -IncludeManagementTools New-Item C:\inetpub\wwwroot\default.html -ItemType File Set-Content C:\inetpub\wwwroot\default.html ‘<html><h1>Input information here</html></h1> ‘
-
What is Azure Point-to-Site VPN connection? A Point-to-Site (P2S) VPN gateway connection lets you create a secure connection to your virtual network from an individual client computer. A P2S connection is established by starting it from the client computer. This solution is useful for telecommuters who want to connect to Azure VNets from a remote…
-
Virtual network peering enables you to seamlessly connect two or more Virtual Networks in Azure. The virtual networks appear as one for connectivity purposes. The traffic between virtual machines in peered virtual networks uses the Microsoft backbone infrastructure. Like traffic between virtual machines in the same network, traffic is routed through Microsoft’s private network only. Azure supports the following…
-
Things to take note when creating a load balancer based off my home labs VMs have to be in a availability sets for a BASIC Load Balancer. Important thing, the availability set has to to be created before hand or during the 1st VM creation. Take note, that VMs cannot be added to the availability…
-
To allow for customization of installation of software and update of system during the vm creation in azure, we can make use of the Custom Data and input the following information as shown below#cloud configpackage_upgrade: truepackages: -nginx Once the information has been input, please proceed with the vm creation as usual. Give it some time…