#Networkforyou #OSPF #cisco OSPF Routing Protocol Tutorial | Introduction to OSPF in packet Tracer CISCO | CCNA ospf Follow us on Instagram / _networkforyou_ Hello Everyone, In this video we are going to discuss OSPF Routing Protocol Tutorial . If you have any question or need any support what app us: +91 81438 09578. Join our Telegram Channel:https://t.me/networkforyou Thanks. About us: We are Team of Senior Engineers have more than 12 years experiences and providing CISCO Training classroom, on-site and online training on various Networks, Python for Network Engineer, CISCO Certifications Like CCNA 200-301, CCNP ENCOR 350-401, CCNP ENARSI 300-410 and Firewall etc. Also working as full time as MSO (Mobile Switching Office) Engineer. Thanks Stay connected with us! ➤Instagram: / _networkforyou_ ➤Website: https://networkforyou.net/ ➤Twitter: / networkforyou4 ➤Facebook: https://www.facebook.com/profile.php?... ➤Instagram: / _networkforyou_ ➤Youtube: / @networkforyou11 ➤Tumblr: / networkforyou OSPF is a routing protocol. It is Standard Protocol. It is designed as an interior gateway protocol It is link state protocol It uses a link state routing algorithm Administrative distance is 110 It is classless routing protocol Supports Authentication Send Hello Packet every 10 seconds Send only updates and not the entire routing tables. Updates are sent with multicast address 224.0.0.5 It uses path cost as its basic routing metric (Ie. metric is cost) It supports the CIDR addressing model R#route ospf 1 R#network Network Id wildcard mask area 0 R# network Network Id wildcard mask area 0 OSPF Example: R1#Route Ospf 1 R1#network 200.1.1.0 0.0.0.255 area 0 R1#network 192.168.1.0 0.0.0.255 area 0 Config t hostname R1 int f0/0 ip add 192.168.1.1 255.255.255.0 no sh int f0/1 ip add 200.1.1.1 255.255.255.0 no sh route ospf 1 network 192.168.1.0 0.0.0.255 area 0 network 200.1.1.0 0.0.0.255 area 0 ------------------------ Config t hostname R2 int f0/0 ip add 192.168.2.1 255.255.255.0 no sh int f0/1 ip add 200.1.1.2 255.255.255.0 no sh route ospf 1 network 192.168.2.0 0.0.0.255 area 0 network 200.1.1.0 0.0.0.255 area 0 Thanks