Configuring IPv4 Route Redistribution to RIP in Gaia Clish
|
Important - In a Cluster |
You can configure IPv4 route redistribution in Gaia Clish The name of the default command line shell in Check Point Gaia operating system. This is a restricted shell (role-based administration controls the number of commands available in the shell)..
-
To see the available "
set
" commands for IPv4 Route Redistribution to RIP, enter in GaiaCheck Point security operating system that combines the strengths of both SecurePlatform and IPSO operating systems. Clish:
set route-redistribution to rip[Esc][Esc]
-
To see the configured IPv4 Route Redistribution to RIP, enter in Gaia Clish:
show configuration route-redistribution[Esc][Esc]
These commands let you configure a policy for exporting routes to RIP.

|

|

|

|

|

|

|

|

|

|

The parameters are sorted alphabetically.
Parameter |
Description |
||
---|---|---|---|
|
Configures whether to accept or reject ( |
||
|
Enables the redistribution of all IPv4 routes from this protocol. |
||
|
Disables the redistribution of all IPv4 routes from this protocol. |
||
|
Disables redistribution of this aggregate route into RIP. |
||
|
Configures the IPv4 aggregate route to redistribute into RIP.
|
||
|
Configures the redistribution of BGP routes based on the AS Number. |
||
|
Configures the redistribution of BGP routes based on the AS-Path attribute. A valid AS_PATH regular expression contains only digits and these special characters:
|
||
|
Configures the redistribution of all directly connected routes from the specified interface. |
||
|
Disables redistribution of routes from this interface into RIP. |
||
|
Configures the redistribution of OS kernel routes. |
||
|
Configures the redistribution of IPv4 OSPFv2 routes (from the specified OSPF instance). |
||
|
Configures the redistribution of IPv4 OSPFv2 External routes (from the specified OSPF instance). |
||
|
Disables redistribution of this static route into RIP. |
||
|
Configures the redistribution of static routes into RIP:
|
||
|
Configures the redistribution of NAT Pools. See NAT Pools.
|
||
|
Matches only routes with prefix and mask length exactly equal to the specified network. |
||
|
Matches any route contained within the specified network. |
||
|
Matches any route with prefix equal to the specified network, whose mask length falls within a particular range. |
||
|
Matches only routes that are contained within, but more specific than, the specified network. For example, with a greater mask length. |
||
|
Configures the RIP metric to be added to routes redistributed through this rule. The metric used by RIP/RIPng is a hop count, representing the distance to a destination. Routes with higher hop counts are more expensive. Routes with a metric greater than or equal to 16 are treated as unreachable, and are not installed or propagated to peers.
Range: 1-16 Default: None |
||
|
Enables redistribution of routes into RIP. |
||
|
Enables redistribution of the specified network routes into RIP. |
||
|
Disables redistribution of the specified network routes into RIP. |
||
|
Configures the route origin:
|
||
|
Configures a route tag field on routes redistributed to RIP through this rule Range: 1-65535, or default Default: No route tag |
||
|
Disables all route redistribution to this protocol. |

-
Redistribute all RIP routes for the network 192.168.0.0/16 that fall in the range between 192.168.0.0/18 and 192.168.0.0/24 into OSPF (valid for OSPFv2 only):
set route-redistribution to ospf2 from rip network 192.168.0.0/16 match-type range between 18 and 24 on
-
Redistribute all OSPF external routes into RIP, and assign the cost of 2 to them:
set route-redistribution to rip from ospf2ase all metric 2 on
-
Redistribute all OSPF external routes into RIP, and assign the RIP tag value of 20 to them:
set route-redistribution to rip from ospf2ase riptag 20
-
Redistribute aggregate routes for the network 1.2.0.0/16 into RIP, and assign the cost of 2 to them:
set route-redistribution to rip from aggregate 1.2.0.0/16 metric 2 on
-
Redistribute all routes for the network 192.168.0.0/16 from OSPF into RIP, and assign the cost of 2 to them:
set route-redistribution to rip from ospf2 network 192.168.0.0/16 metric 2 on
-
Redistribute all external OSPFv2 routes for the network 192.168.0.0/16 into RIP, and assign the metric of 3 to them:
set route-redistribution to rip from ospf2ase network 192.168.0.0/16 metric 3 on
-
Redistribute all IPv4 routes that are learned from BGP AS 100 into RIP, and assign the RIP tag value of 99 to them:
set route-redistribution to rip from bgp-aspath ^100_ origin any riptag 99
-
Redistribute routes for network 192.168.0.0/16 that are originated in BGP AS 100 and learned through any interior routing protocol, into RIP, and assign the cost of 10 to them:
set route-redistribution to rip from bgp-aspath _100$ origin IGP network 192.168.0.0/16 metric 10 on