BigIron RX Series Configuration Guide 577
53-1002253-01
Configuration examples
22
Enabling PBR locally
To enable PBR locally, enter commands such as the following.
BigIron RX(config)# interface ve 1
BigIron RX(config-vif-1)# ip policy route-map test-route
The commands in this example change the CLI to the Interface level for virtual interface 1, then 
apply the “test-route” route map to the interface.  You can apply a PBR route map to Ethernet ports 
or virtual interfaces.
Syntax: ip policy route-map <map-name>
Enter the name of the route map you want to use for the route-map <map-name> parameter. 
Configuration examples
This section presents configuration examples for:
• “Basic example” on page 577
• “Setting the next hop” on page 578
• “Setting the output interface to the null interface” on page 579
Basic example
The following commands configure and apply a PBR policy that routes HTTP traffic received on 
virtual routing interface 1 from the 10.10.10.x/24 network to 5.5.5.x/24 through next-hop IP 
address 1.1.1.1/24 or, if 1.1.1.x is unavailable, through 2.2.2.1/24.
Syntax: [no]route-map <map-name> permit l deny <num> route-map
Syntax: [no] set ip next hop <ip-addr>
This command sets the next-hop IP address for traffic that matches a match statement in the route 
map.
BigIron RX(config)# access-list 101 permit tcp 10.10.10.0 0.0.0.255 eq http 
5.5.5.0 0.0.0.255
BigIron RX(config)# route-map net10web permit 101
BigIron RX(config-routemap net10web)# match ip address 101
BigIron RX(config-routemap net10web)# set ip next-hop 1.1.1.1
BigIron RX(config-routemap net10web)# set ip next-hop 2.2.2.2
BigIron RX(config-routemap net10web)# exit
BigIron RX(config)# vlan 10
BigIron RX(config-vlan-10)# tagged ethernet 1/1 to 1/4
BigIron RX(config-vlan-10)# router-interface ve 1
BigIron RX(config)# interface ve 1
BigIron RX(config-vif-1)# ip policy route-map net10web