!==================================
! globalni nastaveni Zebry
!==================================

hostname !!CHANGE-ME!!

password 8 yeKMnMGi4RHWw
enable password 8 MFgq7txJsSBig

service advanced-vty
service password-encryption

!log stdout
!log syslog
!log file /var/log/quagga/ospfd.log

!==================================
! interfaces
!==================================

interface lo
!
interface dummy0
 description router ip
 ip ospf cost 10
!
interface vlan1
 description BACKBONE
 ip ospf cost 1
 ip ospf priority 1
 ip ospf authentication message-digest
 ip ospf message-digest-key 1 md5 test
!

!==================================
! router
!==================================

!
router ospf
  ospf router-id !!CHANGE-ME!!
  redistribute connected route-map just-10
  redistribute kernel metric 100 
!  redistribute static metric 200

 passive-interface dummy0
 passive-interface eth0
!
! network 10.102.xxx.0/25 area xxx
access-list net-10 permit 10.102.0.0/16
access-list net-10 deny 192.168.0.0/16
!
route-map just-10 permit 10
match ip address net-10
access-list term permit 127.0.0.1/32
access-list term deny any
line vty
 access-class term
!
