ppbaozi 最近的时间轴更新
ppbaozi

ppbaozi

V2EX 第 189705 号会员,加入于 2016-09-01 00:10:03 +08:00
根据 ppbaozi 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
ppbaozi 最近回复了
7 天前
回复了 Features 创建的主题 问与答 特别闲,不知道做什么怎么办?
项目是研发相关的还是转行了?
9 天前
回复了 VShawn 创建的主题 硬件 开工摸鱼发现黑群晖的硬盘损毁了一块
我 12 年的 2.5 寸盘还健在
10 天前
回复了 ppbaozi 创建的主题 宽带症候群 发现 v6 被扫
@Daeyn 我们 src 都一样,我这不是 bt ,盒子上没 bt
10 天前
回复了 ppbaozi 创建的主题 宽带症候群 发现 v6 被扫
@kaedeair 应该是盒子上某个国产 app 有猫腻
10 天前
回复了 ppbaozi 创建的主题 宽带症候群 发现 v6 被扫
@datou drop 掉所有未知的 forward ,我只是在命中规则时打了日志
10 天前
回复了 ppbaozi 创建的主题 宽带症候群 发现 v6 被扫
@huangya
是拒绝的,我只是把日志打了出来,他扫不到任何结果
10 天前
回复了 ppbaozi 创建的主题 宽带症候群 发现 v6 被扫
@acbot
对,我也是这么想的,如果这个盒子后续还被扫就是某个国产软件有猫腻,但是排查出来有点麻烦
12 天前
回复了 ppbaozi 创建的主题 宽带症候群 windows 有无好用的 ipv6 ndp 查看的工具
```
using System.Net;
using System.Net.NetworkInformation;

// Get the list of network interfaces
NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();

// Loop through each interface
foreach (NetworkInterface ni in interfaces)
{
// Check if the interface is an IPv6 interface
if (ni.Supports(NetworkInterfaceComponent.IPv6))
{
// Get the list of IPv6 addresses for the interface
IPAddressCollection addresses = ni.GetIPProperties().UnicastAddresses;

// Loop through each IPv6 address
foreach (IPAddress address in addresses)
{
// Check if the address is an IPv6 address
if (address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6)
{
// Get the list of neighbors for the address
IPv6NeighborCollection neighbors = ni.GetIPv6Properties().GetIPv6Neighbors(address);

// Loop through each neighbor
foreach (IPv6Neighbor neighbor in neighbors)
{
// Display the neighbor's IP address and MAC address
Console.WriteLine("Neighbor IP Address: {0}", neighbor.Address);
Console.WriteLine("Neighbor MAC Address: {0}", neighbor.LinkLayerAddress);
}
}
}
}
}
```
关于   ·   帮助文档   ·   博客   ·   nftychat   ·   API   ·   FAQ   ·   我们的愿景   ·   广告投放   ·   实用小工具   ·   4524 人在线   最高记录 5556   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 06:55 · PVG 14:55 · LAX 23:55 · JFK 02:55
Developed with CodeLauncher
♥ Do have faith in what you're doing.