Questions tagged [routetable]

63 questions
0
votes
1 answer

cdk python transit gateway route table entry

Using cdk I'm trying to make a route table entry. The target I'm trying to add is a transit gateway. I'm using the Subnet construct and the add_route() method. https://docs.aws.amazon.com/cdk/api/latest/python/aws_cdk.aws_ec2/Subnet.html There is a…
deep_blue
  • 85
  • 1
  • 7
0
votes
2 answers

cdk python making route table entries

Is it possible to add route entries to a route table via cdk? The way I tried is: using a vpc construct I tried to iterate over the public_subnets + private_subnets attributes lists to get the routeTables. But these return IRouteTable -- with which…
deep_blue
  • 85
  • 1
  • 7
0
votes
1 answer

Error :The deployment parameters are using case sensitive names. The error parameter name(s): name.(ARM template deployment)

I am creating ARM template for Route table creation. A simple ARM template downloaded from the template deployment is failing. After I run the ARM template, it asks for the name and throws the below error. I have tried giving names like routeVnet,…
Asterix
  • 331
  • 6
  • 22
0
votes
1 answer

Routing decision in AWS route table

In AWS, if could you look at above picture, I understand that if any instance in subnet's attached to route table, is trying to hit the IP address between (10.0.0.0-10.0.255.255) should go to local, it should not go the Internet. Let's assume I…
0
votes
0 answers

Trie for Longest Prefix Match

Suppose I have a route_table_entry structure with these fields: typedef struct route_table_entry { uint32_t prefix; uint32_t next_hop; uint32_t mask; int interface; } route_table_entry; And I want to build a Trie for the Longest…
C. Cristi
  • 569
  • 1
  • 7
  • 21
0
votes
1 answer

Consolidating redundant declarations for a REST-full WCF service

I'm using .NET 4 WCF to expose the following REST-full webservice [OperationContract] [WebGet] void Test(); Since this is a developer oriented program, I want to support REST-full HTTP developers and also developers that like to use a WSDL.…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
0
votes
1 answer

Why is ipRouteMetric1 affected by ipRouteProto in snmp ipRouteTable?

I am doing a simulation of the network topology. I found that when using the rip protocol, the ipRouteMetric1 value is 1. I use this value to determine the device near the current router. When using the ospf protocol, the value of the nearby router…
trgbishi
  • 55
  • 1
  • 2
  • 10
0
votes
1 answer

What's the syntax of this route register statement

routes.Add(new Route("Catalog/{color}", new MvcRouteHandler()) { Defaults = new RouteValueDictionary( new { controller = "Products", action = "List" } ) }); I don't quite understand the above syntax, as far as i know, it adds a new route…
Kma
  • 1
  • 2
0
votes
1 answer

what is the main difference between the Main and custom route table with suitable real time example?

I understood how to create and edit the custom and main route tables. I found some AWS questions with both options(Main vs Custom). We have to select the best one. How they differ and when I have to use a custom route table over Main route table…
Srinivas
  • 51
  • 4
0
votes
2 answers

Not able to remove 10.0.0.0/8 from route table aws vpc

I do not have classic link enable for my vpc may be we had earlier but there is an entry(10.0.0.0/8) in my vpc route table and there is no option to remove it .how can i remove it .
0
votes
2 answers

How use WMI add route table with C#

I want to use Win32_IP4RouteTable to add route table code: ManagementClass wmiclass = new ManagementClass("Win32_IP4RouteTable"); ManagementObject route = wmiclass.CreateInstance(); route["Destination"] = "145.63.20.102"; route["NextHop"] =…
Quinlan
  • 1
  • 2
0
votes
1 answer

How to set up routetable correctly to direct URL to controller action

In MVC 5 application, I want to accept two different kinds of request URL: http://www.myapp.com/brand/controller/action http://www.myapp.com/controller/action Both URL should be directed to controller action. I tried to include optional parameter…
Jason Li
  • 1,194
  • 2
  • 11
  • 17
0
votes
1 answer

Adding a variable to routeconfig ASP.net

I am generating my routeconfig from a database. I have a file combine.aspx which combines all data into a virtual webpage. Right now the routing is working, however I have a problem. I want the url to look like this: www.domain.com/Home This is…
PieterSchool
  • 499
  • 4
  • 15
0
votes
1 answer

Why runAllManagedModulesForAllRequests on true when using Systme.Web.Routing.Route

Based on an article of Scott Hanselman we always had the option runAllManagedModulesForAllRequests on false in our Webforms project. Also we have a few routes.MapPageRoute configurations running succesfully. Now we need to add ICS (internet…
JonHendrix
  • 933
  • 15
  • 28
0
votes
0 answers

(400) Bad Request - when calling a SOAP service with transferMode=Streamed

I am getting (400) Bad Request returned when I call a WCF service via SOAP where the method takes a single parameter of type Stream and the transferMode=Streamed. I get this exception only when I publish the service using the RouteTable…