Difference between revisions of "BIRD: OSPF Konfigurasi"

From OnnoWiki
Jump to navigation Jump to search
(Created page with "Sumber: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8 protocol ospf [v2|v3] <name> { rfc1583compat <switch>; rfc5838 <switch>; insta...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
Sumber: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
 
Sumber: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
 +
  
  
Line 100: Line 101:
 
  }
 
  }
  
 +
Minimal
  
  
 +
protocol ospf [v2|v3] <name> {
 +
    area <id> {
 +
      networks {
 +
          <prefix>;
 +
          <prefix> hidden;
 +
      }
 +
      external {
 +
          <prefix>;
 +
          <prefix> hidden;
 +
          <prefix> tag <num>;
 +
      }
 +
      interface <interface pattern> [instance <num>] {
 +
          neighbors {
 +
            <ip>;
 +
            <ip> eligible;
 +
          };
 +
      };
 +
    };
 +
}
  
 
==Referensi==
 
==Referensi==
  
 
* https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
 
* https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8
 +
 +
 +
==Pranala Menarik==
 +
 +
* [[TCP/IP: Advanced Routing]]
 +
* [[Quagga]]
 +
* [[VyOS]]
 +
* [[Mikrotik]]
 +
* [[Cisco]]
 +
* [[Juniper]]
 +
* [[BIRD: Routing]]
 +
* [[IPv6]]
 +
 +
 +
* [[TCP/IP: Advanced Routing]]
 +
* [[IPv6: Advanced Routing]]
 +
* [[IPv6: Quagga]]
 +
* [[IPv6: Mikrotik]]
 +
* [[IPv6: Cisco]]
 +
* [[IPv6: Juniper]]
 +
* [[IPv6: BIRD: Routing]]
 +
* [[IPv6]]

Latest revision as of 16:49, 16 January 2019

Sumber: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.8



protocol ospf [v2|v3] <name> {
        rfc1583compat <switch>;
        rfc5838 <switch>;
        instance id <num>;
        stub router <switch>;
        tick <num>;
        ecmp <switch> [limit <num>];
        merge external <switch>;
        area <id> {
                stub;
                nssa;
                summary <switch>;
                default nssa <switch>;
                default cost <num>;
                default cost2 <num>;
                translator <switch>;
                translator stability <num>; 

                networks {
                        <prefix>;
                        <prefix> hidden;
                }
                external {
                        <prefix>;
                        <prefix> hidden;
                        <prefix> tag <num>;
                }
                stubnet <prefix>;
                stubnet <prefix> {
                        hidden <switch>;
                        summary <switch>;
                        cost <num>;
                }
                interface <interface pattern> [instance <num>] {
                        cost <num>;
                        stub <switch>;
                        hello <num>;
                        poll <num>;
                        retransmit <num>;
                        priority <num>;
                        wait <num>;
                        dead count <num>;
                        dead <num>;
                        secondary <switch>;
                        rx buffer [normal|large|<num>];
                        tx length <num>;
                        type [broadcast|bcast|pointopoint|ptp|
                                nonbroadcast|nbma|pointomultipoint|ptmp];
                        link lsa suppression <switch>;
                        strict nonbroadcast <switch>;
                        real broadcast <switch>;
                        ptp netmask <switch>;
                        check link <switch>;
                        bfd <switch>;
                        ecmp weight <num>;
                        ttl security [<switch>; | tx only]
                        tx class|dscp <num>;
                        tx priority <num>;
                        authentication none|simple|cryptographic;
                        password "<text>";
                        password "<text>" {
                                id <num>;
                                generate from "<date>";
                                generate to "<date>";
                                accept from "<date>";
                                accept to "<date>";
                                from "<date>";
                                to "<date>";
                                algorithm ( keyed md5 | keyed sha1 | hmac sha1 | hmac sha256 | hmac  sha384 | hmac sha512 );
                       };
                       neighbors {
                               <ip>;
                               <ip> eligible;
                       };
               };
               virtual link <id> [instance <num>] {
                       hello <num>;
                       retransmit <num>;
                       wait <num>;
                       dead count <num>;
                       dead <num>;
                       authentication none|simple|cryptographic;
                       password "<text>";
                       password "<text>" {
                               id <num>;
                               generate from "<date>";
                               generate to "<date>";
                               accept from "<date>";
                               accept to "<date>";
                               from "<date>";
                               to "<date>";
                               algorithm ( keyed md5 | keyed sha1 | hmac sha1 | hmac sha256 | hmac sha384 | hmac sha512 );
                        };
                };
        };
}

Minimal


protocol ospf [v2|v3] <name> {
   area <id> {
      networks {
         <prefix>;
         <prefix> hidden;
      }
      external {
         <prefix>;
         <prefix> hidden;
         <prefix> tag <num>;
      }
      interface <interface pattern> [instance <num>] {
         neighbors {
            <ip>;
            <ip> eligible;
         };
      };
   };
}

Referensi


Pranala Menarik