首页 > 其他分享 >ICMPv6-Neighbor-solicitation

ICMPv6-Neighbor-solicitation

时间:2023-02-08 11:11:19浏览次数:43  
标签:24 6a solicitation 6f .... 34 ICMPv6 Neighbor b3

No. Time Source Destination Protocol Info
1 0.000000 fe80::f8ae:aae:ee9a:bdc0 ff02::1:ff9f:87fc ICMPv6 Neighbor solicitation for fe80::ac96:29ff:fe9f:87fc from 34:6f:24:6a:95:b3

Frame 1: 86 bytes on wire (688 bits), 86 bytes captured (688 bits)
Arrival Time: Feb 8, 2023 10:58:45.881237000 中国标准时间
Epoch Time: 1675825125.881237000 seconds
[Time delta from previous captured frame: 0.000000000 seconds]
[Time delta from previous displayed frame: 0.000000000 seconds]
[Time since reference or first frame: 0.000000000 seconds]
Frame Number: 1
Frame Length: 86 bytes (688 bits)
Capture Length: 86 bytes (688 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: eth:ipv6:icmpv6]
[Coloring Rule Name: ICMP]
[Coloring Rule String: icmp || icmpv6]
Ethernet II, Src: 34:6f:24:6a:95:b3 (34:6f:24:6a:95:b3), Dst: IPv6mcast_ff:9f:87:fc (33:33:ff:9f:87:fc)
Destination: IPv6mcast_ff:9f:87:fc (33:33:ff:9f:87:fc)
Address: IPv6mcast_ff:9f:87:fc (33:33:ff:9f:87:fc)
.... ...1 .... .... .... .... = IG bit: Group address (multicast/broadcast)
.... ..1. .... .... .... .... = LG bit: Locally administered address (this is NOT the factory default)
Source: 34:6f:24:6a:95:b3 (34:6f:24:6a:95:b3)
Address: 34:6f:24:6a:95:b3 (34:6f:24:6a:95:b3)
.... ...0 .... .... .... .... = IG bit: Individual address (unicast)
.... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
Type: IPv6 (0x86dd)
Internet Protocol Version 6, Src: fe80::f8ae:aae:ee9a:bdc0 (fe80::f8ae:aae:ee9a:bdc0), Dst: ff02::1:ff9f:87fc (ff02::1:ff9f:87fc)
Internet Control Message Protocol v6

标签:24,6a,solicitation,6f,....,34,ICMPv6,Neighbor,b3
From: https://www.cnblogs.com/dhcpclass/p/17101042.html

相关文章

  • 题解 ABC231D【Neighbors】
    首先,每个数不能有超过两个相邻元素,不然无法构成一条链。可以通过记录每个数出现次数(度数)来判断。其次,给的信息不能成环,不然也无法构成一条链。可以通过并查集来判断。在......
  • 值得学习的ICMPv6 协议
    在IPv4中,路由器使用ICMP向源节点报告向目的地传输IP报文过程中的错误和信息。它为诊断、信息通知和管理目的定义了一些消息,如目的不可达、报文超长、超时、回显请求和回显应......
  • NFormer: Robust Person Re-identification with Neighbor Transformer
    简介:NFormer是一种基于NeighborTransformer的鲁棒人体重新识别方法。它通过对相邻图像中人体的特征进行聚合来提高人体重新识别的准确性和稳定性。首先,NFormer通过学习......
  • Relational Learning with Gated and Attentive Neighbor Aggregator for Few-Shot Kn
    小样本知识图补全——关系学习。利用三元组的邻域信息,提升模型的关系表示学习,来实现小样本的链接预测。主要应用的思想和模型包括:GAT、TransH、SLTM、Model-AgnosticM......
  • PYG中的NeighborLoader
    Examplefromtorch_geometric.datasetsimportPlanetoidfromtorch_geometric.loaderimportNeighborLoaderimporttorchdata=Planetoid('./dataset',name='Cora......
  • 机器学习 之 K近邻(K-NearestNeighbor)文本算法的精确率
    目录​​0、推荐​​​​1、背景​​​​2、效果图​​​​3、本次实验整体流程​​​​4、这里不用词向量,而是用TF-IDF预处理后的向量​​​​5、源代码​​​​6、知识点......
  • K 近邻算法 K-NearestNeighbor
    目录理论算法KD树构造搜索实现应用鸢尾花数据集观测数据应用算法二维图像实例一维数据实例参考书目及网站理论K-NN,即k近邻算法,是一种基本的分类和回归的算法,其主要思......