Routing Configuration

RIPv1 (Routing Information Protocol) ~~~ router rip // enables RIPv1 on selected router network 192.168.0.0 //creates routes to specified network ~~~ must use for each connected network RIPv2 - router rip - same as v1 - version 2 - activates version 2 - no-summary - no longer puts summary in router advertisement ~~~ router rip version 2 network 192.168.0.0 ~~~ OSPF - router ospf 1 - enables OSPF configuration - network “ip addr” “wild card bits” area “area num” - wild card bits: remaining bits of subnet mask - ie: /26 = 0.0.0.63 - /30 = 0.0.03 - /24 = 0.0.0.255 - Wild card bits can be used to describe a range of ip addresses to advertise. - In the previous example, “/26 = 0.0.0.63 and /24 0 0.0.0.255” Those wildcard bits describe the entire subnet that the routers are advertising ~~~ router ospf 1 //enable ospf on router in config 1 network 192.168.2.1 0.0.0.255 10 //Dynamic route within area 10 ~~~ EIGRP - router eigrp 1-65535 - enables EIGRP - network “ip addr” “wilcard bits(optional)

router eigrp 34000 //enables eigrp on router in 34000 area
network 192.168.1.2 0.0.0.255 //optional wildcard bits

VLAN Configuration