Beispiel #1
0
#!/usr/bin/env python
"""
Arista 7260CX3-64 eeprom plugin
Uses the arista driver library to obtain the TlvInfoDecoder
"""

try:
    import arista.utils.sonic_eeprom as arista_eeprom
except ImportError, e:
    raise ImportError(str(e) + "- required module not found")

board = arista_eeprom.getTlvInfoDecoder()
Beispiel #2
0
#!/usr/bin/env python

"""
Arista 7050QX-32S eeprom plugin
Uses the arista driver library to obtain the TlvInfoDecoder
"""

try:
    import arista.utils.sonic_eeprom as arista_eeprom
except ImportError, e:
    raise ImportError (str(e) + "- required module not found")

board = arista_eeprom.getTlvInfoDecoder()