mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-16 00:25:01 +00:00
ospf6d: add lost lines to area config block
* ospf6_area.c * ospf6_area_config_write(): write filter-list, import-list and export-list lines
This commit is contained in:
parent
75d044d234
commit
5fdaa04e63
@ -420,6 +420,18 @@ ospf6_area_config_write (struct vty *vty)
|
|||||||
prefix2str (&range->prefix, buf, sizeof (buf));
|
prefix2str (&range->prefix, buf, sizeof (buf));
|
||||||
vty_out (vty, " area %s range %s%s", oa->name, buf, VNL);
|
vty_out (vty, " area %s range %s%s", oa->name, buf, VNL);
|
||||||
}
|
}
|
||||||
|
if (PREFIX_NAME_IN (oa))
|
||||||
|
vty_out (vty, " area %s filter-list prefix %s in%s",
|
||||||
|
oa->name, PREFIX_NAME_IN (oa), VNL);
|
||||||
|
if (PREFIX_NAME_OUT (oa))
|
||||||
|
vty_out (vty, " area %s filter-list prefix %s out%s",
|
||||||
|
oa->name, PREFIX_NAME_OUT (oa), VNL);
|
||||||
|
if (IMPORT_NAME (oa))
|
||||||
|
vty_out (vty, " area %s import-list %s%s",
|
||||||
|
oa->name, IMPORT_NAME (oa), VNL);
|
||||||
|
if (EXPORT_NAME (oa))
|
||||||
|
vty_out (vty, " area %s export-list %s%s",
|
||||||
|
oa->name, EXPORT_NAME (oa), VNL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user