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

# This module creates an Ospf agent 'snapshot' core  from the 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 9991

from __future__ import absolute_import, division, print_function
from Snapshot import doSnapshot

if __name__ == '__main__':
   doSnapshot( 'ospf' ) 

