mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-16 04:50:29 +00:00
****! What else I will discover while documenting this code? Remove useless
warnings and update documentation.
This commit is contained in:
parent
808c0a7f79
commit
c266ac78ee
@ -211,8 +211,7 @@ With example above any intra-area paths from area 0.0.0.10 and from range
|
|||||||
10.10.0.0/16 (for example 10.10.1.0/24 and 10.10.2.128/30) are announced into
|
10.10.0.0/16 (for example 10.10.1.0/24 and 10.10.2.128/30) are announced into
|
||||||
other areas as Type-3 summary-LSA's, but any others (for example 10.11.0.0/16
|
other areas as Type-3 summary-LSA's, but any others (for example 10.11.0.0/16
|
||||||
or 10.128.30.16/30) aren't.
|
or 10.128.30.16/30) aren't.
|
||||||
Note, that you can't configure export-list to backbone area and this command
|
This command makes sense in ABR only.
|
||||||
makes sense in ABR only.
|
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn {OSPF Command} {area @var{a.b.c.d} import-list NAME} {}
|
@deffn {OSPF Command} {area @var{a.b.c.d} import-list NAME} {}
|
||||||
@ -231,8 +230,8 @@ Type-3 summary-LSAs.
|
|||||||
@deffnx {OSPF Command} {no area @var{a.b.c.d} filter-list prefix NAME out} {}
|
@deffnx {OSPF Command} {no area @var{a.b.c.d} filter-list prefix NAME out} {}
|
||||||
@deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME in} {}
|
@deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME in} {}
|
||||||
@deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME out} {}
|
@deffnx {OSPF Command} {no area <0-4294967295> filter-list prefix NAME out} {}
|
||||||
Filtering Type-3 summary-LSAs to/from area using prefix lists. Unlike export-
|
Filtering Type-3 summary-LSAs to/from area using prefix lists. This command
|
||||||
and import-list, these commands can be used with backbone area as well.
|
makes sense in ABR only.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn {OSPF Command} {area @var{a.b.c.d} authentication} {}
|
@deffn {OSPF Command} {area @var{a.b.c.d} authentication} {}
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2004-04-19 Hasso Tepper <hasso@estpak.ee>
|
||||||
|
|
||||||
|
* ospf_vty.c: Don't warn that export- and import-list can't be
|
||||||
|
configured to backbone area if they are applied and are working
|
||||||
|
fine.
|
||||||
|
|
||||||
2004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
|
2004-02-19 Sowmini Varadhan <sowmini.varadhan@sun.com>
|
||||||
|
|
||||||
* ospf_packet.c: Don't drop packets in Solaris x86.
|
* ospf_packet.c: Don't drop packets in Solaris x86.
|
||||||
|
@ -1702,8 +1702,6 @@ DEFUN (ospf_area_export_list,
|
|||||||
struct in_addr area_id;
|
struct in_addr area_id;
|
||||||
int format;
|
int format;
|
||||||
|
|
||||||
VTY_GET_OSPF_AREA_ID_NO_BB ("export-list", area_id, format, argv[0]);
|
|
||||||
|
|
||||||
area = ospf_area_get (ospf, area_id, format);
|
area = ospf_area_get (ospf, area_id, format);
|
||||||
ospf_area_export_list_set (ospf, area, argv[1]);
|
ospf_area_export_list_set (ospf, area, argv[1]);
|
||||||
|
|
||||||
@ -1725,8 +1723,6 @@ DEFUN (no_ospf_area_export_list,
|
|||||||
struct in_addr area_id;
|
struct in_addr area_id;
|
||||||
int format;
|
int format;
|
||||||
|
|
||||||
VTY_GET_OSPF_AREA_ID_NO_BB ("export-list", area_id, format, argv[0]);
|
|
||||||
|
|
||||||
area = ospf_area_lookup_by_area_id (ospf, area_id);
|
area = ospf_area_lookup_by_area_id (ospf, area_id);
|
||||||
if (area == NULL)
|
if (area == NULL)
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
@ -1751,8 +1747,6 @@ DEFUN (ospf_area_import_list,
|
|||||||
struct in_addr area_id;
|
struct in_addr area_id;
|
||||||
int format;
|
int format;
|
||||||
|
|
||||||
VTY_GET_OSPF_AREA_ID_NO_BB ("import-list", area_id, format, argv[0]);
|
|
||||||
|
|
||||||
area = ospf_area_get (ospf, area_id, format);
|
area = ospf_area_get (ospf, area_id, format);
|
||||||
ospf_area_import_list_set (ospf, area, argv[1]);
|
ospf_area_import_list_set (ospf, area, argv[1]);
|
||||||
|
|
||||||
@ -1774,7 +1768,6 @@ DEFUN (no_ospf_area_import_list,
|
|||||||
struct in_addr area_id;
|
struct in_addr area_id;
|
||||||
int format;
|
int format;
|
||||||
|
|
||||||
VTY_GET_OSPF_AREA_ID_NO_BB ("import-list", area_id, format, argv[0]);
|
|
||||||
area = ospf_area_lookup_by_area_id (ospf, area_id);
|
area = ospf_area_lookup_by_area_id (ospf, area_id);
|
||||||
if (area == NULL)
|
if (area == NULL)
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
|
Loading…
Reference in New Issue
Block a user