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

# This module creates a ribd 'snapshot' core from the Rib agent 
# over stream sockets and is run within the context of a VRF namespace 
# by connecting to the Rib agent in that network namespace over port 9993

from Snapshot import doSnapshot

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

