<doc>
Template to parse Cisco IOSXR OSPF database content.

</doc>

<input load="python">
# Starting with Netmiko 3.4.0 can use run_ttp method to populate this template with below commands output
commands = [
    "show ospf database router",
    "show ospf database summary",
    "show ospf database external",
]
kwargs = {"strip_prompt": False}
method = "send_command"
</input>

<extend template="ttp://platform/cisco_xr_show_ospf_database_router.txt"/>
<extend template="ttp://platform/cisco_xr_show_ospf_database_external.txt"/>
<extend template="ttp://platform/cisco_xr_show_ospf_database_summary.txt"/>