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

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

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

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