Questions tagged [router]

A router is a device that forwards data packets across multiple networks. DO NOT USE THIS TAG FOR QUESTIONS REGARDING URL ROUTING OR SINGLE PAGE APPLICATION ROUTERS

NOTE: This tag should not be used for questions on configuring or port forwarding applications on routers. Such questions are off topic for StackOverflow, and should be directed to SuperUser instead. Questions involving routing in single page applications should insetad be tagged with the appropriate routing library such as or . Question asking about routing server side applications should be tagged with and the appropriate framework.

Excerpt from Wikipedia on March 29th 2011:

A router is a device that forwards data packets across computer networks. Routers perform the data "traffic directing" functions on the Internet. A router is a microprocessor-controlled device that is connected to two or more data lines from different networks. When a data packet comes in on one of the lines, the router reads the address information in the packet to determine its ultimate destination. Then, using information in its routing table, it directs the packet to the next network on its journey. A data packet is typically passed from router to router through the networks of the Internet until it gets to its destination computer. Routers also perform other tasks such as translating the data transmission protocol of the packet to the appropriate protocol of the next network, and preventing unauthorized access to a network by the use of a firewall.

The most familiar type of routers are home and small office routers that simply pass data, such as web pages and email, between the home computers and the owner's cable or DSL modem, which connects to the Internet (ISP). However more sophisticated routers range from enterprise routers, which connect large business or ISP networks up to the powerful core routers that forward data at high speed along the optical fiber lines of the Internet backbone.

3818 questions
1
vote
0 answers

Angular router.es5.js - Cannot read property 'path' of undefined, Cannot read property 'canonicalUrl' of undefined

I used the breeze TempHire sample project (found here: http://breeze.github.io/doc-samples/temp-hire-angular.html ) as a starting point for my project. Upon booting this sample project, i already get a path error in the console (at…
HotTowelie
  • 123
  • 8
1
vote
1 answer

Restrict the server access from LAN only

Recently we got a new server at the office purely for testing purposes. It is set up so that we can access it from any computer. However today our ip got blocked from one of our other sites saying that our ip has been suspected of having a virus…
corymathews
  • 12,289
  • 14
  • 57
  • 77
1
vote
1 answer

Can I code an app that share a music stream on Iphone ( using the phone as a router )

I'm an novice apple developper, actually working on Ios project for iOS 9 on xcode. I'm working as a freelance for a client, and this client needs an app to stream music. This app must be capable to share music, it means : A user has a music on his…
Gabson
  • 421
  • 1
  • 4
  • 20
1
vote
0 answers

Magento Front controller reached 100 router match iterations issue

I currently have a Magento site version 1.9.1.0 and have the "Front controller reached 100 router match iteration" reports. It's bringing down the site several times a day. I have followed the steps in this post Magento "Front controller reached…
1
vote
0 answers

Forwarding to Product View page from Category page Not Working

I am trying to forward every category page to a product view page using an event observer. But it seems to be not working. Scenario : I am playing around with Magento router now. As part of this, I am trying to forward every category page in my…
Rajeev K Tomy
  • 2,206
  • 1
  • 18
  • 35
1
vote
0 answers

Python to log scapy scan

I am using Scapy to scan for Wireless Probes form devices a our office environment. I am using an OpenWrt Router for it. I am using the Python script (see below). Now I need help to let Scapy log the Scan that I run while starting the router. While…
Chrisvr
  • 9
  • 4
1
vote
1 answer

Spring Integration Java DSL - Set RecepientListRouter recipients dynamically?

I have a method which needs to execute multiple tasks async'ly.. I've managed to achieve that using the following IntegrationFlow: @Bean public IntegrationFlow startJobTask() { return IntegrationFlows.from("TaskRoutingChannel") …
Ocelot
  • 1,733
  • 4
  • 29
  • 53
1
vote
1 answer

onHttpError in klein.php executes every time

I'm using klein.php router, which is really powerful, But Now I want to handle exceptions, so from the documentations I'm using this function $klein->onHttpError(function ($code, $router,$matched,$method_matched,$http_exception) { switch ($code) { …
user3515181
  • 49
  • 1
  • 8
1
vote
1 answer

How To Edit Router Web Interface

I am using TalkTalk Huawei HG635. I was wondering is there any way to edit web interface to add hidden link to navigation. I want to access html files to add button to access hidden links.
ErcanE
  • 1,571
  • 3
  • 19
  • 28
1
vote
1 answer

Router Latency, when network have different bandwidth

I have a question: I have a 4Mbit Connection on the one side (call it Side A) and a 1Gbit connection on the other side (side B) of a router. If now a packet of 1500 bytes is coming in on Side A. Does the router wait until it received everything of…
megaflux
  • 33
  • 1
  • 4
1
vote
2 answers

How can I force URL params to appear in URL in ui-router?

I have a simple users.list state, configured like this: $stateProvider.state('users.list', { url: '/users/list?type', reloadOnSearch: false, templateUrl: 'templates/users/list.html', params: { type: { value: 'all' }, }, }); I'm trying…
Denis Lins
  • 816
  • 7
  • 22
1
vote
1 answer

Symfony2: How to get the route prefix

What I wonder to do is that I have an admin panel which I can access with 'admin' prefix but it's accessible only if you go toward the configuration page first. For that aim, I've created a Listener event as follow:
Abdou Bestmood
  • 475
  • 4
  • 15
1
vote
2 answers

angular2 router in service?

I'm building an app with angular2 alpha27 and systemjs. It's supposed to be a big app one day and many components are supposed to use links inside the app. For the moment, to determine the router config I put this into app.ts: @RouteConfig([ {…
kakaja
  • 714
  • 2
  • 9
  • 22
1
vote
2 answers

Is it a good idea to allow the router to look up controllers from a database?

In most of the tutorials for PHP MVC design structures, a router class is used to take user input and look up the right controller in order to process that input accurately. The input normally takes the form of a url. For example…
Rupert Madden-Abbott
  • 12,899
  • 14
  • 59
  • 74
1
vote
2 answers

Ui-router URL changes, nested view not loading

I've been working on an app and had done it before with ui-router but with ionic and it worked. As in the title, the URL changes correctly to what I'd expect, however nothing happens after. I know that the template is correctly found because it's…