http://wenku.baidu.com/link?url=tWdw-Kgn_Ncr52ooBSL2J0y_ZJy3SvAXGv9Lu5UOKB333frE48hmkQ_5Pj9CJeCtGm7_tRb206BhbDJ1uXidkXTqJOKwwycvNWZW9FX-G7K

A (address) resource record / A(地址)资源  记录

AAL, ATM adaptation layer / ATM 适配层

ABR, area border router / 区域边界路由器

ABR, available bit rate / 可用的传输率

access control / 访问控制

access control entry, ACE / 访问控制项

access number / 访问号码

access permission / 访问权限

access privileges / 访问特权

account lockout / 帐户锁定

ACK, acknowledgment / 确认

acknowledgment message / 确认信息

ACPI, Advanced Configuration and Power Interface / 高级配置和电源接口

active / 活动

active content / 活动内容

Active Directory

Active Directory data model / Active Directory 数据模型

Active Directory Service Interfaces / Active Directory 服务接口

Active Directory Users and Computers / Active Directory 用户和计算机

active partition / 活动分区

active volume / 活动卷

ActiveX

ActiveX control / ActiveX 控件

adapter card / 适配器卡

address classes / 地址类别

address pool / 地址池

Address Resolution Protocol, ARP / 地址  解析  协议

adjacency / 邻近

administration queue / 管理队列

administrative alerts / 管理警报

administrator / 管理员

Advanced Configuration and Power Interface, ACPI / 高级配置和电源接口

affinity / 相似性

agent / 代理

Alerter service / 报警器服务

allocation unit size / 分配单位大小

Alpha computer / Alpha 计算机

American Standard Code for Information Interchange, ASCII / 美国信息交换标准码

APIPA, Automatic Private IP Addressing / 自动专用 IP寻址

AppleShare

AppleTalk

AppleTalk Filing Protocol / AppleTalk

编档协议

AppleTalk network integration (formerly Services for Macintosh) / AppleTalk 网络集成(以前的 Macintosh 服务)

AppleTalk Phase 2

AppleTalk Protocol / AppleTalk 协议

AppleTalk Transport / AppleTalk 传输

application / 应用程序

application assignment / 应用程序指派

area border router, ABR / 区域边界路由器

AS, autonomous system / 自治区系统

ASBR, autonomous system boundary router / 自治区系统边界路由器

ASCII, American Standard Code for Information Interchange / 美国信息交换标准码

Assistive Technology Program / 辅助技术程序

asymmetric encryption / 非对称加密

asynchronous communication / 异步通讯

ATM, asynchronous transfer mode / 异步传输模式

ATM adaptation layer / ATM 适配层(AAL)

attribute / 属性

audit logging / 审核记录

audit policy / 审核策略

auditing / 审核

authentication / 身份验证

authoritative / 授权

authoritative restore / 强制性还原

authorization / 授权

auto-static routes / 自动静态路由

auto-static updates / 自动静态更新

Automatic Private IP Addressing, APIPA /自动专用 IP 寻址

autonomous system, AS / 自治区系统

autonomous system boundary router, ASBR / 自治区系统边界路由器

availability / 可用性

available bit rate, ABR / 可用的传输率

AXFR, full zone transfer / 完整区域传送

wor20161202的更多相关文章

随机推荐

  1. electron package can not find module xml2json

    问题 electron 打包好的应用找不到xml2json 但是开发环境npm start 运行正常 定位 node_modules没有包含在打的包中, 解决办法 --no-prune Be care ...

  2. 使用Newtonsoft JsonConvert反序列化Json数据到DataTable

    //JsonStr为Json字符串 JArray array = JsonConvert.DeserializeObject(JsonStr) as JArray;//反序列化为数组 ) { Stri ...

  3. 第4章 jQuery的事件和动画(二)

    二. jQuery中的动画 动画在前面几章案例中是回避不了的问题.此处结合一些简便的写法稍作系统的分析. 1. show()和hide()(1)介绍——不用过多的介绍了jQuery最基本的方法.本质是 ...

  4. MBProgressHUD上传照片进度提示

    第一步,控制器先来个属性 @property (strong, nonatomic) MBProgressHUD *HUD; 第二步,显示与隐藏的调用方法 - (void)hudTipWillShow ...

  5. Sql — CTE公用表表达式和With用法总结

    CTE(Common Table Expression) 公用表表达式,它是在单个语句的执行范围内定义的临时结果集,只在查询期间有效.它可以自引用,也可在同一查询中多次引用,实现了代码段的重复利用. ...

  6. HTML5 Audio and Video 的新属性简介

    前言:HTML5 中 Audio and Video的使用方法比较简单,但就是比较复杂,方法属性多.如果不常用的几乎难以记住,甚至有些人难以区分不同属性和方法的作用,更别说应用了.以下对Audio a ...

  7. jar tvf study.war jar命令查看war/jar包的内容

    jar tvf study.war 0 Thu Oct 20 14:01:18 CST 2016 META-INF/ 137 Thu Oct 20 14:01:16 CST 2016 META-INF ...

  8. MySQL数据导出与导入

    工具 mysql mysqldump 应用举例 导出 导出全库备份到本地的目录 mysqldump -u$USER -p$PASSWD -h127.0.0.1 -P3306 --routines -- ...

  9. 分布式消息队列RocketMQ部署

    一.RocketMQ简介: RocketMQ是一款分布式.队列模型的消息中间件,具有以下特点: 1.支持严格的消息顺序: 2.支持Topic与Queue两种模式: 3.亿级消息堆积能力: 4.比较友好 ...

  10. java web项目实现文件下载

    现在项目里面有个需求,需要把系统产生的日志文件给下载到本地先获取所有的日志文件列表,显示到界面,选择一个日志文件,把文件名传到后台: File file = new File(path);// pat ...