fdcb69d048
This switch has 64 QSFP28 (40G/100G) ports, 2 SFP+ (1G/10G) ports on Broadcom Tomahawk II chipset. CPU used in QFX5210-64C-S is Intel Broadwell-DE. The machine has Redundant and hot-swappable Power Supply (1+1) and also has Redundant and hot swappable fans (3+1). Signed-off-by: Ciju Rajan K <crajank@juniper.net>
17 lines
305 B
Python
Executable File
17 lines
305 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='sonic_platform',
|
|
version='1.0',
|
|
description='Module to initialize Juniper QFX5210-64X platforms',
|
|
|
|
packages=['sonic_platform'],
|
|
package_dir={'sonic_platform': 'qfx5210/sonic_platform'},
|
|
)
|
|
|