Posts

Colorful Cups

Image
Genre: Black and White

Anjana

Image
Genre: Portrait

She Bathed Me in Her Love

Image
Family values have never been so important to me. May be growing up mostly without my parents around has had a strong contribution towards that part of my character. They both stayed outside in Oman where my dad worked. My mom also stayed with him but used to come down more often, for a few months, but in the short span she did more than one could in one whole year. She would work like a slave ensuring whether every needs were met and every comforts fulfilled. courtesy:  http://dusuneninsanlaricin.com/ Once in one of those times, I had exams. And exams used to give rise to my innate need of staying up the whole night before. With this certain loss of a partly self-discipline, my vulnerable self, steadily used to allow a bit of negativity to seep in. This was the very important exam of Maths which I had hardly prepared anything about. After mugging up the formulae loudly on the bus disturbing every guy in the corner, I knew I could pass. But after reaching the co...

EIGRP Key Chain Practice Example

Image
AUSTIN ROUTER Austin> enable Austin# configure terminal Austin(config)# interface serial 0/0/0 Austin(config-if)# ip address 172.16.20.1 255.255.255.0 Austin(config-if)# ip authentication mode eigrp 100 md5 Austin(config-if)# ip authentication key-chain eigrp 100 SURAJ ( Enables authentication of EIGRP packets. SURAJ is the name of the key chain) Austin(config-if)# no shutdown Austin(config-if)# interface fastethernet 0/1 Austin(config-if)# ip address 172.16.10.1 255.255.255.0 Austin(config-if)# no shutdown Austin(config-if)# router eigrp 100 Austin(config-router)# no auto-summary Austin(config-router)# network 172.16.0.0 Austin(config-router)# key chain SURAJ ( Identifies a key chain name, which must match the name configured in interface configuration mode. ) Austin(config-keychain)# key 1 ( Identifies the key number. ) Austin(config-keychain-key)# key-string tower ( Identifies the key string. ) Austin(config-keychain-key)# e...

Redistribution Practice: EIGRP and RIP

Image
Jack Jack(config)#router eigrp 12 Jack(config-router)#no auto-summary Jack(config-router)#network 1.1.1.0 0.0.0.255 Jack(config-router)#network 192.168.12.0 John John(config)#router eigrp 12 John(config-router)#no auto-summary John(config-router)#network 192.168.12.0 John(config)#router rip John(config-router)#no auto-summary John(config-router)#version 2 John(config-router)#network 192.168.23.0 James James(config)#router rip James(config-router)#version 2 James(config-router)#no auto-summary James(config-router)#network 192.168.23.0 James(config-router)#network 3.3.3.0 John John(config)#router eigrp 12 John(config-router)# redistribute rip metric 1544 (bandwidth) 2000 (delay) 255 (reliability) 1 (load) 1500 (MTU) John(config-router)#exi John(config)#router rip John(config-router)#version 2 John(config-router)#redistribute eigrp 12 metric 5 (hop count) John(config-router)#exit

Redistribution Practice: OSPF and EIGRP

Image
R1 Configuration: R1(config)#int s1/0 R1 (config-if)#ip address 192.168.1.1 255.255.255.0 R1(config-if)#no shut R1(config)#exit R1(config)#router eigrp 100 R1(config)#network 192.168.1.0 0.0.0.255 R1(config-router)#no auto-summ R2 Configuration: Router(config)#hostname R2 R2(config)#interface s1/0 R2(config-if)#ip address 192.168.1.2 255.255.255.0 R2(config-if)#interface s1/1 R2(config-if)#ip address 192.168.2.1 255.255.255.0 R2(config-if)#no sh R2(config-if)#interface s1/2 R2(config-if)#ip address 192.168.3.1 255.255.255.0 R2(config-if)#no shut R2(config)#router OSPF 1 R2(config-router)#network 192.168.3.0 0.0.0.255 area 24 R2(config-router)#exit R2(config)#router EIGRP 100 R2(config-router)#network 192.168.2.0 R2(config-router)#network 192.168.1.0 R2(config-router)#no auto-summ R3 Configuration: Router(config)#hostname R3 R3(config)#interface s1/0 R3(config...

Redistribution Practice: RIP V2 and OSPF

Image
Here are some basic configuration of all these routers. R1(config)#int s1/0 R1 (config-if)#ip address 20.0.0.1 255.255.255.0 R1(config-if)#no shut R1(config-if)#int loop 1 R1(config-if)#ip address 11.1.1.1 255.255.255.0 R1(config-if)#int loop 2 R1(config-if)#ip address 11.1.2.1 255.255.255.0 R1(config-if)#int loop 3 R1(config-if)#ip address 11.1.3.1 255.255.255.0 R1(config-if)#int loop 4 R1(config-if)#ip address 11.1.4.1 255.255.255.0 R1(config-if)#int loop 5 R1(config-if)#ip address 11.1.5.1 255.255.255.0 R1(config)#router rip R1(config-router)#version 2 R1(config-router)#no auto-summary R1(config-router)#network 20.0.0.0 R1(config-router)#network 11.1.1.0 R1(config-router)#network 11.1.2.0 R1(config-router)#network 11.1.3.0 R1(config-router)#network 11.1.4.0 R1(config-router)#network 11.1.5.0 R2: Router(config)#hostname R2 R2(config)#interface s1/0 R2(config-if)#ip address 20.0.0.2 255.255.255.0 R2(config-if)#interface s...