FRR Learning Day 6 - EVPN Centralized L3 Gateway

EVPN Centralized L3 Gateway--Trans-subnet Message Forwarding spine configuration Interface Configuration sudo ip link add vbdif10 type bridge sudo ip link add vbdif20 type bridge sudo ip link set vbdif10 up sudo ip link set vbdif20 up sudo ip link add vxlan20 type vxlan id 20 local 192.168.59.130 dstport 4789 nolearning sudo ip link add vxlan1 ...

Posted by MishieMoo on Wed, 09 Oct 2019 14:05:06 -0700

Server Development - Learning Notes - Cross-Platform (win, ubtu) - Fallacies to Be Modified

Links to the original text: https://mp.csdn.net/postedit/98461694 In the previous article, we realized the communication between the client and the server, which made good use of the structure. In this article, we mainly transplanted the ...

Posted by Chris 96 WS6 on Wed, 09 Oct 2019 13:18:50 -0700

The Enterprise Section - Docker's Basic Order

Start, stop, restart of docker systemctl start docker #Start docker service service docker start systemctl stop docker #Close docker service service docker stop systemctl restart docker #Restart docker service service docker restart systemctl daemon-reload ...

Posted by ceruleansin on Wed, 09 Oct 2019 06:18:15 -0700

Simple operation of installing MySQL in Ubuntu

Installing mysql on ubuntu is very simple and requires only a few commands. sudo apt-get install mysql-server mysql-client // mount this database sudo apt-get instal libmysqlclient-dev //Package C language API for database installation In the installation process, you will be prompted to set t ...

Posted by rcatal02 on Wed, 09 Oct 2019 04:05:12 -0700

[Pixhawk/PX4] Development Environment Building (Ubuntu 18.04)

This paper mainly records the building process of PX4 environment under Ubuntu 18.04. Because I installed ROS Melodic before installing PX4 environment, and gazebo was installed at the same time when installing ROS, it is impossible to determine whether the subsequent problems were caused by installing ROS first. This paper is divided into the ...

Posted by bltesar on Tue, 08 Oct 2019 00:26:10 -0700

How to install Liblas Library under ubuntu!

Download the latest version of liblas source code Download address: https://liblas.org/download.html Necessary conditions: CMake 2.8.1+ and C/C++ compilers Three. Compile 1. First of all, you must have installed Boost libraries with versions 1.38.0 and above. Not installed can refer to my blog: ...

Posted by dhimok on Mon, 07 Oct 2019 05:55:48 -0700

python 3 uses cython to encrypt python project source code

Under the project folder, create a new setup.py file, as follows: import os import re from distutils.core import Extension, setup from Cython.Build import cythonize from Cython.Compiler import Options exclude_so = ['__init__.py', "setup.py"] sources = ['./'] extensions = [] for source in sour ...

Posted by FastLaneHosting on Sun, 06 Oct 2019 22:28:41 -0700

Linux system oraclelinux redhat centos ubuntu debian mirror Download

1,Oracle Linux(Download address) (1)OracleLinux-Release6-Update0-x86_64-dvd.iso(2)OracleLinux-Release6-Update1-x86_64-dvd.iso(3)OracleLinux-Release6-Update2-x86_64-dvd.iso(4)OracleLinux-Release6-Update3-x86_64-dvd.iso(5)OracleLinux-Release6-Update4-x86_64-dvd.iso(6)OracleLinux-Release6-Update5-x86_64-dvd.iso(7)OracleLinux-Release6-Update6-x86 ...

Posted by Stickybomb on Sun, 06 Oct 2019 07:52:23 -0700

Git: push error: error: failed to push some refs to

Reference link: https://help.github.com/en/articles/dealing-with-non-fast-forward-errors Report errors: ! [rejected]master -> master (fetch first) error: failed to push some refs to 'https://github.com/rtczza/IPC.git' You want to upload the fork folder and the files in its directory to github. ...

Posted by js_280 on Fri, 04 Oct 2019 16:25:22 -0700

SHELL script PPT script

Write on the premise that you can use it 1. Determine the type of all files in / var / directory [root@linux1 scripts]# cat filetype.sh #!/bin/bash for i in $(find /var);do if [ -b $i ];then echo "$i It's a block device." elif [ -c $i ];then echo "$i It's a character device." elif [ -f $i ];then echo "$i It's an or ...

Posted by FatStratCat on Thu, 03 Oct 2019 09:48:53 -0700