#!/usr/bin/env python3
# Copyright (c) 2016 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

# This module gathers the ospf dump from OSPF agent over stream sockets 
# and is run within the context of a VRF namespace by connecting
# to the OSPF agent in that network namespace over port 9994

from __future__ import absolute_import, division, print_function
from AgentShowTech import doShowAgentDump
import OspfAgt

if __name__ == '__main__':
   doShowAgentDump( OspfAgt.name() )