Difference between revisions of "OSPF challange lab feb 2009"

From Teknologisk videncenter
Jump to: navigation, search
(R2)
(R2)
Line 155: Line 155:
 
interface Loopback0
 
interface Loopback0
 
  ip address 10.0.0.6 255.255.255.255
 
  ip address 10.0.0.6 255.255.255.255
!
 
interface Loopback1
 
no ip address
 
ip ospf network point-to-point
 
 
!
 
!
 
interface FastEthernet0/0
 
interface FastEthernet0/0

Revision as of 15:02, 11 February 2009

OSPF Challenge network

Router R1

Current configuration : 1292 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$X3l9$nNalXd.jCTyPa8Zgl7GG8.
enable password class
!
no aaa new-model
ip cef
!
!
!
!
!
!
voice-card 0
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface Loopback0
 ip address 10.0.0.1 255.255.255.255
!
interface FastEthernet0/0
 ip address dhcp
 ip nat outside
 ip virtual-reassembly
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 172.16.100.1 255.255.255.252
 ip nat inside
 ip virtual-reassembly
 speed auto
 full-duplex
 no mop enabled
!
interface Serial0/2/0
 no ip address
 shutdown
 no fair-queue
 clock rate 125000
!
interface Serial0/2/1
 no ip address
 shutdown
 clock rate 125000
!
router ospf 1
 log-adjacency-changes
 network 172.16.100.0 0.0.0.3 area 0
 default-information originate
!
!
!
ip http server
no ip http secure-server
ip nat inside source list 10 interface FastEthernet0/0 overload
!
access-list 10 permit 172.0.0.0 0.31.255.255
access-list 10 permit 192.168.0.0 0.0.31.255
access-list 10 permit 172.0.0.0 0.255.255.255
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
 password cisco
 login
!
scheduler allocate 20000 1000
end

Pederrs 12:57, 11 February 2009 (UTC)


R2


Building configuration...

Current configuration : 1321 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$NNsi$YOgdSeGtVshs5mMuSNRV60
enable password cisco
!
memory-size iomem 10
no network-clock-participate slot 1
no network-clock-participate wic 0
no aaa new-model
ip subnet-zero
ip cef
!
!
ip audit po max-events 100
!
!
interface Loopback0
 ip address 10.0.0.6 255.255.255.255
!
interface FastEthernet0/0
 no ip address
 speed auto
 half-duplex
 no mop enabled
!
interface Serial0/0
 ip address 172.16.100.5 255.255.255.252
 no fair-queue
!
interface FastEthernet0/1
 ip address 172.16.100.2 255.255.255.252
 duplex auto
 speed auto
!
interface Serial0/1
 ip address 172.16.100.13 255.255.255.252
 clock rate 128000
!
router ospf 1
 log-adjacency-changes
 area 3 nssa default-information-originate
 area 51 virtual-link 10.0.0.5
 network 10.0.0.6 0.0.0.0 area 51
 network 172.16.100.0 0.0.0.3 area 0
 network 172.16.100.4 0.0.0.3 area 3
 network 172.16.100.12 0.0.0.3 area 51
!
ip classless
!
ip http server
no ip http secure-server
!
!
!
line con 0
line aux 0
line vty 0 4
 password cisco
 login
!
!
end

R3

R4

R5

R6

router ospf 1

network 172.16.100.16 0.0.0.3 area 11
network 192.168.16.0 0.0.0.255 area 11
network 192.168.17.0 0.0.0.255 area 11
network 192.168.18.0 0.0.0.255 area 11
network 192.168.19.0 0.0.0.255 area 11
area 11 range 192.168.0.0 255.255.0.0

interface Loopback 0

ip address 10.0.0.4 255.255.255.255

interface Loopback 1

ip address 192.168.16.1 255.255.255.0

interface Loopback 2

ip address 192.168.17.1 255.255.255.0

interface Loopback 3

ip address 192.168.18.1 255.255.255.0

interface Loopback 4

ip address 192.168.19.1 255.255.255.0

Bjeff 12:55, 11 February 2009 (UTC)