pdu

大学网络管理课程复习总结

孤人 提交于 2019-12-06 08:53:42
网络管理复习总结 第1章 网络管理基础 选择题 1. 管理者和代理间的信息交换是通过(A)进行的。 A . PDU( 数据单元 ) B. Polling(轮询) C. Heartbeat(心跳) D. AC(应用上下文) 2. 网络管理的要素包括(A、B、C)。 A .被管对象 B .管理方法 C .管理系统 D. 管理模块 3. 下列选项中不是网络管理内容的是(C)。 A.运行 B.控制 C. 计费 D.维护 4. 一个网络管理系统从逻辑上由管理者、管理代理、管理协议和(管理信息库)组成。 A.数据库 B. 管理信息库( MIB ) C.数据仓库 D.信息系统 5. 一个网络管理是应用进程中负责完成管理者的指示,并反馈其所在设备的信息,如果是非标准设备应该使用(D) A.设备代理 B.标准代理 C.代理插件 D. 转换代理 6. SNMP的四种操作中,(A)是由代理发给管理者的,且不需要管理者响应。 A.trap B.get C.get-next D.set 简答题 1. 什么是网络管理? 答:网络管理是指对网络的运行状态进行 监测 和 控制 ,使其能够有效、可靠、安全、经济地提供服务。 2. 网络管理的目标是什么? 答: 有效性 网络要能准确、及时地传递信息 可靠性 网络保证能稳定运转,对故障及灾害有抵御能力和一定的自愈能力 开发性 支持多厂商的异种设备 综合性 业务多元化

CDMA PDU parsing on Android

人盡茶涼 提交于 2019-12-04 17:25:49
I have written a program to decode a CDMA 3GPP2 point-to-point SMS message. I tested it on a couple CDMA PDU hex strings I found on the internet, and it works perfectly. However, when I try to implement it on all incoming text messages on the Android platform, it always fails. I took a look at the incoming PDU, and it doesn't seem to follow the same pattern I have been used to seeing. Can anyone explain what format this PDU is in, or what I am missing to correctly decode this PDU? Is there additional header or fields I am not taking into account? Example PDU pulled from a incoming text message

Create PDU for Android

心不动则不痛 提交于 2019-12-04 14:37:27
I am currently writing and application, that is sending/receiving SMS messages. For unit-testing purposes I need to create PDU programmatically. Decoding is quite easy: Bundle bundle = intent.getExtras(); if (bundle != null) { /* Get all messages contained in the Intent*/ Object[] pdusObj = (Object[]) bundle.get("pdus"); for (int i = 0; i < pdusObj.length; i++) { SmsMessage msg = SmsMessage.createFromPdu((byte[])pdusObj[i]); } } Is there any appropriate way to create PDU programamtically? Typically PDUs are hardcoded in the code. Similar to this: String pdu =

SMS raw pdu in Android

若如初见. 提交于 2019-12-04 08:38:54
问题 1) Is there any way that I can send a raw SMS PDU from an Android device? Or, 2) are there any classes available that can give me access to the PDU headers (for example TP-DCS) so that I can construct the PDU as I like? I have searched the net and found: http://www.androidjavadoc.com/1.0_r1_src/com/android/internal/telephony/gsm/ISms.html but the above classes are private and as such are not available to me(haven't actually understood why). Is what I'm asking possible in any way or not? If

Encoding SMS messages in Android

懵懂的女人 提交于 2019-12-03 08:51:52
问题 My problem is that I want to send an SMS message of a certain Class and with a certain encoding. (Class 0 and 7-bit encoding). When checking the Android.Telephony.SmsManager and SmsMessage there is not so much you can do. The SmsManager offers the two functions SendTextMessage and SendDataMessage. The first one works fine if you simply wants to send a normal SMS to somebody. So I guess that the SendDataMessage is the function that I somehow needs to use. However I can not figure out how to

Create CDMA (3gpp2) PDU in Android

匿名 (未验证) 提交于 2019-12-03 01:34:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I asked a similar question last week and even set a bounty on it, after realizing the problem was the answer given was for a GSM PDU (3gpp) and it worked flawlessly in the emulator (android 2.2). I accepted the Answer and awarded the bounty, and changed the title for future reference. Question: Now, I'm asking how to create a CDMA (3gpp2) PDU, similar to creating a GSM PDU (3gpp) , that can be parsed in Android's API createFromPdu() Trying to avoid writing it my self: I was excited when reading the new method createFromPDU(byte[] pdu, String

OAM PDU

匿名 (未验证) 提交于 2019-12-03 00:36:02
MPLS OAM基本概念: MPLS 提供一个完全不依赖于任何三层协议或二层协议的 OAM 机制,在 MPLS 的数据平面实现以下功能: 1确定LSP的连通性 2.衡量网络利用率以及度量网络性能 3. 在链路出现缺陷或故障时迅速进行保护倒换,以便根据与客户签订的 SLA 提供相应等级的服务 利用 MPLSOAM 机制,可以有效地检测、确认并定位出源于 MPLS 层网络内部的缺陷;报告缺陷并做出相应的处理;在出现故障的时候,能够提供保护倒换的触发机制 OAM PDU 基本概念: ME:维护实体 MEP:维护实体组端点 MIP:维护实体组中间节点 MEL:MEG等级 OAM PDU功能 文章来源: OAM PDU

SMS raw pdu in Android

99封情书 提交于 2019-12-03 00:31:54
1) Is there any way that I can send a raw SMS PDU from an Android device? Or, 2) are there any classes available that can give me access to the PDU headers (for example TP-DCS) so that I can construct the PDU as I like? I have searched the net and found: http://www.androidjavadoc.com/1.0_r1_src/com/android/internal/telephony/gsm/ISms.html but the above classes are private and as such are not available to me(haven't actually understood why). Is what I'm asking possible in any way or not? If not then why can't I have that kind of functionallity? Thanx This is a requested feature for the public

5G(7)---5G NR协议栈及功能2 - MAC RLC PDCP SDAP

匿名 (未验证) 提交于 2019-12-03 00:19:01
5G NR协议栈及功能2 - MAC RLC PDCP SDAP   备注:本文所有图片均来自3GPP标准,包括3GPP TS 38.300 V15.0.0 (2017-12)和3GPP TS 38.202 V15.0.0 (2017-12)等。本文主要介绍截止目前(2018年1月25日),3GPP 5G NR相关的协议内容,后期可能会有更新。   本系列共分为两部分:   1. 5G NR协议栈及功能1 - 总体架构与物理层 http://blog.csdn.net/jxwxg/article/details/79160245 http://blog.csdn.net/jxwxg/article/details/79160449 一 层2功能介绍   NR层2包含SDAP、PDCP、RLC和MAC层。 二 MAC层 2.1 MAC层实体   MAC层实体如下图所示:   当配置了双链接时,MCG和SCG的MAC层实体如下图所示: 2.2 服务和功能 2.3 逻辑信道   逻辑信道根据传输信息的类型来区分。逻辑信道主要分为两类:控制信道和业务信道。   业务信道用于传输用户平面的信息,包含以下逻辑信道: 2.4 逻辑信道&传输信道&物理信道映射   逻辑信道按照传输信息类型区分,所以不存在上下行。传输信道按照信息怎么传输区分,所以区分上下行传输信道。 (图片来自 www

ISIS报文类型

匿名 (未验证) 提交于 2019-12-03 00:19:01
IS-IS报文有以下几种类型:HELLO PDU(Protocol Data Unit)、LSP和SNP。 Hello PDU Hello报文用于建立和维持邻居关系,也称为IIH(IS-to-IS Hello PDUs)。其中,广播网中的Level-1 IS-IS使用Level-1 LAN IIH;广播网中的Level-2 IS-IS使用Level-2 LAN IIH;非广播网络中则使用P2P IIH。它们的报文格式有所不同。P2P IIH中相对于LAN IIH来说,多了一个表示本地链路ID的Local Circuit ID字段,缺少了表示广播网中DIS的优先级的Priority字段以及表示DIS和伪节点System ID的LAN ID字段。 LSP 链路状态报文LSP(Link State PDUs)用于交换链路状态信息。LSP分为两种:Level-1 LSP和Level-2 LSP。Level-1 LSP由Level-1 IS-IS传送,Level-2 LSP由Level-2 IS-IS传送,Level-1-2 IS-IS则可传送以上两种LSP。 LSP报文中主要字段的解释如下: ATT字段:当Level-1-2 IS-IS在Level-1区域内传送Level-1 LSP时,如果Level-1 LSP中设置了ATT位,则表示该区域中的Level-1 IS