AR3配置 interface GigabitEthernet0/0/0 ip address 23.1.1.3 255.255.255.0 # interface GigabitEthernet0/0/1 ip address 192.168.1.254 255.255.255.0 ospf 1 ...
分类:
其他好文 时间:
2020-05-31 17:48:22
阅读次数:
114
官方文档: https://wiki.mikrotik.com/wiki/Manual:PPP_AAA on-up (script; Default: ) Execute script on user login-event. These are available variables that a ...
分类:
其他好文 时间:
2020-05-31 17:41:48
阅读次数:
87
#netstat命令详解 ##简介 Netstat 命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquerade 连接,多播成员 (Multicast Memberships) 等等。 ##输出信息含义 执行netstat后,其输出结 ...
分类:
Web程序 时间:
2020-05-31 15:55:32
阅读次数:
71
[设计模式]工厂模式 一、简单工厂模式(静态工厂模式) 车的接口 public interface Car { void name(); } 车接口的三个实现类 public class BYD implements Car{ @Override public void name() { Syste ...
分类:
其他好文 时间:
2020-05-31 13:02:11
阅读次数:
54
@interface:这个关键字隐含的意思就是继承了java.lang.annotation.Annotation接口。 注解的定义 1 public @interface testAnnotaion{ 2 } ...
分类:
其他好文 时间:
2020-05-31 11:00:20
阅读次数:
33
Java的基本数据类型 在java中,数据类型分为基本数据类型和引用数据类型,基本数据类型包含int、long、float等8种数据类型,引用数据类型包含类(calss)、接口(interface)、数组等数据类型。 由于引用数据类型比较复杂,暂不做详细介绍,下面介绍以下Java的8种基本数据类型 ...
分类:
编程语言 时间:
2020-05-30 21:41:57
阅读次数:
76
Linux下如果我们进入到了一个比较长的路径,比如:/home/alvin/projects/blogdemos/linux-system-programming/thread/home/alvin/projects/blogdemos/diff/home/harry/study/亚洲文化/日本文化/中日交流/影视业/动作片如果我们想要回退到一个特定的父目录,那么我们通常的做法是这样敲:$cd..
分类:
其他好文 时间:
2020-05-30 21:35:26
阅读次数:
57
1 unit MainFM; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, 7 Vcl.Control ...
Refresh Cells To get the grid to refresh the cells, call api.refreshCells(). The interface is as follows: // method for refreshing cells function refr ...
分类:
其他好文 时间:
2020-05-30 13:08:17
阅读次数:
131
1.新建两个文件 interface ICounter { int Get(); } public class Counter : ICounter { int i ; public int Get() { return i++; } } 2.启动时注册 //单例模式 services.AddSin ...
分类:
其他好文 时间:
2020-05-30 12:31:51
阅读次数:
61