! Listing 3.9: Router configuration for dual-Homed server using OSPF ! !Copyright (C) 2001 by Vincent C Jones. All Rights Reserved. version 11.0 ! interface Ethernet0 description Primary LAN for servers ip address 10.100.0.1 255.255.0.0 ip ospf dead-interval 10 ip ospf hello-interval 3 ip ospf retransmit-interval 2 ip ospf transmit-delay 1 ! interface Ethernet1 description Second LAN for server access redundancy ip address 10.200.0.1 255.255.0.0 ip ospf dead-interval 10 ip ospf hello-interval 3 ip ospf retransmit-interval 2 ip ospf transmit-delay 1 ! ! Statements to define links to other networks & routers ! router ospf 1 ! Statements to control the "real" routing go here. network 10.100.0.1 0.0.255.255 area 123 network 10.200.0.0 0.0.255.255 area 123 ! end