695652c9d1
This is a 1RU switch with 32 QSFP28 (40G/100G) ports on Broadcom Tomahawk I chipset. CPU used in QFX5200-32C-S is Intel Ivy Bridge. The machine has Redundant and hot-swappable Power Supply (1+1) and also has Redundant and hot swappable fans (5). Signed-off-by: Ciju Rajan K <crajank@juniper.net> Signed-off-by: Ashish Bhensdadia <bashish@juniper.net>
16 lines
296 B
Python
Executable File
16 lines
296 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
from setuptools import setup
|
|
os.listdir
|
|
|
|
setup(
|
|
name='sonic_platform',
|
|
version='1.0',
|
|
description='Module to initialize Juniper QFX5200-32C-S platforms',
|
|
|
|
packages=['sonic_platform'],
|
|
package_dir={'sonic_platform': 'qfx5200/sonic_platform'},
|
|
)
|
|
|