Questions tagged [routetable]
63 questions
1
vote
0 answers
Terraform AWS - How to change default route to an existing route table from nat-gateway to ec2?
I have a private subnet with default route targeting to a nat-gateway. Both were created by terraform.
Now I have another code to raise an ec2 to use as NAT in my VPC (as cloud-nat-gateway become very expensive). I'm trying to change the default…

Norberto
- 21
- 3
1
vote
1 answer
Route traffic of a Client VPN VPC to an instance in the same VPC
I have a use-case where a remote device (ie. Laptop) is connected to the AWS Client VPN endpoint. Client VPN endpoint has a VPC/subnet associated and I want to see the traffic generated on different ports of my laptop in my VPC.
The client (i.e.…

instanceOfObject
- 2,936
- 5
- 49
- 85
1
vote
1 answer
AWS VPC Route Table - Change default route table
Is it possible to change the route table associated with a VPC? I am using CloudFormation and have created my own RT and associated subnets with it. However, since the VPC is using the default route table and it claims that I have not explicitly…

Spechal
- 2,634
- 6
- 32
- 48
1
vote
1 answer
Subnet association change in route table of VPC stopped it working
I was working with one of our VPC which was created through CF stack. I manually change the subnet association to the router attached to the VPC after that, the networking seems totally down.
I tried to associate all the subnets to route table of…

Bhavik Joshi
- 2,557
- 6
- 24
- 48
1
vote
2 answers
GetIpForwardTable returns garbage on WIndows CE with PInvoke
I have a following problem. I created a PInvoke in a Windows CE .NET managed project for GetIpForwardTable function. When I call the function in returns the result, but the results are different from the result returned by the route command. There…

Bogi
- 2,274
- 5
- 26
- 34
1
vote
0 answers
Access S3 from aws lambda
I made a aws lambda function that reads s3 data and process.
It was working fine (was able to read my bucket or someone else's bucket when I have credentials),
Then, I added VPC for elasticache. After doing some config stuff (vpc), It worked fine…

kevinJiang99
- 81
- 1
1
vote
1 answer
Removing Specific Routes from ASP.NET 4 RoutesTable
my site has many many routes. since the users can add or remove pages at will, i need a way to reregister the routes from time to time
at reregister i do not want to clear the whole route cache ("RouteTable.Routes.Clear"), but i would rather go thru…

Yisroel M. Olewski
- 1,560
- 3
- 25
- 41
1
vote
1 answer
ASP.NET MVC Routing two parameters with static string in between
This is my routing:
routes.MapRoute(null,
"shelves/{id1}/products/{action}/{id2}",
new { controller = "Products", action = "List", id1 = "", id2 = ""});
The thought is that you can do something like…

Daniel T.
- 37,212
- 36
- 139
- 206
1
vote
0 answers
Need to fix route table to allow local connections
I'm using a couple of different VPN products on Windows 7 which DO NOT allow for configuring of the split tunnel. I know it's possible to modify the route table after the vpn is connected, but i haven't some trouble getting it to work given other…

mswanson
- 283
- 3
- 8
0
votes
1 answer
Refresh Routing Table on Windows 2003
Is it possible to refresh the routing table on a server running Windows 2003 without a reboot? If so, how?

macleojw
- 4,113
- 10
- 43
- 63
0
votes
1 answer
How to define the RouteTable in VB.NET?
[Route Table 1][1]
This image shows how to define the RouteTable in C#, using the Route Class. How to define it in VB.NET?

kurozakura
- 2,339
- 8
- 28
- 41
0
votes
0 answers
Does the client socket connect need a route table even if it bind a specific ip?
here explain why need client socket bind,
https://stackoverflow.com/questions/4118241/what-client-side-situations-need-bind
my question is:
if I bind a specific source ip before connect,
does this connection need an item in route table?
After…

xiaoming
- 1,069
- 8
- 10
0
votes
0 answers
How could nmcli adding route table being so slow?
I`m using the command like the follows to add a route table, which contains 5000 lines, but it could take minutes to run!
nmcli connection modify enp1s0 +ipv4.routes "192.168.122.0/24 10.10.10.1"
On the contrary, the ip route add 192.168.122.0/24…

zohar
- 21
- 2
0
votes
0 answers
Routes in VPC (AWS). The error: the packet's destination address matches a more specific route
I am trying to describe VPC using terraform, like this article
https://networkfirewall.workshop.aws/setup/distributedmodel.html
# VPC
resource "aws_vpc" "eu-central-1" {
cidr_block = "10.11.0.0/16"
}
resource "aws_subnet" "private_a" {
vpc_id …

Roman
- 1
0
votes
2 answers
Android: get route info programmatically
I am sending UDP packets to a remote, and I would like to know the IP of the local interface that will be used for that. In a shell I would run:
ip route get 192.168.1.54
and it would answer something like:
192.168.1.12 dev wlan0 table…

JonasVautherin
- 7,297
- 6
- 49
- 95