Wednesday, May 8, 2013

'cisco' Routing Protocol - Fundamental Stuff

CCNA Routing

Layer-3 devices are generically called routers. Routers basically have two functions:

1. To find a layer-3 path to a destination network
2. To move packets from one interface to another to get a packet to its destination

In order to accomplish the first function, a router will need to:

- Learn about routers it is connected to in order to learn the networks that they know about
- Find locations of destination network numbers
- Choose a best path to each destination
- Maintain the most up-to-date routing information about how to reach destination networks

Types of Routes

A router can learn a route via one of two methods: static and dynamic. A static route is a route that is manually configured on the router. Dynamic routes are routes that a router learns by running a routing protocol. Routing protocols will learn about routes from other neighboring routers running the same routing protocol.

Administrative Distance

Administrative distance ranks the IP routing protocols, assigning a value, or weight, to each protocol. Distances can range from 0 to 255. A smaller distance is more believable by a router, with the best distance being 0 and the worst, 255.

Static Route Configuration

Router(config)# ip route destination_network_# [subnet_mask] IP_address_of_next_hop_neighbor
[administrative_distance]
or
Router(config)# ip route destination_network_# [subnet_mask] interface_to_exit [administrative_distance]

Default Route Configuration

A default route is a special type of static route.Where a static route specifies a path a router should use to reach a specific destination, a default route specifies a path the router should use if it doesn't know how to reach the destination.

Router(config)# ip route 0.0.0.0 0.0.0.0 IP_address_of_next_hop_neighbor [administrative distance]
Or
Router(config)# ip route 0.0.0.0 0.0.0.0 interface_to_exit [administrative_distance]

Dynamic Routing Protocols

Dynamic routing protocols learn about destination networks from neighboring routers. Dynamic routing protocols fall under one of three categories: distance vector, link state, and hybrid. Because of the differences between the various routing protocol types, each has advantages and disadvantages.

Distance Vector Protocols

Distance vector protocols are the simplest. Distance vector routing protocols use the distance and direction (vector) to find paths to destinations. Most distance vector protocols use the Bellman-Ford algorithm for finding paths to networking destinations. Some examples of IP routing protocols that are distance vector are RIPv1 and IGRP. Distance vector protocols periodically use local broadcasts with a destination IP address of 255.255.255.255 to share routing information.

Processing Updates

When a distance vector protocol receives a routing update, it performs these steps:

1. Increment the metrics of the incoming routes in the advertisement (for IP
RIP, add 1 to the hop count).
2. Compare the network numbers in the routing update from the neighbor
to what the router has in its routing table.
3. If the neighbor's information is better, place it in the routing table and remove the old entry.
4. If the neighbor's information is worse, ignore it.
5. If the neighbor's information is exactly the same as the entry already in the table, reset the timer for the entry in the routing table (in other words, the router already learned about this route from the same neighbor).
6. If the neighbor's information is a different path to a known destination network, but with the same metric as the existing network in the routing table, the router will add it to the routing table along with the old one. This assumes you have not exceeded the maximum number of equal-cost paths for this destination network number.

The six steps are generally referred to as the Bellman-Ford algorithm.

Link State Protocols

Link state protocols use an algorithm called the Shortest Path First (SPF) algorithm, invented by Dijkstra, to find the best path to a destination. Examples of link state protocols include IP's OSPF. Whereas distance vector protocols use local broadcasts to disseminate routing information, link state protocols use multicasts. A distance protocol will send out its routing table religiously on its periodic interval whether there are changes or not. Link state protocols are smarter. They multicast what is called a Link State Advertisement (LSA), which is a piece of routing information that contains who originated the advertisement and what the network number is. LSAs are typically generated only when there are changes in the network. link state routers send out only incremental updates. Advantage that link state protocols have over distance vector protocols is that they support route classless routing [VLSM].

Hybrid Protocols

A hybrid protocol takes the advantages of both distance vector and link state protocols and merges them into a new protocol. Typically, hybrid protocols are based on a distance vector protocol but contain many of the features and advantages of link state protocols. Examples of hybrid protocols include RIPv2, EIGRP.

Problems with Distance Vector Protocols

Problem: Convergence

The term convergence, in routing terms, refers to the time it takes for all of the routers to understand the current topology of the network. Link state protocols tend to converge very quickly, while distance vector protocols tent to converge slowly.

Solution: Triggered Updates

You actually have two solutions that you can use in order to speed convergence: change the periodic timer interval and/or use triggered updates.

Problem: Routing Loops

A routing loop is a layer-3 loop in the network. Basically, it is a disagreement about how to reach a destination network. Packet Loops in the Network.
Solution: Maximum Hop Count: IP RIP set a hop count limit of 15, by default, and IGRP allows a hop count of 100.

Solution: Split Horizon

Split horizon is used with small routing loops. Split horizon states that if a neighboring router sends a route to a router, the receiving router will not propagate this route back to the advertising router on the same interface.

Solution: Route Poisoning

Whereas split horizon is used to solve small routing loop problems, distance vector protocols use two mechanisms to deal with large routing loop problems: route poisoning and hold down timers. Route poisoning is a derivative of split horizon. When a router detects that one of its connected routes has failed; the router will poison the route by assigning an infinite metric to it. In IP RIP, the route is assigned a hop count of 16 (15 is the maximum), thus making it an unreachable network.

When a router advertises a poised route to its neighbors, its neighbors break the rule of split horizon and send back to the originator the same poisoned route, called a poison reverse. This ensures that everyone received the original update of the poisoned route.

Hold-Down Timers

In order to give the routers enough time to propagate the poisoned route and to ensure that no routing loops occur while propagation is occurring; the routers implement a hold-down mechanism. During this period, the routers will freeze the poisoned route in their routing tables for the period of the hold-down timer, which is typically three times the interval of the routing broadcast update. 180 Sec's

RIP (Routing Information Protocol)

IP RIP (Routing Information Protocol) comes in two different versions: 1 and 2. Version 1 is a distance vector protocol. Version 2 is a hybrid protocol. RIPv1 uses local broadcasts to share routing information. These updates are periodic in nature, occurring, by default, every 30 seconds, with a hold-down period of 180 seconds. Both versions of RIP use hop count as a metric, which is not always the best metric to use. RIPv1 is a classful protocol. Another interesting feature is that RIP supports up to six equal-cost paths to a single destination. The default is actually four paths, but this can be increased up to a maximum of six.

RIPv2

One major enhancement to RIPv2 pertains to how it deals with routing updates. Instead of using broadcasts, RIPv2 uses multicasts. And to speed up convergence, RIPv2 supports triggered updates-when a change occurs, a RIPv2 router will immediately propagate its routing information to its connected neighbors. A second major enhancement that RIPv2 has is that it is a classless protocol. RIPv2 supports variable-length subnet masking (VLSM), which allows you to use more than one subnet mask for a given class network number.

Configuring IP RIP

Router(config)# router rip
Router(config-router)# network IP_network_#
Specifying RIP Version 1 and 2
Router(config)# router rip
Router(config-router)# version 1|2
Troubleshooting IP RIP
show ip protocols
show ip route
debug ip rip
debug ip rip

IGRP (Interior Gateway Routing Protocol)

The Interior Gateway Routing Protocol (IGRP) is a Cisco-proprietary routing protocol for IP. Like IP RIPv1, it is a distance vector protocol. However, it scales better than RIP because of these advantages:

- It uses a sophisticated metric based on bandwidth and delay.
- It uses triggered updates to speed-up convergence.
- It supports unequal-cost load balancing to a single destination. IGRP uses a composite metric, which includes bandwidth, delay, reliability, load, and MTU, when choosing paths to a destination. By default, the algorithm uses only bandwidth and delay

Configuring IP IGRP

Router(config)# router igrp autonomous_system_#
Router(config-router)# network IP_network_#

Unlike RIP, IGRP understands the concept of an autonomous system and requires you to configure the autonomous system number in the routing process. For routers to share routing information, they must be in the same AS.

Load Balancing

With RIP, you don't need to configure anything to enable equal-cost load balancing; and RIP doesn't support unequal-cost load balancing. IGRP supports both equal- and unequal-cost paths for load balancing to a single destination. Equal-cost paths are enabled by default, where IGRP supports up to six equal-cost paths (four by default) to a single destination in the IP routing table. IGRP, however, also supports unequal-cost paths, but this feature is disabled by default.

The variance feature allows you to include equal- and unequal-cost IGRP routes in the routing table.

Router(config-router)# variance multiplier
Troubleshooting IP IGRP
show ip protocols
show ip route
debug ip igrp events
debug ip igrp transactions

OSPF(Open Shortest Path First)

The Open Shortest Path First (OSPF) protocol is a link state protocol that handles routing for IP traffic. Because it is based on an open standard, OSPF is very popular in many corporate networks today and has many advantages, including these:

- It will run on most routers, since it is based on an open standard.
- It uses the SPF algorithm, developed by Dijkstra, to provide a loop-free topology.
- It provides fast convergence with triggered, incremental updates via Link State Advertisements (LSAs).
- It is a classless protocol and allows for a hierarchical design with VLSM and route summarization.

Given its advantages, OSPF does have its share of disadvantages:

- OSPF maintains three types of tables. So it requires more memory to hold the adjacency (list of OSPF neighbors), topology (a link state database containing all of the routers and their routes), and routing tables.
- It requires extra CPU processing to run the SPF algorithm, which is especially true when you first turn on your routers and they are initially building the adjacency and topology tables.
- For large networks, it requires careful design to break up the network into an appropriate hierarchical design by separating routers into different areas.
- It is complex to configure and more difficult to troubleshoot.

Hierarchical Design: Areas

Areas are used to provide hierarchical routing. Basically, areas are used to control when and how much routing information is shared across your network. In flat network designs, such as IP RIP, if a change occurs on one router, perhaps a flapping route problem, it affects every router in the entire network. With a correctly designed hierarchical network, these changes can be contained within a single area. OSPF implements a two-layer hierarchy: the backbone (area 0) and areas off of the backbone. Through a correct IP addressing design, you should be able to summarize routing information between areas. By performing this summarization, the routers have a smaller topology database (they know only about links in their own area and the summarized routes) and their routing tables are smaller (they know only about their own area's routes and the summarized routes).

Metric Structure

Unlike RIP, which uses hop count as a metric, OSPF uses cost. Cost is actually the inverse of the bandwidth of a link: the faster the speed of the connection, the lower the cost. The most preferred path is the one with the lowest cost. By using cost as a metric, OSPF will choose more intelligent paths than RIP. OSPF supports load balancing of up to six equal-cost paths to a single destination. The default measurement that Cisco uses in calculating the cost metric is: cost = 10 ^8/(interface bandwidth).

Router Identities

Each router in an OSPF network needs a unique ID. The ID is used to provide a unique identity to the OSPF router. This is included in any OSPF messages the router generates. The router ID is chosen according to one of the two following criteria:

- The highest IP address on its loop back interfaces (this is a logical interface on a router)
- The highest IP address on its active interfaces

It is highly recommended that you use a loop back interface because it is always up and thus the router can obtain a router ID.

Finding Neighbors

OSPF learns about its neighbors and builds its adjacency and topology tables by sharing LSAs. There are different types of LSAs. When learning about the neighbors that a router is connected to, as well as keeping tabs on known neighbors, OSPF routers will generate hello LSAs every 10 seconds. When a neighbor is discovered and an adjacency is formed with the neighbor, a router expects to see hello messages from the neighbor. If a neighbor is not seen within the dead interval time, which defaults to 40 seconds, the neighbor is declared dead. When this occurs, the router will advertise this information, via an LSA message, to other neighboring OSPF routers. In order for two routers to become neighbors, the following must match on each router:

- The area number and its type
- The hello and dead interval timers

Let's assume that you turned on all your routers simultaneously on a segment. In this case, the OSPF routers will go through three states called the exchange process:

1. Down state the new router has not exchanged any OSPF information with any other router.
2. Init state A destination router has received a new router's hello and adds it to its neighbor list (assuming that certain values match). Note that communication is only unidirectional at this point.
3. Two-Way state the new router receives a unidirectional reply to its initial hello packet and adds the destination router to its neighbor database. Once the routers have entered a two-way state, they are considered neighbors. At this point, an election process takes place to elect the designated router (DR) and the backup designated router (BDR).

Designated and Backup Designated Routers

An OSPF router will not form adjacencies to just any router. Instead, a client/server design is implemented in OSPF. For each network multi-access segment, there is a DR and a BDR as well as other routers. When an OSPF router comes up, it forms adjacencies with the DR and the BDR on each multi-access segment that it is connected to. Any exchange of routing information is between these DR/BDR routers and the other OSPF neighbors on a segment (and vice versa). An OSPF router talks to a DR using the IP multicast address of 224.0.0.6. The DR and the BDR talk to all routers using the 224.0.0.5 multicast IP address.

The OSPF router with the highest priority becomes the DR for the segment. If there is a tie, the router with the highest router ID will become the DR. By default, all routers have a priority of 1 (priorities can range 0-255). If the DR fails, the BDR is promoted to DR and another router is elected as the BDR. OSPF uses incremental updates. This means that whenever changes take place, only the change is shared with the DR, which will then share this information with other routers on the segment. OSPF routers share information about their connected routes with the DR, which includes the link-state type, the ID of the advertising router, the cost of the advertised link, and the sequence number of the link.

Configuring OSPF

Router(config)# router ospf process_ID
Router(config-router)# network IP_address wildcard_mask area area_#

Note that process ID do not need to match between different routers and that they have nothing to do with autonomous system numbers.

A wildcard mask is 32 bits in length. A 0 in a bit position means there must be a match, and a 1 in a bit position means the router doesn't care. Actually, a wildcard mask is an inverted subnet mask, with the 1's and 0's switched.

Class A: 0.255.255.255.255
Class B: 0.0.255.255
Class C: 0.0.0.255

Loopback Interfaces

A loopback interface is a logical, virtual interface on a router. By default, the router doesn't have any loopback interfaces, but they can easily be created. Here are some reasons you might want to create a loopback interface:

- To assign a router ID to an OSPF router
- To use for testing purposes, since this interface is always up

To create a loopback interface, use the following command:

Router(config)# interface loopback port_#
Router(config-if)# ip address IP_address subnet_mask

Troubleshooting OSPF

• show ip protocols
• show ip route
• show ip ospf interface
• show ip ospf neighbor
• debug ip ospf adj
• debug ip ospf events
• debug ip ospf packet

EIGRP (Enhanced Interior Gateway Routing Protocol)

The Enhanced Interior Gateway Routing Protocol (EIGRP) is a Cisco-proprietary routing protocol for IP. It's actually based on IGRP, with many enhancements built into it. These characteristics include:

- Fast convergence
- Loop-free topology
- VLSM and route summarization
- Multicast and incremental updates
- Routes for multiple routed protocols (Supports IP, IPX, APPLE TALK)

Characteristics of EIGRP

Both offer load balancing across six paths (equal or unequal).

- They have similar metric structures.
- EIGRP has faster convergence (triggered updates and saving a neighbor's
routing table locally).
- EIGRP has less network overhead, since it uses incremental updates.

EIGRP and IGRP use the same metric structure. Both can use bandwidth, delay, reliability, and MTU when computing a best metric path to a destination. By default, only bandwidth and delay are used in the metric computation. One interesting point about these protocols is that if you have some routers in your network running IGRP and others running EIGRP, and both sets have the same autonomous system number, routing information will automatically be shared between the two.

EIGRP uses the Diffusing Update Algorithm (DUAL) to update the routing table. This algorithm can enable very fast convergence by storing a neighbor's routing information in a local topology table. If a primary route in the routing table fails, DUAL can take a backup route from the topology table and place this into the routing table without necessarily having to talk to other EIGRP neighboring routers to find an alternative path to the destination.

Interaction with Other EIGRP Routers

EIGRP uses hello packets to discover and maintain neighbor relationships, much as OSPF does. EIGRP generates hello packets every 5 seconds on LAN, point-to-point, and multipoint connections with speeds of at least T1/E1 speeds. Otherwise, hellos are generated every 60 seconds. The dead interval period is three times the hello interval. EIGRP uses the multicast address of 224.0.0.10 for the destination in the hello packets.

For EIGRP routers to become neighbors, the following information must match:

- The AS number
- The K-values (these enable/disable the different metric components)

When two routers determine whether they will become neighbors, they go through the following process:

1. The first router generates a Hello with configuration information.
2. If the configuration information matches, the second router responds with an Update message with topology information.
3. The first router responds with an ACK message, acknowledging the receipt of the second's ACK.
4. The first router sends its topology to the second router via an Update message.
5. The second router responds back with an ACK.

At this point, the two routers have converged.

Here are the message types for which an EIGRP router expects an ACK back:

- Update Contains a routing update
- Query Asks a neighboring router to validate routing information
- Reply Responds to a query message

If an EIGRP router doesn't receive an ACK from these three packet types, the router will try a total of 16 times to resend the information. After this, the router declares the neighbor dead. When a router sends a hello packet, no corresponding ACK is expected.

Configuring EIGRP

Setting up EIGRP is almost as simple as configuring IGRP:

Router(config)# router eigrp autonomous_system_#
Router(config-router)# network IP_network_#

You must specify the AS number when configure EIGRP. Even though EIGRP is classless, you must
configure it as a classful protocol when specifying your network numbers with the network command.

Troubleshooting EIGRP

- show ip protocols
- show ip route
- show ip eigrp neighbors
- show ip eigrp topology
- show ip eigrp traffic
- debug ip eigrp

Tuesday, May 7, 2013

D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN by D-Link

D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN

Blowing your thoughts making use of the limitless creation with out any doubt, Base on all our understanding and encounter in our product innovation. Generating your method to the comfort life with our merchandise one in the most international exclusive D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN. This is possibly the most talk about merchandise that had been passing on from time to time. The searching for a suitable spending away your spending budget is finish here with us. As lots of individuals had been getting encounter in getting an owner, they're all actually satisfied, why spend significantly much more than what you actually should have.


D-Link usually spend attention on item good quality and also suitable value. The attentively productions are in each and every single step. That's why D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN turn into well-known just. This product is an advance selection within the sector within the moment. You will discover plenty advertising and significantly much more possibilities on digital communication to draw you attention.

With our ideal of team technicians are considerate to this creation for you and your home. We are actually confident that you will likely be fulfilled. D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN is going to be your life benefit for your tough extended work. You'll by no implies know till you've a touch of our fine invention idea and receiving it for your stunning property. In case you are thinking to develop into one of our prospects, We are able to guaranty that you just may well be exceptionally pleased.

D-Link EBR-2310 Ethernet Broadband Router. ETHERNET BROADBAND ROUTER 4-PORT 10/100MBPS FIXED. 4 x 10/100Base-TX LAN, 1 x 10/100Base-TX WAN
You Save : Check Lower Price

  Check Offer listing

  • Standard Warranty: 1 Year Limited
  • Manufacturer/Supplier: D-Link Systems, Inc
  • Manufacturer Part Number: EBR2310
  • Brand Name: D-Link
  • Product Model: EBR-2310
  • Product Name: EBR-2310 Ether Broadband Router
  • Marketing Information: Share your broadband Inter connection to multiple computers in your house by simply connecting the D-Link Ether Broadband Router to your cable or DSL modem. Once connected, you can create your own personal home work to share documents, music, and photos.
  • Product Type: Router Appliance
  • Number of Ports: 5
  • Fast Ether Port: Yes
  • Interfaces/Ports: 4 x RJ-45 10/100Base-TX LAN, 1 x RJ-45 10/100Base-TX WAN
  • Package Contents: Ether Broadband Router , CAT5 Ether Cable , Power Adapter , CD-ROM with Installation Wizard, Product Documentation and Special Offers

Sunday, May 5, 2013

What's the Distinction Between Lan and Wide Area Network?

For those who have a internet connection both at home and at work, or browse the newspapers regularly or keep an eye on the most recent technology trends, you might have frequently encounter references to systems. Systems of computer systems were connected with industries and government physiques just a few decades ago. In current occasions, getting a network in your own home is quite common. Both Neighborhood Systems (LANs) and Wide Area Systems (WANs) are utilized to provide networking for computer customers.

An average utilization of a LAN would be to provide Internet connectivity concurrently to any or all the customers in the home having a single Web connection. All of the Internet-capable products available in your home could be set up as nodes inside a LAN and could be attached to the Internet using a computer designated for this function. LANs may also be used for connecting work stations within an office atmosphere similarly for supplying use of shared assets like ink jet printers.

A LAN uses 10baseT twisted pair cables or wireless networking for connecting computer systems to create a network. You will find some vendor specific connectivity solutions readily available for proprietary LAN topologies.

WANs will also be comprised of systems of computer systems - the main difference from a LAN along with a WAN is basically certainly one of degree. A WAN might be made up of 1000's of LANs all networked together. A LAN may typically span a building whereas a WAN can cover a large physical area, transcending condition or national edges. Inside a LAN, the length covered is usually from the order of ft as opposed to a WAN where distances have an order of 1000's of miles.

A WAN is implemented by utilizing leased lines supplied by something provider or by utilizing packet switching systems to deliver the information inside the network. Probably the most well-known good examples of the WAN may be the Internet.

Saturday, May 4, 2013

Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN from Cisco

Sincerely hope You Are Set for the Latest Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN

During the endless struggle to offer the most current and naturally the very best Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN, our company will continue to strive to redesign the product. Though it may be probably not important to entirely redesign the product, we feel that our ground up method in the progression of our newest offering establishes our latest product light years ahead of our closest competition, instead of simply being satisfied to remain yet another participant of the same worn out products club.

Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN
You Save : Check Cheap Price

  Check Offer listing

Though there may be several very similar items available today, we understand that all of the researching which has gone in our most up-to-date Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN will definitely pay off. In lieu of settling for exactly the same capabilities that have always been there, our Ciscos resolved that this just wasn't adequate. Definitely we maintained every one of the amazing features you've come to count on from our products, nonetheless we've additionally included several fresh and really unique capabilities into it.

So as to make the Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN the very best product that can be purchased, we had to consult with our hardest test marketplace. You heard right we heard the people who truly matter when it comes to making our new products, we pay attention to just what our buyers tell us they require. At Cisco we all feel that while our designers create a good product, it is simply by hearing what you really want are we able to produce a genuinely great item that you can be more than happy to invest your money on.

Click here to see the Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN full review

Cisco 2921 Integrated Services Router. 2921 W/3 GE 4 EHWIC 3 DSP 1 SM 256MB CF 512MB DRAM IPB CONFIG. 4 x HWIC, 1 x SFP (mini-GBIC), 3 x PVDM, 2 x Services Module, 2 x CompactFlash (CF) Card - 3 x 10/100/1000Base-T Network WAN

  • Standard Warranty: 90 Day Limited
  • Manufacturer/Supplier: Cisco Systems, Inc
  • Manufacturer Part Number: CISCO2921/K9
  • Brand Name: Cisco
  • Product Series: 2900
  • Product Model: 2921
  • Product Name: 2921 Integrated Services Router
  • Marketing Information: The Cisco 2921 Integrated Services Router (ISR) delivers highly secure data, voice, video, and application service. The modular design of the router provides maximum flexibility, allowing you to configure your router to meet evolving needs. The routers offer features such as hardware-based virtual private network (VPN) encryption acceleration, intrusion-protection and firewall functions, and optional integrated call processing and voice mail.
  • Product Type: Multi Service Router
  • Number of Ports: 3
  • Gigabit Ethernet Port: Yes
  • Interfaces/Ports: 3 x RJ-45 10/100/1000Base-T Network WAN, 2 x Type A USB, 1 x Type B USB Management
  • Number of Expansion Slots: 12
  • Expansion Slots: (4 Total) HWIC, (1 Total) SFP (mini-GBIC), (3 Total) PVDM, (2 Total) Services Module
  • Standard Memory: 512 MB
  • Flash Memory: 256 MB
  • Compatible Rack Unit: 2U
  • Form Facto ...

Thursday, May 2, 2013

cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal by Cisco

cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal

We Already have Reinvented the cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal

The cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal has existed for countless years in a single variety or another but for the majority of these years, there's never been one which possibly came near to living up to the buzz that the Ciscos stated in most of their advertising. But we now have expended virtually vast amounts of money each year upon them simply to turn out tossing them in a cabinet or perhaps a closet disappointed.

At Cisco our organization investigated what was happening and the huge number of dissatisfied folks who ended up getting them. That brought us to make the decision that somebody simply had to basically transform the cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal. Even so, our staff members resolved that there were currently adequate sub-standard products on the market and if we were planning to get it done, we were going to do it properly, we are delighted to express that we have created among the very best products you may buy anyplace.

As we re-created the cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal, our organization set out to include the options that numerous other products are missing. This is exactly what we think it requires to become the top in the industry and we will never accept something less. We create each of our products to the best standards due to the fact we realize that you count on nothing less knowing that if you are planning to pay your money on a awesome product, you don't wish to waste it. What you need is to buy an item which will give you actual bang for your buck and we are sure that you will find our new model will do this for you.

cisco - hw routers l/m vic2-4fxo= 4port voice interface card fxo universal
You Save : Check Cheap Price

  Check Offer listing

Main Features

  • Limited Warranty: 90
  • Manufacturer/Supplier: Cisco Systems, Inc
  • Manufacturer Part Number: VIC2-4FXO=
  • Manufacturer Website Address:
  • Brand Name: Cisco
  • Product Name: Four-Port VIC Voice Interface Card (VIC)
  • Marketing Information: This VIC include 4-port foreign exchange station (FXS). This card cover a full range of digital voice and WAN connectivity options and provide connectivity to the world's PBXs, PSTNs, and Post, Telephone, and Telegraph (PTT) organizations.
  • Product Type: Voice Interface Card (VIC)
  • Application/Usage: Voice
  • Interfaces/Ports: 4 x FXO WAN
  • Interfaces/Ports Details: 4 x RJ-11 FXO WAN
  • Compatibility: NM-HD-1V Network Module , NM-HD-2V Network Module , NM-HD-2VE Network Module
      Supported Platforms: , 3745 , 3725 , 3660 series , 2691 , 2600XM series , 1760 , 1751


    Feature

    • New
    • CISCO - HW ROUTERS L/M VIC2-4FXO=
    • CISCO - HW ROUTERS L/M VIC2-4FXO= 4PORT VOICE INTERFACE CARD FXO UNIVERSAL

    Tuesday, April 30, 2013

    ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715) by ZyXEL

    ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715)
    List Price : $249.99

    You Save : Check Cheap Price

      Check Offer listing

    Have Entirely Reengineered the ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715)

    The last occasion you obtained a ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715), were you thrilled with it and also does the item accomplish everything the producer guaranteed it would accomplish or perhaps did you take it out of the box, try it one time and realize that it was an entire waste of money? Regretfully you'll find far too many of these items in the marketplace that will can not live up to the hype. At ZyXEL we set out to totally reengineer our variety of this selected merchandise.

    Precisely what our staff members desired was to duplicate the ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715) in a way that everyone who purchases one might discover that not only does it do everything which they anticipate the item to, in addition it really does so much more. It is something our competition obviously hasn't ever given a lot of thought to since they seem to be satisfied to wallow in mediocrity. We're quite happy with our products and are certain you'll be much more than pleased with the purchase.

    In the end might have settled for creating the perfect ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715) and left it just the way it is, our staff members realized that the most essential folks worldwide, our consumers, expect a lot more from us. Therefore basically we began using an exceptional simple model, our staff members began including a selection of amazing options in it that we was confident could solely produce a very good product into a great one. All of these functions as well as and extremely low price allow it to be one of the best bargains you are ever likely to discover.

    Click here to read our ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715) full review

    ZyXEL Wireless N 450 Mbps Concurrent Dual-Band Gigabit Router (NBG5715)

    Deploy the ultimate router solution for all your heavy multimedia networking needs. Having three dual-band antennas with MIMO technology generates extremely fast data transfer rate of up to 450 Mbps, the dual-band NBG5715 provides you ideal home network with high performance wireless Internet access for HD videos streaming, gaming and data transfer simultaneously. You can surf the web over common 2.4 GHz band and watch HD videos or play online games over interference-free 5 GHz band at the same time with smooth playback. Even better, the QoS will help you to enjoy smooth gaming or multimedia streaming. Equipped with the beam forming technology, the NBG5715 effectively extends wireless coverage to allow you to enjoy high-quality multimedia streaming in every room. With two NetUSB ports of the NBG5715, it allows you to easily share printer or media files stored in USB flash drives wirelessly with your friends and family everywhere at home. With four Gigabit Ethernet ports, the NBG5715 is designed for reliable high-performance video streaming with speeds 10 times faster than typical Ethernet connections and makes it easy to connect multiple wired devices. The Wi-Fi Multimedia (WMM) technology employed by the NBG5715 automatically prioritizes different network traffic types to optimize performance for enhanced audio, video and voice experience over wireless networks. In addition, as the configurable QoS technology ensures smooth delivery of gaming, video streaming, VoIP and downloading, your most important requests receive the best priority given. Thanks to the beam forming technology, the NBG5715 provides effective wireless coverage by transmitting wireless signals directly to other wireless network devices, such as tablet PC, laptop, and game console. You can enjoy digital entertainment content without dead spots in every room at your home.

    Feature

    • Compliant with 802.11n, wireless speeds of up to 450 Mbps over concurrent dual bands
    • Simultaneously video streaming smoothly and data access with extreme speeds
    • Beam forming technology widely extends the effective wireless coverage
    • QoS enhances gaming and multimedia streaming
    • 2 NetUSB ports for sharing printers and USB mass storages wirelessly

    Sunday, April 28, 2013

    Tips about how to Migrate to some MPLS Network Architecture For The Business

    So that your boss has heard about MPLS (Multi-Protocol Label Switching) and it is all looking forward to the options it holds for the company's voice and knowledge network. The positives for your network reliability, performance, and price allow it to be appear to become a no brainer. But...you are unsure how you can migrate out of your existing traditional WAN (Wide Area Network) configuration to MPLS.

    You are assigned with looking into if moving your company's network from the point-to-point T1 WAN architecture to some MPLS architecture makes business sense.

    The simple answer here's yes. It many instances obviously it will.

    But.... why? And most importantly.... How can you accomplish the move?

    In searching at altering your architecture from Indicate Indicate an MPLS kind of network I would recommend beginning using the business needs and tying your network needs towards the small business. In this way, you will have obvious business final results to compare when you begin obtaining the cost versus benefits discussion involved when working on your business situation for investment.

    A strong Total Price of Possession model is going to be required to know very well what the TCO is going to be going forwards. Also, I'd suggest creating a strong knowledge of the expense to do nothing as well as the potential savings or new revenue possibilities for the business so that you can create a Internet Present Value (NPV) of the network options.

    I'd also recommend searching in the connects you are searching to aid within the network. MPLS does allow you to possess a common protocol across all of your systems and you may effectively establish an MPLS Mix Connect inside your network. This can depend how the local service companies will give you MPLS services for you, if whatsoever. Which means you would definitely have to purchase either indicate point or indicate multipoint based transmission services out of your provider. We are simply because many businesses and repair companies are heading towards ethernet ubiquity like a service interface after which offering multiple services on the top from the ethernet interface.

    Voice over internet protocol is effective across an MPLS kind of network, nevertheless it does rely on the help that you simply purchase off your merchandise provider. As you are searching at MPLS, i quickly think that you are searching at purchasing straight transmission services after which you will employ MPLS to aggregate traffic to your WAN links. Hence, you are business situation will probably be driven by arbitrage possibilities so capture just as much traffic as you possibly can on your network and apply QoS in the edge.

    From the QoS perspective, make sure that you may also apply regulating towards the traffic which goes on your WAN traffic. I suggest using Hierarchical QoS because this will allow you to dynamically share the bandwidth inside your WAN links.

    As you have seen, you will find plenty of issues and questions that should be addressed so I'd suggest working carefully with a few reliable partners and driving towards a result based business motorists and commercial final results.

    We've labored with lots of clients which have migrated to MPLS from old-fashioned indicate point. You will find a couple of reasons our clients did this, but allow me to guarantee the #1 reason was cost. A great competitive company will offer you an MPLS solution that's sometimes less pricey compared to old indicate point type solution..... with the majority of the same or even more functionality.

    But you will find some factors:

    1. When the indicate points are crossing condition or lata limitations..... or are fairly separated by miles.... you need to enjoy considerable savings.

    2. When you get a company that bundles MPLS by having an Integrated Access type solution you will lay aside large money (mixture of voice, internet &lifier MPLS shipped on a single T1 with service quality).

    Here's some additional points that can help you.

    1. Could it be redundant? Yes, for the way you create your network (we will help you obviously) sites can network with one another over your wide area network for disaster recovery/ redundancy. Unlike the standard indicate point architecture in which you might simply be as strong as that single link. We assisted an enormous national company having a migration from indicate point and frame relay to MPLS. The large reason was because of so many sites there is an outage nearly every day. The network was created with redundancy because the primary driver.

    2. Do you use it too? It is dependent whom you request. Are you currently speaking to some salesperson? He'll agree. Allow me to provide you with my "consultant" opinion. It really works Nearly as well but you will find a lot of advantages to MPLS that typically motivate a person to alter. For instance, for those who have Service quality (QoS) sensitive programs running across your WAN then you need to consider MPLS. MPLS is really a private networking technology like the idea of Frame Relay for the reason that it's shipped within the "cloud". The main difference with MPLS is you can purchase service quality for programs across your WAN. Throughout the provisioning process the company (or perhaps your agent-wink wink) will interview you to be able to pick which programs are essential for your business, they'll build a QoS template to service these programs in your WAN. These programs will be presented priority total other traffic in occasions of peak load. MPLS is undoubtedly probably the most pricey solution between Frame Relay, VPN and MPLS.... but may be the only technology which will support QoS!

    But let us place the salesperson aside and don't forget one factor. With MPLS we're while using carrier's private network that is infinitely much better than creating your personal VPN. But due to some "overhead" and the fact that all service providers over-subscribe somewhat I'm believing that it's Nearly as good.

    Therefore if it's nearly as good will it be worth moving should you could enjoy financial savings &lifier redundancy??? Maybe. But fundamental essentials stuff that are earning MPLS the new ticket now.

    3. All of this well with Voice over internet protocol? Sure. You will get QoS like I mentioned above.

    MPLS is definitely an IP-based framework technology (at OSI layer 3) that naturally meshes your WAN (this is actually the redundancy you make reference to above). MPLS includes a feature known as QoS or service quality. This selection enables your CPE router and also the carrier's network you prioritized data based on your configurations or preferences (carrier's degree of support of QoS could be broad) and provides you more "value for your moneyInch using the bandwidth that you simply choose for that local loop likely to each office. MPLS is perfect for Voice over internet protocol like RC Cola is perfect for Moonpies. Because true "toll quality" Voice over internet protocol requires prioritization across a company network, you (or perhaps your provider) can tag Voice over internet protocol traffic rich in priority to simply address the jitter and latency sensitivity natural within the service.

    Another appealing factor you've is you can add locations having a simple routing table update and keep a completely-meshed architecture, where with Indicate Point circuits, you'd have needed to give a separate circuit to every location you need to interconnect, making MPLS increasingly more cost friendly the greater locations you set.

    Finally, MPLS enables you (or perhaps your company) to configure network objects (for example servers, VPN concentrators, and Network-Based Fire walls) as nodes in your MPLS network. For example, having a correctly used Network Based Firewall, you are able to provide all your locations with a web connection over your MPLS network that does not depend on one place to aggregate the traffic. Some service providers even offer redundant fire walls, meaning you have redundant Online connections fully meshed providing you with more potential up-amount of time in the situation of merely one failure in your network.

    What must you consider? In my opinion, the greatest items to bear in mind are:

    - Avoid MPLS enabled Frame/ATM systems with committed access rates (Vehicle), this committed access rates are frequently a lesser bandwidth than the local loop bandwidth, which could degrade your quantity and quality of bandwidth across a carrier's network (it's usually within the small print).

    - QoS in the "Edge" and over the "Core" - select a company with both.

    - QoS recognition over the company network - some service providers allows clients to mark packets with priority, and can not recognize and uphold that priority, don't fall under this trap.

    - SLA guarantees - make sure to select a company that gives acceptable service level contracts for the kind of service you intend to push across your network

    - Customer Support and devoted sales repetition - you would like someone you are able to achieve to with questions that you could trust - this is actually the hardest factor to locate.

    Free of charge assistance creating the best MPLS configuration for the network.... and sourcing the most affordable provider..... It is best to make use of the assets listed or talked about at Broadband Nation.