- Table of Contents
-
- 01-Typical configuration example
- 01-AAA_Configuration_Examples
- 02-ACL_Configuration_Examples
- 03-ATM_Configuration_Examples
- 04-IGMP_Configuration_Examples
- 05-IP_Source_Guard_Configuration_Examples
- 06-Ethernet_OAM_Configuration_Examples
- 07-NQA_Configuration_Examples
- 08-QinQ_Configuration_Examples
- 09-OSPF_Configuration_Examples
- 10-MPLS_TE_Configuration_Examples
- 11-OpenFlow_Configuration_Examples
- 12-NAT_Configuration_Examples
- 13-RBAC_Configuration_Examples
- 14-IRF_Configuration_Examples
- 15-POS_Interface_Configuration_Examples
- 16-CPOS_Interface_Configuration_Examples
- 17-DLDP_Configuration_Examples
- 18-IS-IS_Configuration_Examples
- 19-MPLS_L3VPN_Configuration_Examples
- 20-SSH_Configuration_Examples
- 21-Login_Management_Configuration_Examples
- 22-SNMP_Configuration_Examples
- 23-Priority_Marking_and_Queue_Scheduling_Configuration_Examples
- 24-Multicast_VPN_Configuration_Examples
- 25-BGP_Configuration_Examples
- 26-HoVPN_Configuration_Examples
- 27-L2TP_Configuration_Examples
- 28-VRRP_Configuration_Examples
- 29-Traffic_Filtering_Configuration_Examples
- 30-Samplers_and_IPv4_NetStream_Configuration_Examples
- 31-Software_Upgrade_Examples
- 32-MPLS_L2VPN_Configuration_Examples
- 33-NetStream_Configuration_Examples
- 34-Policy-Based_Routing_Configuration_Examples
- 35-Traffic_Policing_Configuration_Examples
- 36-BFD_Configuration_Examples
- 37-OSPFv3_Configuration_Examples
- 38-VPLS_Configuration_Examples
- 39-GTS_and_Rate_Limiting_Configuration_Examples
- 40-IPv6_IS-IS_Configuration_Examples
- 41-MPLS OAM_Configuration_Examples
- 42-BGP_Route_Selection_Configuration_Examples
- 43-IS-IS_Route_Summarization_Configuration_Examples
- 44-Attack_Protection_Configuration_Examples
- Related Documents
-
Title | Size | Download |
---|---|---|
34-Policy-Based_Routing_Configuration_Examples | 94.19 KB |
Contents
Introduction
This document provides PBR configuration examples.
PBR uses a user-defined policy to route packets based on fields such as the source address, destination address, and IP precedence. PBR takes precedence over destination-based routing.
Prerequisites
The configuration examples in this document were created and verified in a lab environment, and all the devices were started with the factory default configuration. When you are working on a live network, make sure you understand the potential impact of every command on your network.
This document assumes that you have basic knowledge of H3C PBR.
Restrictions and guidelines
When you configure PBR, follow these restrictions and guidelines:
· The device supports only interface PBR, which guides the forwarding of packets received on an interface. Interface PBR does not take effect on locally generated packets.
· When you configure the action of forwarding traffic to a next hop, do not specify the following addresses:
¡ An IPv6 address in an IPv4 ACL rule.
¡ An IPv4 address in an IPv6 ACL rule.
Example: Configuring PBR
Network configuration
As shown in Figure 1, on Device, all packets destined for Server are forwarded based on the routing table to the next hop 10.4.1.2 by default.
Configure PBR to meet the following requirements:
· Packets with source IPv4 address 10.2.1.1 received on Ten-GigabitEthernet 3/1/1 are forwarded to the next hop 10.5.1.2.
· HTTP packets with source IPv4 addresses other than 10.2.1.1 received on Ten-GigabitEthernet 3/1/1 are forwarded to the next hop 10.3.1.2.
Analysis
To forward the two types of packets to different next hops, you must perform the following tasks:
· Configure two ACLs to classify the two types of packets.
· Configure two policy nodes to forward the packets to the specified next hops.
To ensure that HTTP packets with source address 10.2.1.1 are forwarded to the next hop 10.5.1.2, specify a node with a smaller number to match the HTTP packets.
Procedures
# Configure an IPv4 address for Ten-GigabitEthernet 3/1/1.
<Device> system-view
[Device] interface Ten-GigabitEthernet 3/1/1
[Device-Ten-GigabitEthernet3/1/1] ip address 10.1.2.1 255.255.255.0
[Device-Ten-GigabitEthernet3/1/1] quit
# Configure IPv4 addresses for other interfaces, as shown in Figure 1. (Details not shown.)
# Configure a static route with 10.4.1.2 as the next hop.
[Device] ip route-static 192.168.1.0 24 10.4.1.2
# Create ACL 3005 to match packets with source address 10.2.1.1.
[Device] acl advanced 3005
[Device-acl-ipv4-adv-3005] rule 0 permit ip source 10.2.1.1 0
[Device-acl-ipv4-adv-3005] quit
# Create ACL 3006 to match HTTP packets.
[Device] acl advanced 3006
[Device-acl-ipv4-adv-3006] rule 0 permit tcp destination-port eq www
[Device-acl-ipv4-adv-3006] quit
# Configure Node 0 for policy pbr1 to forward packets matching ACL 3005 to the next hop 10.5.1.2.
[Device] policy-based-route pbr1 permit node 0
[Device-pbr-pbr1-0] if-match acl 3005
[Device-pbr-pbr1-0] apply next-hop 10.5.1.2
[Device-pbr-pbr1-0] quit
# Configure Node 1 for policy pbr1 to forward packets matching ACL 3006 to the next hop 10.3.1.2.
[Device] policy-based-route pbr1 permit node 1
[Device-pbr-pbr1-1] if-match acl 3006
[Device-pbr-pbr1-1] apply next-hop 10.3.1.2
[Device-pbr-pbr1-1] quit
# Apply policy pbr1 to Ten-GigabitEthernet 3/1/1.
[Device] interface Ten-GigabitEthernet 3/1/1
[Device-Ten-GigabitEthernet3/1/1] ip policy-based-route pbr1
[Device-Ten-GigabitEthernet3/1/1] quit
Verifying the configuration
# On Device, display PBR policy information.
[Device] display ip policy-based-route policy pbr1
Policy name: pbr1
node 0 permit:
if-match acl 3005
apply next-hop 10.5.1.2
node 1 permit:
if-match acl 3006
apply next-hop 10.3.1.2
The output shows that the PBR configurations are successful.
# On Device, display the path for forwarding non-HTTP packets with source address 10.1.1.1.
|
NOTE: Before you use a tracert command, perform the following tasks: · Enable sending of ICMP timeout packets on the intermediate devices. · Enable sending of ICMP destination unreachable packets on the destination device. |
<Device> tracert -a 10.1.1.1 192.168.1.1
traceroute to 192.168.1.1 (192.168.1.1) from 10.1.1.1, 30 hops at most, 40 bytes
each packet, press CTRL_C to break
1 10.1.2.1 (10.1.2.1) 2.178 ms 1.364 ms 1.058 ms
2 10.4.1.2 (10.4.1.2) 1.548 ms 1.248 ms 1.112 ms
3 192.168.1.1 (192.168.1.1) 1.594 ms 1.321 ms 1.093 ms
The output shows that non-HTTP packets with source address 10.1.1.1 are forwarded to the next hop 10.4.1.2.
# On Switch, display the path for forwarding packets with source address 10.2.1.1.
<Device> tracert -a 10.2.1.1 192.168.1.1
traceroute to 192.168.1.1 (192.168.1.1) from 10.2.1.1, 30 hops at most, 40 bytes
each packet, press CTRL_C to break
1 10.1.2.1 (10.1.2.1) 1.721 ms 1.226 ms 1.050 ms
2 10.5.1.2 (10.5.1.2) 4.494 ms 1.385 ms 1.170 ms
3 192.168.1.1 (192.168.1.1) 1.448 ms 1.304 ms 1.093 ms
The output shows that packets with source address 10.2.1.1 are forwarded to the next hop 10.5.1.2.
Configuration files
#
policy-based-route pbr1 permit node 0
if-match acl 3005
apply next-hop 10.5.1.2
#
policy-based-route pbr1 permit node 1
if-match acl 3006
apply next-hop 10.3.1.2
#
interface Ten-GigabitEthernet3/1/1
port link-mode route
ip address 10.1.2.1 255.255.255.0
ip policy-based-route pbr1
#
interface Ten-GigabitEthernet3/1/3
port link-mode route
ip address 10.3.1.1 255.255.255.0
#
interface Ten-GigabitEthernet3/1/4
port link-mode route
ip address 10.4.1.1 255.255.255.0
#
interface Ten-GigabitEthernet3/1/5
port link-mode route
ip address 10.5.1.1 255.255.255.0
#
ip route-static 192.168.1.0 24 10.4.1.2
#
rule 0 permit ip source 10.2.1.1 0
#
acl advanced 3006
rule 0 permit tcp destination-port eq www
#
Example: Configuring IPv6 PBR
Network configuration
As shown in Figure 2, on Device, all packets destined for Server are forwarded based on the routing table to the next hop 2004::2 by default.
Configure IPv6 PBR to meet the following requirements:
· Packets with source IPv6 address 2002::1 received on Ten-GigabitEthernet 3/1/1 are forwarded to the next hop 2005::2.
· HTTP packets with source IPv6 addresses other than 2002::1 received on Ten-GigabitEthernet 3/1/1 are forwarded to the next hop 2003::2.
Analysis
To forward the two types of packets to different next hops, you must perform the following tasks:
· Configure two ACLs to classify the two types of packets.
· Configure two policy nodes to forward the packets to the specified next hops.
To ensure that HTTP packets with source address 2002::1 are forwarded to the next hop 2005::2, specify a node with a smaller number to match the HTTP packets.
Procedures
# Configure an IPv6 address for Ten-GigabitEthernet 3/1/1.
<Device> system-view
[Device] interface Ten-GigabitEthernet 3/1/1
[Device-Ten-GigabitEthernet3/1/1] ipv6 address 2007::1 64
[Device-Ten-GigabitEthernet3/1/1] quit
# Configure IPv6 addresses for other interfaces, as shown in Figure 2. (Details not shown.)
# Configure a static route with 2004::2/64 as the next hop.
[Device] ipv6 route-static 3001:: 64 2004::2
# Create IPv6 ACL 3005 to match packets with source address 2002::1.
[Device] acl ipv6 advanced 3005
[Device-acl-ipv6-adv-3005] rule 0 permit ipv6 source 2002::1/128
[Device-acl-ipv6-adv-3005] quit
# Create IPv6 ACL 3006 to match HTTP packets.
[Device] acl ipv6 advanced 3006
[Device-acl-ipv6-adv-3006] rule 0 permit tcp destination-port eq www
[Device-acl-ipv6-adv-3006] quit
# Configure Node 0 for policy pbr1 to forward packets matching IPv6 ACL 3005 to the next hop 2005::2.
[Device] ipv6 policy-based-route pbr1 permit node 0
[Device-pbr6-pbr1-0] if-match acl 3005
[Device-pbr6-pbr1-0] apply next-hop 2005::2
[Device-pbr6-pbr1-0] quit
# Configure Node 1 for policy pbr1 to forward packets matching IPv6 ACL 3006 to the next hop 2003::2.
[Device] ipv6 policy-based-route pbr1 permit node 1
[Device-pbr6-pbr1-1] if-match acl 3006
[Device-pbr6-pbr1-1] apply next-hop 2003::2
[Device-pbr6-pbr1-1] quit
# Apply policy pbr1 to Ten-GigabitEthernet 3/1/1.
[Device] interface Ten-GigabitEthernet 3/1/1
[Device-Ten-GigabitEthernet3/1/1] ipv6 policy-based-route pbr1
[Device-Ten-GigabitEthernet3/1/1] quit
Verifying the configuration
# On Device, display IPv6 PBR policy information.
[Device] display ipv6 policy-based-route policy pbr1
Policy name: pbr1
node 0 permit:
if-match acl 3005
apply next-hop 2005::2
node 1 permit:
if-match acl 3006
apply next-hop 2003::2
The output shows that the IPv6 PBR configurations are successful.
# On Device, verify the forwarding of packets with source address 2002::1. (Details not shown.)
· If 2005::2 is reachable, packets are forwarded to the next hop 2005::2.
· If 2005::2 is not reachable, packets are forwarded to the next hop 2004::2 according to the routing table.
# On Device, verify the forwarding of HTTP packets. (Details not shown.)
· If 2003::2 is reachable, packets are forwarded to the next hop 2003::2.
· If 2003::2 is not reachable, packets are forwarded to the next hop 2004::2 according to the routing table.
Configuration files
#
ipv6 policy-based-route pbr1 permit node 0
if-match acl 3005
apply next-hop 2005::2
#
ipv6 policy-based-route pbr1 permit node 1
if-match acl 3006
apply next-hop 2003::2
#
interface Ten-GigabitEthernet3/1/1
port link-mode route
ipv6 policy-based-route pbr1
ipv6 address 2007::1/64
#
interface Ten-GigabitEthernet3/1/3
port link-mode route
ipv6 address 2003::1 64
#
interface Ten-GigabitEthernet3/1/4
port link-mode route
ipv6 address 2004::1 64
#
interface Ten-GigabitEthernet3/1/5
port link-mode route
ipv6 address 2005::1 64
#
ipv6 route-static 3001:: 64 2004::2
#
acl ipv6 advanced 3005
rule 0 permit ipv6 source 2002::1/128
#
acl ipv6 advanced 3006
rule 0 permit tcp destination-port eq www
#
Related documentation
· H3C SR8800-X Routers Layer 3—IP Routing Configuration Guide-R8380
· H3C SR8800-X Routers Layer 3—IP Routing Command Reference-R8380
·