[BACK]Return to bgpd.conf CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/bgpd.conf, Revision 1.2

1.2     ! henning     1: # $OpenBSD: bgpd.conf,v 1.1 2003/12/24 14:12:40 henning Exp $
1.1       henning     2: # sample bgpd configuration file
                      3: # see bgpd.conf(5)
                      4:
                      5: #macros
                      6: peer1="10.0.0.2"
                      7: peer2="10.0.0.3"
                      8:
                      9: # global configuration
                     10: AS 65001
1.2     ! henning    11: router-id 10.0.0.1
1.1       henning    12: holdtime 180
                     13: holdtime min 3
                     14: listen on 127.0.0.1
1.2     ! henning    15: # fib-update no
        !            16: # log updates
1.1       henning    17:
                     18: # neighbors and peers
                     19: group "peering AS65002" {
                     20:        remote-as 65002
                     21:        neighbor $peer1 {
                     22:                descr   "AS 65001 peer 1"
                     23:        }
                     24:        neighbor $peer2 {
                     25:                descr   "AS 65001 peer 2"
                     26:        }
                     27: }
                     28:
                     29: neighbor 10.0.1.0 {
                     30:        remote-as       65003
                     31:        descr           upstream
                     32:        multihop        2
1.2     ! henning    33:        local-address   10.0.0.8
        !            34:        passive
1.1       henning    35: }
                     36: