Posts

Sonic-Dell-ConfigDB_Template

#JSON FORMAT for the Azure Sonic Open Networking Software implementation in a white-box switch. { "DEVICE_METADATA": { "localhost": { "bgp_asn": null, "deployment_id": null, "hostname": "sonic", "type": "ToR", "hwsku": "Dell-S4048-on" } }, "BGP_PEER_RANGE": {}, "VLAN": {}, "PORT": { "Ethernet1": { "alias": "TenGigabitEthernet1/1" }, "Ethernet2": { "alias": "TenGigabitEthernet1/2" }, "Ethernet3": { "alias": "TenGigabitEthernet1/3" }, "Ethernet4": { "alias": "TenGigabitEthernet1/4" }, "Ethernet5&qu

SOFTWARE FOR OPEN NETWORKING in the CLOUD - Dell S4048-ON - ONIE

AZURE SONIC ON ONIE For DELL S4048-ON Ports: 48 x 10GbE switch with 6 x 40GbE uplink ports. Chipset: Broadcom Trident2 CPU: Intel Rangeley, 2GB DDR3 Dell is one of the few vendors that offer full support for their whitebox solutions in combination with the certified NOS options. This approach is often called a BriteBox (Branded Switch + Whitebox Switch). The switch supports ONIE, and via this Cumulus Linux, SwitchLight, Azure Sonic, Ipinfusion OcNOS and Pluribus. Dell OS9 is preinstalled. This switch is a high-density, ultra-low-latency ToR switch that features 48 x 10GbE SFP+ and 6 x 40GbE ports (or 72 x 10GbE ports in breakout mode) and up to 720Gbps performance. ################################################################################ #                                                                                                                                                            # ###############################################################

DJANGO FRAMEWORK INSTALLATION AND CMS SETUP ON UBUNTU 18.04 LTS

Step 1 First and foremost we confirm the python version. On my Ubuntu machine, there are two versions of python available, python 2.7 as default python version and python 3 .  Check the python version: python --version So the default python is 2.7 at the moment. Next, change the default python to python version 3 with the 'update-alternatives' command: update-alternatives --install /usr/bin/python python /usr/bin/python3 Now confirm the python version. And you will get python 3.* as a default python on the system.  Setup Python 3 on Ubuntu Note:  By default, Ubuntu  18.04 has no 'python' command, because it brings the 'python3' command as default python. See the Bionic Beaver   Release Notes . Step 2   Let's Install Django, shall we? I'll take you through 3 ways to install Django. Please follow either chapter 2.1, 2.2 or 2.3 to install Django but not all 3 options at the same time :). 2.1.