]> git.proxmox.com Git - mirror_frr.git/blob - ospf6d/ospf6d.conf.sample
Merge pull request #2946 from mjstapp/dplane_2
[mirror_frr.git] / ospf6d / ospf6d.conf.sample
1 !
2 ! Zebra configuration saved from vty
3 ! 2003/11/28 00:49:49
4 !
5 hostname ospf6d@plant
6 password zebra
7 log stdout
8 service advanced-vty
9 !
10 debug ospf6 neighbor state
11 !
12 interface fxp0
13 ipv6 ospf6 cost 1
14 ipv6 ospf6 hello-interval 10
15 ipv6 ospf6 dead-interval 40
16 ipv6 ospf6 retransmit-interval 5
17 ipv6 ospf6 priority 0
18 ipv6 ospf6 transmit-delay 1
19 ipv6 ospf6 instance-id 0
20 !
21 interface lo0
22 ipv6 ospf6 cost 1
23 ipv6 ospf6 hello-interval 10
24 ipv6 ospf6 dead-interval 40
25 ipv6 ospf6 retransmit-interval 5
26 ipv6 ospf6 priority 1
27 ipv6 ospf6 transmit-delay 1
28 ipv6 ospf6 instance-id 0
29 !
30 router ospf6
31 router-id 255.1.1.1
32 redistribute static route-map static-ospf6
33 interface fxp0 area 0.0.0.0
34 !
35 access-list access4 permit 127.0.0.1/32
36 !
37 ipv6 access-list access6 permit 3ffe:501::/32
38 ipv6 access-list access6 permit 2001:200::/48
39 ipv6 access-list access6 permit ::1/128
40 !
41 ipv6 prefix-list test-prefix seq 1000 deny any
42 !
43 route-map static-ospf6 permit 10
44 match ipv6 address prefix-list test-prefix
45 set metric-type type-2
46 set metric 2000
47 !
48 line vty
49 access-class access4
50 ipv6 access-class access6
51 exec-timeout 0 0
52 !