12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- !
- ! Zebra configuration saved from vty
- ! 2003/11/28 00:49:49
- !
- hostname ospf6d@plant
- password zebra
- log stdout
- service advanced-vty
- !
- debug ospf6 neighbor state
- !
- interface fxp0
- ipv6 ospf6 cost 1
- ipv6 ospf6 hello-interval 10
- ipv6 ospf6 dead-interval 40
- ipv6 ospf6 retransmit-interval 5
- ipv6 ospf6 priority 0
- ipv6 ospf6 transmit-delay 1
- ipv6 ospf6 instance-id 0
- !
- interface lo0
- ipv6 ospf6 cost 1
- ipv6 ospf6 hello-interval 10
- ipv6 ospf6 dead-interval 40
- ipv6 ospf6 retransmit-interval 5
- ipv6 ospf6 priority 1
- ipv6 ospf6 transmit-delay 1
- ipv6 ospf6 instance-id 0
- !
- router ospf6
- router-id 255.1.1.1
- redistribute static route-map static-ospf6
- interface fxp0 area 0.0.0.0
- !
- access-list access4 permit 127.0.0.1/32
- !
- ipv6 access-list access6 permit 3ffe:501::/32
- ipv6 access-list access6 permit 2001:200::/48
- ipv6 access-list access6 permit ::1/128
- !
- ipv6 prefix-list test-prefix seq 1000 deny any
- !
- route-map static-ospf6 permit 10
- match ipv6 address prefix-list test-prefix
- set metric-type type-2
- set metric 2000
- !
- line vty
- access-class access4
- ipv6 access-class access6
- exec-timeout 0 0
- !
|