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

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

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

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