2014年6月16日星期一

How to Configure IS-IS IPv6 for Huawei Routers



Applicability
This example applies to all Huawei AR routers of V200R002C00 and later versions.
Networking Requirements
As shown in Figure 1:
  • RouterA, RouterB, RouterC, and RouterD belong to the same AS. The four routers need to run IS-IS to implement IPv6 interworking.
  • RouterA, RouterB, and RouterC belong to Area 10, and RouterD belongs to Area 20.
  • RouterA and RouterB are Level-1 routers, RouterC is a Level-1-2 router, and RouterD is a Level-2 router.
Figure 1 Networking diagram of configuring IS-IS IPv6
 

Procedure
1. Configure RouterA.
#
 sysname RouterA
#
 ipv6  //Enable IPv6 unicast forwarding.
#
isis 1  //Enable IS-IS process 1.
 is-level level-1  //Set the router as a Level-1 router.
 network-entity 10.0000.0000.0001.00  //Set the NET for IS-IS process 1.
 #
 ipv6 enable topology standard  //Enable the IPv6 capability for IS-IS process 1.
 #
#
interface GigabitEthernet1/0/0
 ipv6 enable  //Enable IPv6 on the interface.
 ipv6 address 10:1::2/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1  //Enable the IPv6 capability for IS-IS process 1 on the interface.
#
Return

2. Configure RouterB.
#
 sysname RouterB
#
 ipv6
#
isis 1
 is-level level-1
 network-entity 10.0000.0000.0002.00  //Set the NET for IS-IS process 1.
 #
 ipv6 enable topology standard
 #
#
interface GigabitEthernet1/0/0
 ipv6 enable
 ipv6 address 10:2::2/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
#
return

3. Configure RouterC.

#
 sysname RouterC
#
 ipv6
#
isis 1
 network-entity 10.0000.0000.0003.00  //Set the NET for IS-IS process 1.
 #
 ipv6 enable topology standard
 #
#
interface GigabitEthernet0/0/0
 ipv6 enable
 ipv6 address 30::1/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
 isis circuit-level level-2  //Set the circuit type as Level-2, allowing only Level-2 adjacencies to be established on the interface.
#
interface GigabitEthernet1/0/0
 ipv6 enable
 ipv6 address 10:1::1/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
#
interface GigabitEthernet2/0/0
 ipv6 enable
 ipv6 address 10:2::1/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
#
return

4. Configure RouterD.

#
 sysname RouterD
#
 ipv6
#
isis 1
 is-level level-2  //Set the router as a Level-2 router.
 network-entity 20.0000.0000.0004.00  //Set the NET for IS-IS process 1.
 #
 ipv6 enable topology standard
 #
#
interface GigabitEthernet1/0/0
 ipv6 enable
 ipv6 address 30::2/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
#
interface GigabitEthernet2/0/0
 ipv6 enable
 ipv6 address 20::1/64  //Configure a global unicast IPv6 address for the interface.
 isis ipv6 enable 1
#
return

5. Verify the configuration.
Run the display isis route command on each router to view IS-IS routes.
Interfaces on RouterA, RouterB, RouterC, and RouterD can successfully ping each other.
Configuration Notes
  • IPv6 must be enabled in the system view and interface view.
  • The IPv6 capability must be enabled for IS-IS on interfaces.
  • When using the network-entity command to set a NET for an IS-IS process, configure the same area ID for routers in an area.

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 related:

Example for Configuring the SNMP Function to Implement Communication Between the Device and the NMS
Example for Connecting Intranet Users to the Internet in Easy IP Mode
Example for Configuring the Device as a PPPoE Client to Connect Users to the Internet
How to Configure the PPPoE Client on Huawei AR1200?
Example for Connecting Intranet Users to the Internet in NAT Address Pool Mode


 

2014年5月23日星期五

Example for Configuring Communication Between VLANs Using VLANIF Interfaces



Huawei AR150&160&200&1200&2200&3200 Series Enterprise Routers Configuration Guide - Example for Configuring Communication Between VLANs Using VLANIF Interfaces

Networking Requirements
As shown in Figure 1, Ethernet 2/0/1 of the Router is connected to the uplink interface of SwitchA.
On SwitchA, the downlink interface Ethernet 2/0/1 is added to VLAN 10 and the downlink
interface Ethernet 2/0/2 is added to VLAN 20.
PC1 in VLAN 10 and PC2 in VLAN 20 need to communicate with each other

Figure 1 Network diagram for communication between VLANs through VLANIF interfaces

Configuration Roadmap
The configuration roadmap is as follows:
1. Add Ethernet interfaces to the VLAN.
2. Configure VLANIF interfaces.

Procedure
Step 1 Configure the Router.
# Create VLANs.
<Huawei> system-view
[Huawei] sysname Router
[Router] vlan batch 10 20
# Add interfaces to the VLANs.
[Router] interface ethernet 2/0/1
[Router-Ethernet2/0/1] port link-type trunk
[Router-Ethernet2/0/1] port trunk allow-pass vlan 10 20
[Router-Ethernet2/0/1] quit
# Assign IP addresses to the VLANIF interfaces.
[Router] interface vlanif 10
[Router-Vlanif10] ip address 10.10.10.1 24
[Router-Vlanif10] quit                   
[Router] interface vlanif 20
[Router-Vlanif20] ip address 20.20.20.1 24
[Router-Vlanif20] quit

Step 2 Configure SwitchA.
# Create VLANs.
<Huawei> system-view
[Huawei] sysname SwitchA
[SwitchA] vlan batch 10 20
# Add interfaces to the VLANs.
[SwitchA-Ethernet2/0/1] port link-type access
[SwitchA-Ethernet2/0/1] port default vlan 10
[SwitchA-Ethernet2/0/1] quit
[SwitchA] interface ethernet 2/0/2
[SwitchA-Ethernet2/0/2] port link-type access
[SwitchA-Ethernet2/0/2] port default vlan 20
[SwitchA-Ethernet2/0/2] quit
[SwitchA] interface ethernet 2/0/3
[SwitchA-Ethernet2/0/3] port link-type trunk
[SwitchA-Ethernet2/0/3] port trunk allow-pass vlan 10 20
[SwitchA-Ethernet2/0/3] quit

Step 3 Verify the configuration.
On PC1 in VLAN 10, configure the default gateway address as the IP address of VLANIF 10 (in this example: 10.10.10.1/24).
On PC2 in VLAN 20, configure the default gateway address as the IP address of VLANIF 20 (in this example: 20.20.20.1/24).
After the configuration is complete, PC1 in VLAN 10 can communicate with PC2 in VLAN 20.
----End

Configuration Files
Configuration file of the Router
#
sysname Router
#
vlan batch 10 20
#
interface Vlanif10
ip address 10.10.10.1 255.255.255.0
#
interface Vlanif20
ip address 20.20.20.1 255.255.255.0
#
interface Ethernet2/0/1
port link-type trunk
port trunk allow-pass vlan 10 20
#
return
Configuration file of SwitchA
#
sysname SwitchA
#
vlan batch 10 20
#
interface Ethernet2/0/1
port link-type access
port default vlan 10
#
interface Ethernet2/0/2
port link-type access
port default vlan 20
#
interface Ethernet2/0/3
port link-type trunk
port trunk allow-pass vlan 10 20
#
Return

More related:

2014年5月13日星期二

Applications for Huawei S5300 Switches

Huawei S5300 Switches Applications 

Application on Large-Scale Enterprise Networks
The S5300HI functions as the access device and aggregation device on large-scale enterprise networks and improves network reliability by link binding, dual-homing, and ringing.


Application in Data Centers

The S5300 can be used in a data center to access the gigabit server and connect to upper-layer devices by link aggregation. If multiple servers are available, you can use the stacking technology to improve network reliability.



CPE and UPE

The S5306TP-LI can be used as a CPE switch and the S5300HI can be used as a UPE switch.

The S5306 and the S5300HI can provide high-quality leased line for enterprises by using powerful hardware OAM.
More related topics:

2014年4月29日星期二

S2700/S3700/ S5700 Switch PoE Power Supply

What Are the Differences Between a PoE Power Supply Unit and a Common Power Supply Unit on a Quidway S2700/S3700/ S5700 Huawei Switch?

Answer:
On a S2700/S3700/S5700 switch, a PoE power supply unit and a common power supply unit differ in their appearance and functions.
l Figure 1-1, Figure 1-2, and Figure 1-3 show their appearance. A PoE power supply unit
has a fan, but a common power supply unit does not.

Figure 1-1 Common power supply unit
Figure 1-2 250 W PoE power supply unit
Figure 1-3 500 W PoE power supply unit
A PoE power supply unit can provide power for both the entire device and the PDs, whereas a common power supply unit can provide power for only the entire device.

More topic about Huawei S5700:

2014年3月10日星期一

Cassette design, Huawei S5700-52C-SI USD 1512.00 on huanetwork.com

The S5700 series Gigabit enterprise switches are next-generation energy-saving switchesdeveloped by Huawei to meet the demand for high-bandwidth access and Ethernet multi-serviceaggregation
Huawei S5700, S5700-52C-SI Mainframe (48 10/100/1000Base-T, Dual Slots ofpower, Without Flexible Card and Power Module)

The Huawei S5700-52C-SI price
Huawei S5700-52C-SI is positioning in the enterprise multi task network switches, using store and forward mode, VLAN support, is the choice for many enterprises. Now best price on huanetwork.com, USD 1512.00
Customers interested in purchasing S5700-52C-SI, please refer to below links:
http://www.huanetwork.com/huawei-s5700-52c-si-price_p586.html

The Huawei S5700-52C-SI review

Huawei S5700-52C-SI adopts cassette design, chassis height is 1U, supports of the two layer and three layer. It has 48 10/100/1000Base-T, 4 100/1000Base-X Gigabit Combo support RPS 12V redundant power supplies, support USB port, 2 expansion slots, packet forwarding rate is 132Mpps, exchange capacity for 256G, performance is very strong.

S5700-52C-SI Specification and datasheet
Port Forty-eight 10/100/1000Base-T ports
Forwarding performance 132  Mpps
Extended slot Two extended slots, one for an uplink subcard and the other for for a stack card.
MAC address table IEEE 802.1d compliance
16 K MAC address entries
MAC address learning and aging
Static, dynamic, and blackhole MAC address entries
Packet filtering based on source MAC addresses
VLAN  4 K VLANs
Guest VLAN and voice VLAN
VLAN assignment based on MAC addresses, protocols, IP subnets, policies, and ports
1:1 and N:1 VLAN Mapping
SuperVLAN
Reliability RRPP ring topology and RRPP multi-instance
Smart Link tree topology and Smart Link multi-instance, providing the millisecond-level protection switchover
SEP
STP, RSTP, and MSTP
BPDU protection, root protection, and loop protection
E-Trunk
IP routing  Static routing, ECMP
RIPv1, RIPv2 and RIPng
IPv6 features Neighbor Discovery (ND)
Path MTU (PMTU)
IPv6 ping, IPv6 tracert, and IPv6 Telnet
ACLs based on the source IPv6 address, destination IPv6 address, Layer 4 ports, or protocol type
MLD v1/v2 snooping
6to4 tunnel, ISATAP tunnel, and manually configured tunnel
Multicast IGMP v1/v2/v3 snooping and IGMP fast leave
Multicast forwarding in a VLAN and multicast replication between VLANs
Multicast load balancing among member ports of a trunk
Controllable multicast
Port-based multicast traffic statistics
QoS/ACL Rate limiting on packets sent and received by an interface
Packet redirection
Port-based traffic policing and two-rate three-color CAR
Eight queues on each port
WRR, DRR, SP, WRR+SP, and DRR+SP queue scheduling algorithms
Re-marking of the 802.1p priority and DSCP priority
Packet filtering at Layers 2 through 4, filtering out invalid frames based on the source MAC address, destination MAC address, source IP address, destination IP address, port number, protocol type, and VLAN ID
Rate limiting in each queue and traffic shaping on ports
Security User privilege management and password protection
DoS attack defense, ARP attack defense, and ICMP attack defense
Binding of the IP address, MAC address, interface, and VLAN
Port isolation, port security, and sticky MAC
Blackhole MAC address entries
Limit on the number of learned MAC addresses
802.1x authentication and limit on the number of users on an interface
AAA authentication, RADIUS authentication, HWTACACS authentication, and NAC
SSH v2.0
Hypertext Transfer Protocol Secure (HTTPS)
CPU defense
Blacklist and whitelist
OAM Supports
Management and maintenance Stacking
MAC Forced Forwarding (MFF)
Virtual cable test
Port mirroring and RSPAN (remote port mirroring)
Remote configuration and maintenance by using Telnet
SNMP v1/v2/v3
RMON
Web NMS
HGMP
System logs and alarms of different levels
GVRP
MUX VLAN
Operating environment Operating temperature: 0°C–50°C (long term); -5°C–55°C (short term)
Relative humidity: 10%–90% (non-condensing)
Input voltage AC:
Rated voltage range: 100 V to 240 V AC, 50/60 Hz
Maximum voltage range: 90 V to 264 V AC, 50/60 Hz
DC:
Rated voltage range: –48 V to –60 V, DC
Maximum voltage range: –36 V to –72 V DC
Dimensions: width x depth x height 442 mm x 420 mm x 43.6 mm
Power consumption <78W