diff options
author | Joakim Tjernlund <Joakim.Tjernlund@transmode.se> | 2009-08-07 13:48:15 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-08-18 13:35:39 +0200 |
commit | 953cde65c5a35c8762f5858ace216b768814d01c (patch) | |
tree | acf13ca7ac43984b9215b0006d4d16fac2c281c3 /doc | |
parent | Revert "per-interface ospf enable and area set command." (diff) | |
download | frr-953cde65c5a35c8762f5858ace216b768814d01c.tar.xz frr-953cde65c5a35c8762f5858ace216b768814d01c.zip |
ospfd: Impl. per interface 'ip ospf area' command
Use with interface command:
interface ppp0
ip ospf area 0.0.0.0
This will enable OSPF on ppp0 with area 0.0.0.0
Remove with "no ip ospf area"
* ospf_vty.c: add "ip ospf area (A.B.C.D|<0-4294967295>)" interface command
* ospfd.c: (ospf_interface_{un,}set) new helper function to enable/disable
OSPF on a specific interface.
(ospf_if_update) 2 possible paths now to deal with interface updates.
Acked-by: Donald Sharp <sharpd@cumulusnetworks.com>
[DL: this restores the tree to deccaf9...]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ospfd.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/ospfd.texi b/doc/ospfd.texi index 56ab5a3ed..45d1ad7cd 100644 --- a/doc/ospfd.texi +++ b/doc/ospfd.texi @@ -510,6 +510,11 @@ incremented by this value when transmitting. The default value is 1 seconds. @end deffn +@deffn {Interface Command} {ip ospf area (A.B.C.D|<0-4294967295>)} {} +@deffnx {Interface Command} {no ip ospf area} {} +Enable ospf on an interface and set associated area. +@end deffn + @node Redistribute routes to OSPF @section Redistribute routes to OSPF |