5 pts.
 how can we configure a 36 port router?
how to install, configure and use a cisco 36 port router?



Software/Hardware used:
cisco 36 port router
ASKED: September 28, 2009  1:58 PM
UPDATED: November 6, 2009  6:47 PM

Answer Wiki:
Please provide more details about specific model and what connectivity is required. There should also be some type of quickstart documentation with the device. You should also have received a copy of detailed documentation on a CD with the device. If your familiar with cisco routers, almost all of it has the same configuration, it only differs from some features. Of course higher model comes greater features. To make sure of your configuration, please provide more details.
Last Wiki Answer Submitted:  November 4, 2009  5:44 am  by  Labnuke99   32,645 pts.
All Answer Wiki Contributors:  Labnuke99   32,645 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Hardware and purpose would be necessary. Are you actually looking at a router with a switching module, maybe, that has 36 ports for switching, plus a couple on the chassis for MPLS connectivity? Those are configured differently than a router that actually has 36 full routed ports.

If using a switching module, you have to allocate ports to VLANS, and then configure the VLANS as virtual router ports, with IP addresses – possibly just one per VLAN for a remote office; and possibly less than 5 vlans in total – conceivably even just one or two for, say, clients and servers.

int vlan 3
ip address 10.1.1.1 255.255.255.0

int fast 0/0/1
switchport access vlan 3
int fast 0/0/2
switchport access vlan 3
… etc.
(not sure if you can use the shortcut of
int range fast 0/0/1-36
switchport access vlan 3
^z)

 920 pts.