diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-01-04 18:32:43 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-11-01 17:13:06 -0400 | 
| commit | d4aa24ba7df066ee8a9f4bab5c1b4e9ff8474392 (patch) | |
| tree | 250831364f85b54568614167d4b6bf118348c632 /zebra/zserv.h | |
| parent | 8e3a96e846a15f34384a20a3ede2e894d7e97253 (diff) | |
*: Introduce Local Host Routes to FRR
Create Local routes in FRR:
S   0.0.0.0/0 [1/0] via 192.168.119.1, enp39s0, weight 1, 00:03:46
K>* 0.0.0.0/0 [0/100] via 192.168.119.1, enp39s0, 00:03:51
O   192.168.119.0/24 [110/100] is directly connected, enp39s0, weight 1, 00:03:46
C>* 192.168.119.0/24 is directly connected, enp39s0, 00:03:51
L>* 192.168.119.224/32 is directly connected, enp39s0, 00:03:51
O   192.168.119.229/32 [110/100] via 0.0.0.0, enp39s0 inactive, weight 1, 00:03:46
C>* 192.168.119.229/32 is directly connected, enp39s0, 00:03:46
Create ability to redistribute local routes.
Modify tests to support this change.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zserv.h')
| -rw-r--r-- | zebra/zserv.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index 90aa4d53f4..53789122d1 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -237,8 +237,7 @@ DECLARE_HOOK(zserv_client_connect, (struct zserv *client), (client));  DECLARE_KOOH(zserv_client_close, (struct zserv *client), (client));  #define DYNAMIC_CLIENT_GR_DISABLED(_client)                                    \ -	((_client->proto <= ZEBRA_ROUTE_CONNECT)                               \ -	 || !(_client->gr_instance_count)) +	((_client->proto <= ZEBRA_ROUTE_LOCAL) || !(_client->gr_instance_count))  /*   * Initialize Zebra API server.  | 
