gorebrush wrote: » RIP still has some "weird" things, you can pull off with it.
fredrikjj wrote: » Guys, name my blog. I have a feeling that "just another boring ccie blog" is taken though...
Scales wrote: » fred-IE
Router 1 interface GigabitEthernet1/0 ip address 192.168.1.1 255.255.255.0 ip ospf message-digest-key 1 md5 password1
Router 2 interface GigabitEthernet1/0 ip address 192.168.1.2 255.255.255.0 ip ospf message-digest-key 1 md5 password1
OSPF-1 ADJ Gi1/0: Send with youngest Key 1
R1 interface GigabitEthernet1/0 ip address 192.168.1.1 255.255.255.0 ip ospf message-digest-key 1 md5 password1 ip ospf message-digest-key 2 md5 password2
OSPF-1 ADJ Gi1/0: Send with key 1 OSPF-1 ADJ Gi1/0: Send with key 2
R2 interface GigabitEthernet1/0 ip address 192.168.1.2 255.255.255.0 ip ospf message-digest-key 1 md5 password1 ip ospf message-digest-key 2 md5 password3
OSPF-1 ADJ Gi1/0: Send with key 1 OSPF-1 ADJ Gi1/0: Send with key 2 OSPF-1 ADJ Gi1/0: Rcv pkt from 192.168.1.2 : Mismatched Authentication Key - Message Digest Key 2 OSPF-1 ADJ Gi1/0: Send with youngest Key 2 OSPF-1 ADJ Gi1/0: Rcv pkt from 192.168.1.2 : Mismatched Authentication Key - Message Digest Key 2 .... OSPF-1 ADJ Gi1/0: 2.2.2.2 address 192.168.1.2 is dead, state DOWN
EdTheLad wrote: » The basic idea is learn the type 3 flooding rules, i.e. you cant accept a type 3 lsa that comes from non-area 0. But when the transit capability is enabled you can. This becomes tricky when you can start preferring type 3 lsa's over type 1.
EdTheLad wrote: » I've played around allot with VLs and transit capability, can't remember all the details without reviewing it, no time. The different next-hops what you mention are the type 3 lsa's accepted via non area 0. Without transit capability enabled, the abr doesn't accept the type 3 lsa's from the transit area and hence the only path is via the type 3 received over the VL.
fredrikjj wrote: » The ABR will still accept and install the LSAs even without the transit capability (TC) as long as you have triggered their flooding with a virtual link. When you enable TC, the router is capable of changing the nexthop of the route to align with a shortcut advertised by another router than the virtual link neighbor.
reaper81 wrote: » Just a note on the routing bit. It's just an indicator that it's a valid LSA, it doesn't mean that the LSA will get installed into the RIB. It's a quick check as opposed to going through each LSA each time if it is valid or not.
hostname R1 ! interface Ethernet0/0 ip address 10.0.12.1 255.255.255.0 ip ospf network point-to-point ! router ospf 1 router-id 1.1.1.1 network 10.0.12.1 0.0.0.0 area 0 !
! hostname R2 ! interface Ethernet0/0 ip address 10.0.12.2 255.255.255.0 ip ospf network point-to-point ! interface Ethernet0/1 ip address 10.0.23.2 255.255.255.0 ip ospf network point-to-point ip ospf cost 10 ! interface Ethernet0/2 ip address 10.0.24.2 255.255.255.0 ip ospf network point-to-point ip ospf cost 5 ! router ospf 1 router-id 2.2.2.2 area 1 virtual-link 3.3.3.3 network 10.0.12.2 0.0.0.0 area 0 network 10.0.23.2 0.0.0.0 area 1 network 10.0.24.2 0.0.0.0 area 1 !
! hostname R3 ! interface Loopback100 ip address 100.100.100.100 255.255.255.255 ! interface Ethernet0/1 ip address 10.0.23.3 255.255.255.0 ip ospf network point-to-point ! router ospf 1 router-id 3.3.3.3 area 1 virtual-link 2.2.2.2 network 10.0.23.3 0.0.0.0 area 1 network 100.100.100.100 0.0.0.0 area 2 !
hostname R4 ! interface Loopback100 ip address 100.100.100.100 255.255.255.255 ! interface Ethernet0/2 ip address 10.0.24.4 255.255.255.0 ip ospf network point-to-point ! router ospf 1 router-id 4.4.4.4 network 10.0.24.4 0.0.0.0 area 1 network 100.100.100.100 0.0.0.0 area 0 !
As a hack to advertise another 100.100.100.100 type 3 lsa into area 1, i configured R4 with 100.100.100.100 in area 0. R4 will then advertise this prefix into area 1.
fredrikjj wrote: » A cool thing that I discovered when I labbed it up yesterday is that it's enough to just enter a virtual link statement for the transit area for the type 3s to get flooded in that scenario. You don't have to put an interface in area 0, or create an actual virtual link adjacency.
EdTheLad wrote: » You mean config a VL towards R4, which would make R4 an ABR and hence R4 would send summarizes into the transit area. Yes i could have done that but it wouldn't have been as clear as creating area 0 on R4. With a VL to R4, R2 would have seen R4 type 3 lsa's describing 100.100.100.100/32 prefix and then you could say R2 was using the type 3 coming over the VL from R4.
R12#show run | s router ospf 1 router ospf 1 router-id 2.2.2.2 area 1 virtual-link 1.1.1.1
R12#show ip ospf int brief Interface PID Area IP Address/Mask Cost State Nbrs F/C VL5 1 0 192.168.1.2/24 64 P2P 0/0 Se1/0 1 1 192.168.1.2/24 64 P2P 1/1 Lo0 1 2 10.2.2.2/24 1 P2P 0/0
R12#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface 1.1.1.1 0 FULL/ - 00:00:38 192.168.1.1 Serial1/0
R12#show ip ospf | inc area border It is an area border router