Commits

Everton Marques authored and David Lamparter committed 55b12ff4602
[pim] PIM route type.
No tags

lib/route_types.txt

Modified
44 44 ZEBRA_ROUTE_SYSTEM, system, NULL, 'X', 0, 0, "Reserved"
45 45 ZEBRA_ROUTE_KERNEL, kernel, zebra, 'K', 1, 1, "kernel route"
46 46 ZEBRA_ROUTE_CONNECT, connected, zebra, 'C', 1, 1, "connected"
47 47 ZEBRA_ROUTE_STATIC, static, zebra, 'S', 1, 1, "static"
48 48 ZEBRA_ROUTE_RIP, rip, ripd, 'R', 1, 0, "RIP"
49 49 ZEBRA_ROUTE_RIPNG, ripng, ripngd, 'R', 0, 1, "RIPng"
50 50 ZEBRA_ROUTE_OSPF, ospf, ospfd, 'O', 1, 0, "OSPF"
51 51 ZEBRA_ROUTE_OSPF6, ospf6, ospf6d, 'O', 0, 1, "OSPFv6"
52 52 ZEBRA_ROUTE_ISIS, isis, isisd, 'I', 1, 1, "IS-IS"
53 53 ZEBRA_ROUTE_BGP, bgp, bgpd, 'B', 1, 1, "BGP"
54 +ZEBRA_ROUTE_PIM, pim, pimd, 'P', 1, 0, "PIM"
54 55 # HSLS and OLSR both are AFI independent (so: 1, 1), however
55 56 # we want to disable for them for general Quagga distribution.
56 57 # This at least makes it trivial for users of these protocols
57 58 # to 'switch on' redist support (direct numeric entry remaining
58 59 # possible).
59 60 ZEBRA_ROUTE_HSLS, hsls, hslsd, 'H', 0, 0, "HSLS"
60 61 ZEBRA_ROUTE_OLSR, olsr, olsrd, 'o', 0, 0, "OLSR"
61 62 ZEBRA_ROUTE_BABEL, babel, babeld, 'A', 1, 1, "Babel"
62 63
63 64 ## help strings
64 65 ZEBRA_ROUTE_SYSTEM, "Reserved route type, for internal use only"
65 66 ZEBRA_ROUTE_KERNEL, "Kernel routes (not installed via the zebra RIB)"
66 67 ZEBRA_ROUTE_CONNECT,"Connected routes (directly attached subnet or host)"
67 68 ZEBRA_ROUTE_STATIC, "Statically configured routes"
68 69 ZEBRA_ROUTE_RIP, "Routing Information Protocol (RIP)"
69 70 ZEBRA_ROUTE_RIPNG, "Routing Information Protocol next-generation (IPv6) (RIPng)"
70 71 ZEBRA_ROUTE_OSPF, "Open Shortest Path First (OSPFv2)"
71 72 ZEBRA_ROUTE_OSPF6, "Open Shortest Path First (IPv6) (OSPFv3)"
72 73 ZEBRA_ROUTE_ISIS, "Intermediate System to Intermediate System (IS-IS)"
73 74 ZEBRA_ROUTE_BGP, "Border Gateway Protocol (BGP)"
75 +ZEBRA_ROUTE_PIM, "Protocol Independent Multicast (PIM)"
74 76 ZEBRA_ROUTE_HSLS, "Hazy-Sighted Link State Protocol (HSLS)"
75 77 ZEBRA_ROUTE_OLSR, "Optimised Link State Routing (OLSR)"
76 78 ZEBRA_ROUTE_BABEL, "Babel routing protocol (Babel)"

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut