AI, ML, Development + Cisco Learning Blog Learning about Machine Learning, Artificial Intelligence, related devlopment topics and formerly Routing and Switching, Datacenter, Security and other topics, CCIE #23664, Frank Wagner

19. Juli 2006

OSPF area defintion with interfaces

Filed under: OSPF — ocsic @ 11:31

I have see this on some LAB examples. It looks like this:

interface serial0

ip add 172.16.10.1 255.255.255.0

router ospf 1

And then there are two possible solutions for the wildcard mask within the network definition.

1. network 172.16.10.0 0.0.0.255 area 0

and i have also seen this:

2. network 172.16.10.1 0.0.0.0 area 0
So both area definitions are possbile. Not that with the secound example, it’s not necessary to calculate a wildcard mask for OSPF.But for some reason i don’t feel like using it. But on the other side, this make sure you don’t misconfigure the OSPF network wildcard mask.

redistribution and metrics

Filed under: IGP Routing — ocsic @ 10:35

With redistribution it is necessary to take care of metrics from different routing protocols.

RIP uses Hop count

EIGRP uses a composition of bandwidth and delay

OSPF uses bandwidth

BGP consists of an arbitrary unit number

It is important to know how to adjust the metrics for redistributed routing protocols. Because they are not compatible by default, it necessary to convert them between the protocols.

OSPF has two differnet external metric types. Type 1 adds the metric defined in the OSPF domain to the metric of the boarder router. Type 2 ignore internal metric in the OSPF domain.

Ziemlich heiß heute.

Filed under: Allgemein — ocsic @ 07:36

Bei dem Wetter zu lernen ist nicht so einfach. Das Notebook wird immer wärmer und die Hände über dem Notebook heizen sich auf. Außerdem läuft die Tour de France. Die spannendste Etappe von allen nach L’Alpe d’Huez. Muss auch mal sein. Heute schau ich mir noch mal etwas mehr die Tour an.

redistribution eigrp -> ospf

Filed under: IGP Routing — ocsic @ 07:33

router ospf 1

redistribute eigrp [eigrp process id] metric [value] [subnets]

for example

redistribute eigrp 1 metric 1 subnets

The subnets variable is responsible for redistributing subnetted networks. Without this variable, only networks that are not subnetted are redistributed.

metric, a definition

Filed under: IGP Routing — ocsic @ 07:21

Routing protocols need to determin the best way to reach a certain address. So in the case there is more than one possibility, the routing algorithm looks up a metric value. The differnent routing protocols have different metrics. They can also combine differnet metric in a so calles hybrid metric. These are metrics used:

  • path length
  • reliabilty
  • delay
  • bandwidth
  • load
  • communication cost

path lenght could be assigned as an arbitrary cost to each network link and then is the summ of the cost of each link traversed.

RIP for example take the hop count as metric. It’s the number of passes through routers a packet takes.

reliability refers to a dependability of each network link.

delay defines the value a packet take from source to destination. It’s a conglomerate of several variables and a common metric

bandwidth refers to the available capacity of a link.  It does not necessarily provide better routes, because links can be busy and the time could be greater.

load the degree a network resource is busy, which might be processor load

communication cost is the possibility to avoid sending data over costful lines, that for example do not belong to your own ones. It meight be more expensive to send over other provider path’s, then your own.
Source:

http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/routing.htm#xtocid15

17. Juli 2006

wic-1t

Filed under: module types — ocsic @ 23:16

Serial module card

This card could you use to extend your modular 2600’er router. It’s quite cheap on ebay.

DB60 Crossover or Back-to-Back Cable

Filed under: Cable types — ocsic @ 23:07

DB60 Crossover

Here is a picture of a DB60 Crossover Cable (CAB-DB60/DB60).  There are many different lenghts out there. Normaly it’s 3ft, but i have it also seen with 1ft length. So if you want to cable your lab, 1ft (about 30cm) might be enough.

Cisco und die Zertifizierungen, CCNA

Filed under: Certification — ocsic @ 17:30

Auf der Cisco Homepage steht für den CCNA immer noch, das die Prüfung nicht auf Deutsch und auch sonst nur in Englisch und Japanisch abzulegen ist.

Das stimmt schon lange nicht mehr. Ich habe vor einiger Zeit Cisco angeschrieben, das die Prüfungen von beiden Testcentern www.vue.com und www.prometric.com bereits seit Anfang des Jahres auch unter anderem auf Deutsch, Portugisisch und Spanisch angeboten werden. Aber Cisco behauptet weiterhin, das ist nicht der Fall. Es ist aber leicht z.B. über die VUE Homepage zu überprüfen. Ich nehme an, das die Test noch im Test sind. Anscheinend sind die Übersetzungen nicht optimal und sind teilweise wörtlich aus dem Englischen übertragen. Das ist bestimmt ein Grund warum die Prüfung auf Deutsch noch nicht bekannt gegeben wird. www.cisco.com/go/ccna

ospf and area range

Filed under: OSPF — ocsic @ 16:22

If you don’t want to show up all interface from one area, you can summarize them with the „area area-id range ip-address mask [advertise | not-advertise] [cost cost]“ command.

For example to summarize the subnet 10.10.0.0 for area 3:

area 3 range 10.10.0.0 255.255.0.0

So area 3 would just show up as one subnet to other ospf areas.

Source:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122cgcr/fiprrp_r/1rfospf.htm#wp1017596

ospf and virtual-link

Filed under: OSPF — ocsic @ 16:07

Each area has to be connected to area 0. If this is not the case, there is the possibility to set up an virtual link.

OSPF Virtual Link

Then you could transit one area with „virtual-link“. This is done on router with ID 1.1.1.1 under „router ospf“ like that:

area 1 virtual-link 3.3.3.3

And on router with area 3 like this:

area 1 virtual-link 1.1.1.1

Make sure that you use the router ID and not an IP address. Lookup the ID with „show ip protocols“.

Source:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122cgcr/fipr_c/ipcprt2/1cfospf.htm#wp1001317

« Newer PostsOlder Posts »

Powered by WordPress