Difference between revisions of "OSPF challange lab feb 2009"

From Teknologisk videncenter
Jump to: navigation, search
(Router R1)
Line 4: Line 4:
  
 
<pre>
 
<pre>
 +
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
  
 
</pre>
 
</pre>

Revision as of 15:00, 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

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)