Tungsten Fabric solution guide Gateway MX

Author: Tony Liu translator: TF Compilation Group 1 Overview This guide describes how to use MX as a gateway to provide external or underlay connectivity for the overlay layer managed by Tungsten Fabric (the original version is contract, and its open source version has been renamed Tungsten Fabric, wh ...

Posted by georgee.b on Thu, 11 Jun 2020 19:49:44 -0700

Solution for ping incompatibility between GNS3 router devices

0x00 experimental environment Name Edition Explain Host OS Window 7 simulator GNS3 v2.2.8 GNS3 vm v2.2.8 virtual machine VMware 15 Router Mirror c7200 adventerprisek9 0x01 Network Topology 0x02 problem description Host PC1 ping does not pass through f1 port of router R1 S ...

Posted by eternalprophet on Thu, 11 Jun 2020 18:49:34 -0700

Linux command ifconfig command

Catalog ifconfig command Show Network Devices Set up network devices ifconfig command Function description: Display or set up network devices usage ifconfig [interface] [up|down] ifconfig interface options | address ... option option Explain -a Displays the status of all interfaces, including information about inactive interf ...

Posted by j0se on Thu, 21 May 2020 10:43:24 -0700

Easy to understand introduction to Deno

  1, About Deno Deno is a JavaScript/TypeScript runtime, which executes code in a secure environment by default, with excellent development experience. Deno has the following features: Default security. External code does not have access to file system, network and environment unless it is explicitly enabled. An environment ...

Posted by Japet on Wed, 20 May 2020 05:44:00 -0700

New features of JDK11: new HTTP API

brief introduction Before JDK11, the HTTP function of java was very weak, only HttpURLConnection was provided for HTTP connection, and it was very complex to use. So we usually use the third-party HTTP client (Apache HttpComponents or OkHttp) to make HTTP requests. Everything has changed in JDK11. In the java.net.http package, the latest HttpCl ...

Posted by PhilipXVIII18 on Wed, 13 May 2020 15:58:37 -0700

ZigBee Module Protocol Stack-Z-Stack Protocol Stack Foundation and Data Transfer Experiments

It took a long time to write.. It feels good.. If you look, look closely.. Mua~ Z-Stack Protocol Stack Base and Data Transfer Experiments 1. Experimental Purpose End nodes send data wirelessly to the coordinator, which sends data to the PC through a serial port and displays it on the screen.Serial port optimization changes wired serial port ...

Posted by pgsjoe on Mon, 04 May 2020 17:09:56 -0700

Tensorflow visual programming

Install tensoflow 1.0 Linux/ubuntu: python2.7: pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl python3.5: pip3 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp35-cp35m-linux_x86_64.whl Maxos: python2: pip install https://storage.googleapis.com/te ...

Posted by kr3m3r on Mon, 04 May 2020 08:56:13 -0700

Hibernate learning notes (6)

1, Object navigation query Previous relationships between customers and contacts were one to many: One to many Scenario: query the customer according to the customer id, and find out all contacts of the customer @Test public void selectTest(){ SessionFactory sessionFactory = null; Session session = null; Transacti ...

Posted by 01706 on Thu, 30 Apr 2020 11:07:51 -0700

Laya2.x game engine introduction series: pixel level restore text

Text in the game The first article in our series tells you how to render the text "Hello World" on the stage in the game. However, the elder brother who often plays the game must know that there are not only ordinary words in the game, but also all kinds of fancy fonts. How can we realize these words? We can see that in the screens ...

Posted by sicKo on Tue, 28 Apr 2020 23:54:35 -0700

Elegant implementation of Go json time format

At the beginning, the requirement is very simple. You only need to deserialize the time string in json according to the specified format https://www.jianshu.com/p/c02af04165e2 , the code is as follows: package main import ( "encoding/json" "fmt" "time" ) // set time format const ( timeFormat = "2006-01-02 15:04:05" ) // Custo ...

Posted by colossus_09 on Fri, 17 Apr 2020 07:38:58 -0700