From e3bc10fdc49266db827af4e4062e639862037eb6 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Sat, 2 Sep 2000 08:54:40 +0000 Subject: Added stub interface. (Interface which is propagated to OSPF but it does not sends nor listens packets.) I added some new options, please look at it and look into doc if it's OK. --- doc/bird.sgml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'doc/bird.sgml') diff --git a/doc/bird.sgml b/doc/bird.sgml index 5441e31..64ff8f7 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -1014,6 +1014,7 @@ protocol ospf <name> { interface <interface pattern> { cost <num>; + stub <switch>; hello <num>; poll <num>; retransmit <num>; @@ -1060,6 +1061,10 @@ protocol ospf <name> { cost num Specifies output cost (metric) of an interface. Default value is 10. + stub switch + If set to interface it does not listen to any packet and does not send + any hello. Default value is no. + hello num Specifies interval in seconds between sending of Hello messages. Beware, all routers on the same network need to have the same hello interval. @@ -1093,13 +1098,17 @@ protocol ospf <name> { convenient to force use of a different type manually. On broadcast networks, flooding and Hello messages are sent using multicasts (a single packet for all the neighbors). + type pointopoint + Point-to-point networks connect just 2 routers together. No election + is performed there which reduces the number of messages sent. + type nonbroadcast On nonbroadcast networks, the packets are sent to each neighbor separately because of lack of multicast capabilities. - type pointopoint - Point-to-point networks connect just 2 routers together. No election - is performed there which reduces the number of messages sent. + strict nonbroadcast switch + If set, don't send hello to any undefined neighbor. This switch + is ignored on on any non-NBMA network. Default is No. authentication none No passwords are sent in OSPF packets. This is the default value. @@ -1116,10 +1125,6 @@ protocol ospf <name> { A set of neighbors to which Hello messages on nonbroadcast networks are to be sent. Some of them could be marked as eligible. - strict nonbroadcast switch - If set, don't send hello to any undefined neighbor. This switch - is ignored on on any non-NBMA network. Default is No. - Attributes @@ -1162,13 +1167,17 @@ protocol ospf MyOSPF { interface "ppp*" { cost 100; }; + interface "arc0" { + cost 10; + stub yes; + }; }; area 120 { stub yes; interface "-arc0" , "arc*" { type nonbroadcast; authentication none; - strict nonbroadcast no; + strict nonbroadcast yes; wait 120; poll 40; dead count 8; -- cgit v1.2.3