И так имем:
Firmware: Build 1.00-B92
create vlan 2000 tag 2000 type 1q_vlan
config vlan 2000 add tagged 12
config vlan 2000 add untagged 10-11
config vlan 2000 add forbidden 1-9 advertisement disable
enable gvrp
config gvrp 1-9,12 state enable ingress_checking enable acceptable_frame admit_all pvid 1
config gvrp 10-11 state enable ingress_checking enable acceptable_frame admit_all pvid 2000
config ipif System vlan 2000 ipaddress 10.10.10.91/24 state enable
create vlan v111 tag 111 type 1q_vlan
config vlan v111 add forbidden 1-4,6-12 advertisement enable
create ipif v111 10.1.9.254/24 v111 state enable
Link Status - Link Up
enable ospf
config ospf router_id 10.10.10.91
config ospf ipif System area 0.0.0.0 priority 1 hello_interval 10 dead_interval 40
config ospf ipif System authentication none metric 1 state enable passive disable
create ospf area 0.0.0.2 type stub stub_summary disabled metric 1
config ospf ipif v111 area 0.0.0.2 priority 1 hello_interval 10 dead_interval 40
config ospf ipif v111 authentication none metric 1 state disable passive disable
С другой стороны стоит quagga (10.10.10.254) с таким конфигом:
Код:
router ospf
ospf router-id 10.10.10.254
passive-interface fxp1
network 10.10.10.0/24 area 0.0.0.0
default-information originate always
!
Выполняем пару команд на quagga:
sh ip ospf neighborКод:
test# sh ip ospf neighbor
Neighbor ID Pri State Dead Time Address Interface RXmtL RqstL DBsmL
10.10.10.91 1 Full/DR 00:00:33 10.10.10.91 fxp0:10.10.10.254 0 0 0
sh ip ospf routeКод:
test# sh ip ospf route
============ OSPF network routing table ============
============ OSPF router routing table =============
============ OSPF external routing table ===========
test#
Как видим area 2 (10.1.9.0/24) на маршрутизатор 10.10.10.254 не передается (не анонсится).
Что я не правильно делаю/не допонял?