Quagga ospf host<->quagga<->host помогите разобраться
Помогите начинающему специалисту
Поставлена задача: продемонстрировать работу quagga. "Демонстрационный макет" имеет следующую структуру:
host (комп с виндой) <-> router(комп c debian) <-> host(комп с виндой)
______192.168.0.1/24 <-> 192.168.0.121/24::192.168.1.114/24 <-> 192.168.1.1/24
_____________________________________eth0::eth1
Quagga запускается (zebra и ospfd, ошибок никаких не выдаёт), но ничего через рутер не пингуется. Пробовал прописывать различные варианты конфигов, но безрезультатно. Подсткажите, что необходимо прописать в этих конфигах. Вот последний (тоже нерабочий) вариант:
конфиг zebra:___________________________
hostname router
password z
!
interface eth0
link-detect
multicast
ipv6 nd suppress-ra
!
interface eth1
link-detect
multicast
ipv6 nd suppress-ra
!
interface lo
link-detect
multicast
!
ip route 192.168.0.0/24 eth0
ip route 192.168.1.0/24 eth1
!
line vty
!
end
конфиг ospfd:_______________________________
hostname ospfd
password z
enable password z
log stdout
!
interface eth0
ip ospf network non-broadcast
ip ospf authentication
!
interface eth1
ip ospf network non-broadcast
ip ospf authentication
!
interface lo
ip ospf network non-broadcast
ip ospf authentication
!
router ospf
network 192.168.0.0/24 area 0.0.0.0
network 192.168.1.0/24 area 0.0.0.1
neighbor 192.168.0.1
neighbor 192.168.1.1
!
line vty
!
end
__________________________________________ router# show ip route
Codes: K - kernel route, C - connected, S - static, R - RIP, O - OSPF,
I - ISIS, B - BGP, > - selected route, * - FIB route
K>* 0.0.0.0/0 via 192.168.0.1, eth0
C>* 127.0.0.0/8 is directly connected, lo
O 192.168.0.0/24 [110/10] is directly connected, eth0, 00:20:25
S 192.168.0.0/24 [1/0] is directly connected, eth0
C>* 192.168.0.0/24 is directly connected, eth0
O 192.168.1.0/24 [110/10] is directly connected, eth1, 00:20:25
S 192.168.1.0/24 [1/0] is directly connected, eth1
C>* 192.168.1.0/24 is directly connected, eth1