显示标签为“huawei router”的博文。显示所有博文
显示标签为“huawei router”的博文。显示所有博文

2014年9月9日星期二

The FAQ of Huawei NE40E Router

Q: Does Huawei NE40E support BAS function?
A: If you need a BRAS, we suggest Huawei ME60 MSCG.

Q: What is the difference between NE40E-X3 router, NE40E-X8 router, NE40E-X16 router?
A: NE40E-X3 support 3 service card slots, NE40E-X8 support 8 service card slots, NE40E-X16 support 16 service card slots.

Q: How many service slots does NE40E-X8 support?
A: NE40E-X8 supports 8 service slots, the other 2 slots is for SRU, 1 slot for SFU.

Q: What is the difference between differ LPUF?
A: Different LPUF different bandwidth capacity, for example LPUF-40 supports a maximum of 40Gbps bandwidth.

Q: What is the difference between LPUF and LPUI?
A: LPUF means Flexible Card Line Processing Unit, it works in mother card + daughter card model, it can not work alone, mother card provide slots for daughter card, daughter card provide service interface. LPUI means Integrated Line Processing Unit, it works alone, it provide service interface directly.

Q: Why NE40E-X8’s control channels and service channels separated?
A: Separation of control channels and service channels will ensure non-blocking control channels.

Q: Does NE40E-X8 supports boards hot-swapping?
A: Yes, hot-swap is supported on interface boards.

Q: What the components in NE40E-X8 bundles?
A: It includes NE40E-X8 Chassis,2+1 Redundant SRU/SFU, 4 Power Supply. Note software not included.

Q: What’s the difference between LPUF-21-A and LPUF-21-B?
A: LPUF-21-A support all software features, while LPUF-21-B can not support L3VPN, MVPN and IPv6.

Q: What’s the difference between LPUF-40-A and LPUF-40-B?
A: LPUF-40-A support all software features, while LPUF-40-B can not support L3VPN, MVPN and IPv6, LPUF-40-B can be upgraded to LPUF-40-A via license.

Q: How many flexible cards does each LPU support?
A: LPUF-10 support 4 flexible cards, LPUF-21 support 2 flexible cards,LPUF-40 support 2 flexible cards, LPUF-50 support 4 flexible cards, LPUF-51 support 2 flexible cards, LPUF-101 support 2 flexible cards, LPUF-120 support 2 flexible cards.

More related:
S5700-28P-PWR-LI-AC FAQ
Huawei S9306 Vs Huawei S9312
The FAQ of Huawei S5700-28C-EI
Huawei GPON ONT HG8245 FAQ
What is the difference between LS-S2309TP-EI-AC and LS-S2309TP-SI-AC?

2014年7月17日星期四

How to Configure NQA for Static IPv4 Routes



Applicability
This example applies to all versions and Huawei wireless routers.

Networking Requirements
NQA for static IPv4 routes can quickly detect network faults and control advertisement of static routes. As shown in Figure 1, RouterA connects to RouterB through GE2/0/0 and connects to RouterC through GE1/0/0. Two links are available from RouterA to RouterD: RouterA-->RouterB-->RouterD (primary link) and RouterA-->RouterC-->RouterD (backup link).Configure an NQA ICMP test intance on RouterA to detect the active link. When the active link becomes faulty, packets sent from RouterA to RouterD are switched to the standby link.
Figure 1 Networking diagram of configuring NQA for static IPv4 routes 

Procedure
1. Configure RouterA.
#
 sysname RouterA
#
interface GigabitEthernet1/0/0
 ip address 192.168.1.1 255.255.255.0
#
interface GigabitEthernet2/0/0
 ip address 192.168.4.1 255.255.255.0
#
interface GigabitEthernet3/0/0
 ip address 192.168.6.1 255.255.255.0
#
ip route-static 192.168.2.0 255.255.255.0 192.168.1.2
ip route-static 192.168.3.0 255.255.255.0 192.168.4.2
ip route-static 192.168.5.0 255.255.255.0 192.168.1.2 preference 100  //Set the preference of static routes to 100 so that the static routes can be used as backup routes.
ip route-static 192.168.5.0 255.255.255.0 GigabitEthernet2/0/0 192.168.4.2 track nqa admin icmp  //Configure a static route to associate it with an NQA test instance.
#
nqa test-instance admin icmp  //Configure an NQA test instance named admin icmp.
 test-type icmp  //Set the test type to ICMP.
 destination-address ipv4 192.168.3.1  //Set the destination address of the NQA test instance to 192.168.3.1.
 frequency 10  //Set the interval between two NQA tests to 10s.
 probe-count 2  //Set the number of test probes of an NQA test instance to 2.
 start now  //Start the NQA test instance immediately.
#

2. Configure RouterB.
#
 sysname RouterB
#
interface GigabitEthernet1/0/0
 ip address 192.168.3.2 255.255.255.0
#
interface GigabitEthernet2/0/0
 ip address 192.168.4.2 255.255.255.0
#
ip route-static 192.168.5.0 255.255.255.0 192.168.3.1
ip route-static 192.168.6.0 255.255.255.0 192.168.4.1
#

3. Configure RouterC.
#
 sysname RouterC
#
interface GigabitEthernet1/0/0
 ip address 192.168.1.2 255.255.255.0
#
interface GigabitEthernet2/0/0
 ip address 192.168.2.1 255.255.255.0
#
ip route-static 192.168.5.0 255.255.255.0 192.168.2.2
ip route-static 192.168.6.0 255.255.255.0 192.168.1.1

4. Configure RouterD.
#
 sysname RouterD
#
interface GigabitEthernet1/0/0
ip address 192.168.3.1 255.255.255.0
#
interface GigabitEthernet2/0/0
ip address 192.168.2.2 255.255.255.0
#
interface GigabitEthernet3/0/0
ip address 192.168.5.1 255.255.255.0
#
ip route-static 192.168.1.0 255.255.255.0 192.168.2.1
ip route-static 192.168.4.0 255.255.255.0 192.168.3.2
ip route-static 192.168.6.0 255.255.255.0 192.168.3.2
ip route-static 192.168.6.0 255.255.255.0 192.168.2.1
#

5. Verify the configuration.
Run the display nqa results test-instance admin icmp command on RouterA to view the NQA test result. The command output displays "Lost packet ratio: 0 %", indicating that the link status is normal. Run the display ip routing-table command on RouterA to view the IP routing table. The routing table contains the static route with destination network segment 192.168.5.0/24 and next-hop address 192.168.4.2. There is no static route with preference 100 in the routing table.
Run the shutdown command in the view of GE1/0/0 or GE2/0/0 on RouterB to simulate a link failure. Run the display nqa results test-instance admin icmp command on RouterA to view the NQA test result. The command output displays "Completion:failed" and "Lost packet ratio: 100 %, indicating that a link failure has been detected. Then run the display ip routing-table command on RouterA to view the IP routing table. The routing table contains the static route with preference 100. There is no static route with destination network segment 192.168.5.0/24 and next-hop address 192.168.4.2. 

Configuration Notes
  • The static route associated with an NQA test instance is deleted from the routing table only when the NQA test fails. You can run the display nqa results command to view the NQA test result.
  • Before modifying the configuration of an NQA test instance, stop the NQA test instance.
  • If the static route associated with one NQA test instance is associated with another NQA test instance, the association between the static route and the former NQA test instance is removed.
  • Only the NQA ping test instance is used so that RouterA switches services based on the test result. There is no requirement for the peer device configuration.

The more information about technical support you can consult with our technician - Bill, and his e-mail address is as below:  
bill@huanetwork.com


More relate:

 



2013年12月23日星期一

How to Configuring Local Traffic Mirroring of Huawei Router

Pre-configuration Tasks
Before configuring local traffic mirroring, complete the following task:
Ensuring that the link layer protocol status of ports is Up.

1 Configuring a Local Observing Port
Context
In local mirroring, the monitoring device is directly connected to the observing port.
Do not configure other functions on an observing port; otherwise, the mirroring function is
affected.
1 If other service packets are transmitted on the observing port besides the mirrored packets, the packet sources cannot be identified.
2 If congestion occurs on the observing port, mirrored packets may be discarded because of their low priorities.

Step 1 Run:
system-view
The system view is displayed.

Step 2 Run:
observe-port interface interface-type interface-number
A local observing port is configured.
----End

2 Configuring a Traffic Classifier
Configure complex traffic classification by selecting proper traffic classification rules. For
details, see Configuring a Traffic Classifier in the Huawei AR150&200&1200&2200&3200
Series Enterprise Routers Configuration Guide - QoS.

3 Configuring a Traffic Behavior
By configuring the traffic behavior, the device mirrors all the packets matching traffic
classification rules to the observing interface.

Procedure
Step 1 Run:
system-view
The system view is displayed.

Step 2 Run:
traffic behavior behavior-name
A traffic behavior is configured and its view is displayed.

Step 3 Run:
mirror to observe-port
Traffic matching the rules is mirrored to the specified observing port.
----End

4 Configuring a Traffic Policy
Step 1 Run:
system-view
The system view is displayed.

Step 2 Run:
traffic policy policy-name
A traffic policy is created and its view is displayed.

Step 3 Run:
classifier classifier-name behavior behavior-name
The traffic policy is associated with the traffic classifier and the traffic behavior containing traffic mirroring.
In the preceding command, classifier-name specifies a traffic classifier. The value of this
parameter must be the same as the value set in 7.5.2 Configuring a Traffic Classifier. The
behavior-name parameter specifies a traffic behavior. The value of this parameter must be the same as the value set Configuring a Traffic Behavior.
----End

5 Applying a Traffic Policy
You can apply a traffic policy bound to traffic behaviors and traffic classifiers to a mirrored port. For details, see Applying the Traffic Policy in the Huawei AR150&200&1200&2200&3200 Series Enterprise Routers Configuration Guide - QoS.

6 Checking the Configuration
1 Run the display observe-port command to check the observing port.
2 Run the display traffic behavior { system-defined | user-defined } [ behavior-name ]
command to check the traffic behavior configuration.
3 Run the display traffic classifier { system-defined | user-defined } [ classifier-name ]
command to check the traffic classifier configuration.
4 Run the display traffic policy user-defined [ policy-name [ classifier classifier-name ] ]
command to check the traffic policy configuration.
5 Run the display traffic-policy applied-record [ policy-name ] command to check the
application record of a specified mirroring policy.

----End
Customers interested in purchasing huawei router or the price, please refer to below links:

Contact information:
Telephone: +852-30501940(Hong Kong)
Fax: +852-30501941
Email:   sales@huanetwork.com(Sales Inquiries)
Address: 3/F, China Fen Hin Bld., 5 Cheung Yue St., Cheung Sha Wan, KLN., Hong Kong
Website: http://www.huanetwork.com