Questions tagged [routetable]

63 questions
2
votes
2 answers

AWS VPC Cannot delete routing rule to inexistent IP range

I've been looking into this all morning but it seems to be beyond my knowledge about AWS VPCs. We have and old AWS account with a series of VPCs in it. These were created years ago. The VPC I'm concerned about can easily be 6 years old if not older.…
davidfm
  • 179
  • 3
  • 14
2
votes
2 answers

terraform aws - how to add default route to vpc default route table?

When you create an AWS VPC in terraform, it will be assigned a default route table that will route traffic just within the CIDR block of the VPC. I want to add a default route to this to send all other traffic to the Internet.
2
votes
1 answer

Setting up a non-default VPC with a public and a private subnet and without using the "Create VPC" wizard

I set up a non-default VPC using the "Create VPC" rather than the "Create VPC Wizard" command button on the VPC service's home page in the AWS Management Console - that's because I will eventually automate the process using CloudFormation. I set up…
2
votes
0 answers

MVC - RouteTable Redirect to another route

I've been developing a product for 2 years which is being sold by ourselves and partners. Now the manager wants to give the source code to our partners which will be only used as Demo apps with a Demo License. All the demo module has been already…
Leandro Soares
  • 2,902
  • 2
  • 27
  • 39
2
votes
3 answers

Append/Edit aws route table entry

I have created a VPC B through Ansible playbook. Now I want to do the VPC peering between VPC B and VPC A. I can create VPC peering and activate the VPC peering connection. But I am struggling with how to Append/Edit existing route table entry for…
PrashantB
  • 155
  • 7
2
votes
1 answer

Getting a VPC to route directly to other AWS services, but through VPN for rest

Ok, so our setup is as follows: We have a VPC with some instances in them. For most of the traffic, we want to go back to our existing physical hosting centre and from there to the internet, with our nat'ed public ip. Since we are dependent on this…
Grubsnik
  • 918
  • 9
  • 25
2
votes
1 answer

Can you register a controller against multiple URLs in asp.net mvc?

I want to create an MVC application where by I can create areas of a site that use the same functionality but work under a seperate URL. e.g. I want to use the same image gallery controller (type not instance) under two different URLs…
John_
  • 2,931
  • 3
  • 32
  • 49
2
votes
0 answers

C# get and modify route table

I am wondering if there is a way to get, delete, enter new route into IP routing table. Does .net framework have this implemented? Currently I have this done with Process.Start and "route" command, but I guess this is not the most efficient way.
Jan
  • 21
  • 3
2
votes
1 answer

routing table Windows 7

I have strange problem. I'm working with Windows 7. I add line to routing table: route -p add 192.111.111.111(fake of course) mask 255.255.255.255 192.111.197.254 metric 10 Now, when I ping 192.111.111.111 -everything is OK. But, when I restart my…
Lorn
  • 255
  • 2
  • 4
  • 10
1
vote
2 answers

How does the auto-assign public IP setting affect private and public subnets?

so I'm just learning about AWS VPC networking. From what I understand the main difference between a public subnet and private subnet is whether or not traffic in that subnet can be routed to the Internet Gateway (through route table rules). However,…
1
vote
0 answers

RouteTable in Asp.Net Core 6.0

I'm new to Asp.Net Core. I wanted to use RouteTable in.NET Core 6.0 to remove routes, but it seems to have removed this feature. Can anyone tell me what's the alternative.
Xia
  • 11
  • 3
1
vote
1 answer

Filter to find the non-main route table in AWS VPC with Terraform

What specific syntax must be used in order for the Terraform aws_route_table data source below to successfully return the route table that is NOT designated the main route table in the VPC? data "aws_route_table" "rt" { vpc_id = var.vpcId …
1
vote
1 answer

AWS: VPC, Subnets, NACLs, Security Groups, IGWs, Route Tables, Etc

I've watched hours upon hours of tutorials and have read until my eyes were about to bleed, but I just cannot seem to grasp how Amazon VPCs are working. I've created and deleted entire VPC environments with EC2 instances various times following…
1
vote
1 answer

WCF Http RouteTables (for versioning)

I currently have something like this for my route table. Is there a nicer way to handle versioning in WCF Web API or conventional WCF? RouteTable.Routes.MapServiceRoute("1.0/Route1",…
Luke Belbina
  • 5,708
  • 12
  • 52
  • 75
1
vote
1 answer

AWS route table priority

My subnet is attached to a route table with following two routes: 10.25.0.0/16, pcx-abc 10.25.0.0/16, pcx-bcd Both of the them are vpc peerings with VPCs in two other accounts. In this case, since the CIDR block ranges are the same, when sending a…
Z.SP
  • 319
  • 1
  • 2
  • 12