Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Create VPC named VPC1
  2. CIDR block - 192.168.0.0/16
  3. Create a Subnet named Subnet1 on the VPC1
  4. CIDR block - 192.168.1.0/24
  5. Create a Subnet named Subnet2 on the VPC1
  6. CIDR block - 192.168.2.0/24
  7. Create a RouteTable named ExternalRouteTable for the VPC1
  8. Associated SubnetTable with Route Table ExternalRouteTable using Subnet2
  9. Create InternetGateway named InternetGateway
  10. Attach InternetGateway to VPC1
  11. Create Route name Route1
  12. RouteTableId : ExternalRouteTable
  13. Gateway Id: InternetGateway
  14. CIDR: 0.0.0.0/0
  15. Create SecurityGroup named SG1
  16. VPC Id: VPC1
  17. Create NetworkInterface named PublicInterface1
  18. Subnet Id: Subnet2
  19. SecurityGroup Id: SG1
  20. Create External IP named ExternalIP1
  21. Create External IP Association named IPAssociation1
  22. AllocationId: ExternalIP1
  23. Network Interface: PublicInterface1
  24. Create NetworkInterface named Interface1
  25. Subnet Id: Subnet1
  26. SecurityGroup Id: SG1
  27. Private IP: 192.168.1.10
  28. Create Instance:
  29. NetworkInterfaces
  30. DeviceIndex 1: Subnet2
  31. DeviceIndex 2: Subnet1 (Specify IP)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement