Sunday, April 16, 2017

Explain about Amazon Virtual Private Cloud?

Amazon Virtual Private Cloud(VPC) gives you the ability to create a logically isolated network in the AWS cloud from which we can launch resources such as EC2 based on the configuration .A VPC gives complete control over our virtual network starting with defining subnets, the IP addressing scheme,configuring routing tables and network gateways.

Its similar to data center (or) corporate network and by extending our corporate or home network we can create a hybrid cloud where we can launch resources in VPC and in corporate /home network.

Benefits:
  1. Variety of options to address the needs of business and applications such as public and private subnets connecting to our data center, vpc peering, vpn connections or just connecting to internet.
  2. It provides us an ability to define our own custom subnet and IP addressing scheme, control routing through use of custom routing tables and also able to assign multiple IP addresses to our instances.
  3. Amazon VPC provides advanced security features such as security groups, network access control lists to enable inbound and outbound filtering at the instance level and subnet level.
  4. Single tenant hardware.
  5. Scalable and reliable: It has all the same benefits as the rest of AWS platform like we can instantly scale resources up or down.

1 comment:

  1. Your good knowledge and kindness in playing with all the pieces were
    very useful. I don’t know what I would have done if I had not
    encountered such a step like this.



    AWS Training in Bangalore

    ReplyDelete

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...