OWASP测试指南中文版
2023-01-02 18:00:35 8.74MB OWASP测试
1
Markdown工具Typora操作指南
2023-01-02 13:00:47 1.13MB Typora
1
ERP管理系统资料:SAP FI 应收帐款指南(中文版).pdf
2023-01-02 00:22:05 2.11MB 管理系统 信息化
1
前 言 1 接口基础配置 1 1 接口基础简介 1 1 1 接口分类 1 1 2 接口编号规则 1 2 配置接口基本参数 1 2 1 进入接口视图 1 2 2 配置接口描述信息 1 2 3 配置流量统计时间间隔 1 2 4 配置开启或关闭接口 1 2 5 检查配置结果 1 3 维护接口 1 3 1 清除统计信息 2 以太网接口配置 2 1 以太网接口简介 2 2 规格 2 3 缺省配置 2 4 配置端口组 2 5 配置以太网接口 2 5 1 配置Combo 接口工作模式 2 5 2 配置MDI 类型 2 5 3 配置电缆检测 2 5 4 配置自协商功能 2 5 5 配置双工模式 2 5 6 配置接口速率18 2 5 7 配置流量控制19 2 5 8 配置端口隔离20 2 5 9 配置帧间隙21 2 5 10 配置允许超大帧通过 22 2 5 11 配置切换到三层模式 22 2 5 12 配置上报状态变化延时时间23 S2750&S5700&S6700 系列以太网交换机 配置指南 接口管理目 录 文档版本 07 2014 07 30 华为专有和保密信息 版权所有 华为技术有限公司 v 2 5 13 配置出 入带宽利用率日志和告警阈值23 2 5 14 配置只允许PPPoE 报文通过24 2 5 15 配置包括帧间隙的流量统计24 2 5 16 配置链路振荡保护功能25 2 5 17 配置单纤单向通信26 2 5 18 配置光功率低触发Error down 26 2 5 19 配置接收的错误报文超过阈值触发Error down27 2 5 20 配置端口保护组27 2 5 21 检查配置结果28 2 6 维护以太网接口28 2 6 1 配置环回检测功能28 2 6 2 清除统计信息29 2 7 配置举例 30 2 7 1 配置端口隔离示例30 2 8 常见配置错误32 2 8 1 两端接口双工 速率 协商模式配置不一致32 3 逻辑接口配置33 3 1 逻辑接口简介34 3 2 配置子接口34 3 2 1 配置以太网子接口34 3 2 2 配置Eth Trunk 子接口 36 3 3 配置Loopback 接口37 3 4 配置NULL 接口38">前 言 1 接口基础配置 1 1 接口基础简介 1 1 1 接口分类 1 1 2 接口编号规则 1 2 配置接口基本参数 1 2 1 进入接口视图 1 2 2 配置接口描述信息 1 2 3 配置流量统计时间间隔 1 2 4 配置开启或关闭接口 1 2 5 检查配置结果 1 3 维护接口 1 3 1 [更多]
2023-01-01 21:59:11 634KB HUAWEI 华为 S系列交换机
1
1产品简介11.1 概述 11.2 外观 11.3 物理规格22 产品特性42.1 特性列表42.2 特性介绍53 兼容性84 配置 TM21094.1 TM2
2023-01-01 20:34:04 3.15MB
1
《ANSYS非线性分析指南》《ANSYS非线性分析指南》《ANSYS非线性分析指南》《ANSYS非线性分析指南》《ANSYS非线性分析指南》《ANSYS非线性分析指南》
2022-12-31 15:01:10 401KB 《ANSYS非线性分析指南》
1
开关和多路复用器产品选型指南.pdf
2022-12-30 17:31:08 1.05MB 开关 多路复用器 产品 选型指南
1
verilog黄金参考指南中文版 详细讲解verilog 的语法以及在实际工程中总结出的经验语句,特别适合有一定经验的人参考用。
2022-12-30 16:51:58 458KB verilog 黄金参考 指南
1
2.3 内核对象 操作系统内核提供的功能,很多并不是内核本身提供的,而是跑在内核态的程序提供 的,象Linux这样的操作系统的内核,这类内核程序可能是驱动,或以伪驱动形式存在的 内核程序。 seL4中的内核对象是内核向用户程序提供的一组功能集,应用程序眼中的这些内核对 象,与内核眼中的这些对象,在接口上是一样的,就是说,服务态程序中看到的这些对象, 并没被单独包装过,只是需要通过句柄才能标识这些对象。  CNodes 存储句柄(capabilities),以使线程可以访问特定对象中的方法。每个CNode有固定 数量的槽(Slot),槽的数量于CNode创建时确定,槽中可以有一个句柄,也可以为空。  线程控制块 Thread Control Blocks (TCBs) 线程是seL4中执行与调度的基本单位,提供有阻塞、非阻塞等等功能。  IPC端点 IPC Endpoints 实现线程间的通信,seL4内核提供有下列两种端点:  同步端点 Synchronous endpoints (Endpoint), which cause the sending thread to block until its message is received; and  异步端点 Asynchronous endpoints (AsyncEP), which only allow short messages to be sent, but do not cause the sender to block. 一个指向端点的句柄可以被限定为只发送(send-only)或只接收(receive-only), 并可以被设置为可以在线程间传递。  虚拟地址空间对象 Virtual Address Space Objects 用来创建虚拟地址空间(或VSpace),这些虚拟地址空间可以给一个线程或多个线程 使用。这些对象管理着物理的存储设备,例如,页字典(page directory)管理着页 表(page directory),页表就是让你的虚拟地址与物理地址对应起来的那个物理器 件MMU,内核还包括ASID Pool和ASID Control对象,用来跟踪地址空间状态。  中断对象 Interrupt Objects give applications the ability to receive and ac-knowledge interrupts from hardware devices. Initially, there is a capability to IRQControl, which allows for the creation of IRQHandler capabilities. An IRQHandler capability permits the management of a speci c interrupt source associated with a speci c device. It is delegated to a device driver to access an interrupt source. The IRQHandler object allows threads to wait for and acknowledge individual interrupts.  原始内存 Untyped Memory is the foundation of memory allocation in the seL4 kernel. Untyped memory capabilities have a single method which allows the creation of new kernel objects. If the method succeeds, the calling thread gains access to capabilities to the newly-created objects. Additionally, untyped memory objects can be divided into a group of smaller untyped memory objects allowing delegation of part (or all) of the system's memory. We discuss memory management in general in the following sections.
2022-12-30 11:30:10 3.55MB sel4
1
80x86汇编语言程序设计 上机题目的源代码
2022-12-30 00:54:01 957KB 许向阳
1