Created on 11-17-2021 08:50 AM Edited on 06-06-2022 01:10 PM By Anonymous
Description | This article describes how to configure VRF (virtual routing and forwarding) IDs directly on the interface from GUI. |
Scope | 6.0 and 6.2 version supports VRF configuration only through CLI. 6.4.2 and later has added to its GUI . |
Solution |
The VRF IDs can be displayed in the routing monitor and can be used to create black hole static routes.
2). Add a Blackhole static route using the VRF ID.
- Go to Network > Static Routes and select 'Create New'.
CLI Configuration.
#config system interface
2). Add a Blackhole static route using the VRF ID.
#config router static
There is no need to assign the VRF 14 in the static route configuration for “test_interface”. All routes relating to interface “test_interface” are automatically isolated to VRF 14 routing table. However, to create blackhole static routes in VRF 14, you need to mention the VRF 14 in the static route configuration as the blackhole route is never bound to any interface.
Command to check all VRF's routing table: #get router info routing-table all
Command to check specific VRF routing table:
# get router info routing-table all vrf <VRF_ID> # get router info routing-table all vrf 14 # get router info routing-table all vrf 0
Command to check specific VRF routing table database:
# get router info routing-table database vrf <VRF_ID> # get router info routing-table database vrf 14 # get router info routing-table database vrf 0
Likewise, if the OSPF is configured on interface VRF then verify the OSPF routes for that VRF using:
#get router info routing-table ospf vrf <VRF_ID>
|