Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the knowledge to do subnetingmath, but I confused what device that is used to separate each subnet from other ones? who will route packets to the right subnetwork destination? If it is the router, do we need an interface per each subnetwork?

share|improve this question

closed as off topic by Flexo Apr 4 at 17:43

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 1 down vote accepted

It is the router the one in charge of routing the packets to the right subnetworks. You need to assign each subnetwork to a different interface, but this does not necessarily mean physical interfaces. You can use virtual interfaces as well.

Here's a Cisco link about them:

http://www.cisco.com/en/US/docs/ios/12_4/interface/configuration/guide/inb_virt.html

share|improve this answer

If you have multiple internal subnets, the industry standard is to create sub-interfaces and encapsulate as a DOT1Q trunk between the router and the switch.

Example R1

Interfaces:

S0/0/0 - used for WAN Fa0/1 -physical internal interface Fa0/1.100 Data VLAN (sub-interface) Fa0/1.200 Voice VLAN (sub-interface)

Switch. Will have VLANs 100 and 200 on it and the trunk port will be configured as encapsulation DOT1Q. With these commands. "switchport mode trunk" "switchport trunk encapsulation dot1q"

I have literally done this thousands of times. Don't waste money on separate router interfaces for internal subnets.

Hope this helps.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.