diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-07-12 23:56:04 +0300 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-07-13 14:49:49 +0300 | 
| commit | a4777e465ab5515bf36ad5f3dc4c413adf9d15b6 (patch) | |
| tree | 59d13a892df0eb38c11fa89745e8ebcddeee792a /isisd/isisd.h | |
| parent | 74ef8dd96158b3e0898a323d893f74449e0a412a (diff) | |
isisd: fix processing of the attached bit
There are two problems with the current code for processing the attached
bit:
- we should process it when acting both a level-1-only and level-1-2
- we should add the default route when we don't have L2 adjacensies, not
  when we don't have other routers configured on the device
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'isisd/isisd.h')
| -rw-r--r-- | isisd/isisd.h | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/isisd/isisd.h b/isisd/isisd.h index 60dcf066dd..64fbf78a07 100644 --- a/isisd/isisd.h +++ b/isisd/isisd.h @@ -269,7 +269,6 @@ struct isis_area *isis_area_lookup(const char *, vrf_id_t vrf_id);  struct isis_area *isis_area_lookup_by_vrf(const char *area_tag,  					  const char *vrf_name);  int isis_area_get(struct vty *vty, const char *area_tag); -int isis_area_count(const struct isis *isis, int levels);  void isis_area_destroy(struct isis_area *area);  void isis_filter_update(struct access_list *access);  void isis_prefix_list_update(struct prefix_list *plist);  | 
