- 博客(213)
- 资源 (29)
- 收藏
- 关注
原创 Wireshark中的length栏位
L3 = L1 + L2 L3 = L1 + L2 L3 = L1 + L2 + 40(IPv6 header length)
2024-11-14 22:25:50
920
原创 Linux TCP CC状态机
万字详文:TCP 拥塞控制详解 - 知乎 bcc/tools/tcpcong.py at master · iovisor/bcc bcc/tools/tcpcong_example.txt at master · iovisor/bcc
2024-10-26 09:30:06
432
2
原创 linux上trace code的几种方法
但是,如果直接查看源码,源码可能代码量大,且分支多,不容易理清。就需要让相关程序运行起来查看。2.查看某个函数被执行时的routine。1.查看某个场景下的代码执行流。1.无侵入方式(不修改源码)2.侵入方式(修改源码)
2024-10-26 09:20:44
470
原创 QEMU - user network
可以看出 tcp连接是建立成功的,后面由于guest os/SLIRP上ssh不支持,SLIRP就断开guest和host的tcp连接了。理论上,guest os会通过dhcp client和SLIRP上的dhcp server沟通,自动配置guest os的网卡。用的host的 localhost ip 和 host OS的tcpip stack。Guest OS tcpip stack 和 SLIRP tcpip stack沟通。可以看出guest上没有支持sshd,所有该ssh的tcp连接没有成功。
2024-08-31 11:23:33
705
原创 linux - ping -I 的一种异常场景处理分析
linux会根据路由规则选择一个其他网卡的ip,但,还是会从该指定网卡发送。用ping -I 指定一个没有配置ip地址且已经up起来的网卡。
2023-07-23 21:08:36
567
原创 linux - skb 基本概念理解
skb的基本理解和常用操作二. 两种非线性区的使用方式2.1 DMA and Fragmented sk_buff Containing Paged Data
2023-04-04 22:38:08
556
原创 linux-中断下半部
中断分成上下半部处理可以提高中断的响应能力,在上半部处理完成后便将中断打开(通常上半部处理越快越好),这样就可以响应其他中断了,等到中断退出的时候再进行下半部的处理。
2023-02-27 21:24:31
450
转载 RCU浅析理解
RCU - Read-Copy-Update (读时加锁,写时拷贝,读后更新)为读写锁的升级版特点:运行读者和写者并发执行;最大程度减少读者侧的开销;没有死锁问题没有优先级反之问题没有内存泄漏问题很好的实时延迟写者的同步开销比较大,写者之间需要互斥处理。
2023-02-23 22:40:53
658
原创 Linux - iputils - ping
一般是因为网卡没有释放发送buffer,可检查网卡驱动的tx done函数。创建了两个socket。sockbuff大小。
2023-02-09 20:30:04
501
原创 tc ebpf sample - tethering offload on linux pc
【代码】tc ebpf sample - tethering offload on linux pc。
2022-11-30 22:30:48
927
原创 Linux - 虚拟网络设备 - 链路聚合,bond,team
引用高级网络配置之BOND 与 TEAM网络接口 一. bond基本概念: 将多块网卡虚拟成为一块网卡,使其具有相同的ip地址,来实现提升主机的网络吞吐量或者是提高可用性,这种技术被称作bonding。模式0( 平衡轮循) -mode=0(balance-rr) 轮循策略,所有接口都使用采用轮循方式在所有Slave 中传输封包; 任何Slave 都可以接收 - 模式1( 主动备份) -mode=1(active-backup) 容错。同时只有一个Slave在工作,但是...
2022-04-05 13:08:05
4300
原创 Linux - 网络子系统 - ss的三种tcp速率解析
一. send_bps根据RTT和拥塞窗口计算的发送速率,可能实际速率小于此值。例如,当由于TSQ等机制导致发送延迟,而占不满拥塞窗口。 tcp_input.c - net/ipv4/tcp_input.c - Linux source code (v5.17.1) - Bootlin s.send_bps = (double) info->tcpi_snd_cwnd * (double)info->tcpi_snd_mss * 8000000. / rtt; ==》info-&g..
2022-03-28 21:01:35
4398
原创 Linux - 网络子系统 - TCP RTT and RTO
TCP中RTT的测量和RTO的计算 TCP系列15—重传—5、Linux中RTO的计算一. 基本概念二. linux 代码
2022-02-27 19:42:05
2941
转载 TCP知识点概述
TCP在TIME-WAIT状态下的时候,如果接收到reset包,它可能会提前结束TIME-WAIT状态,包括 停止等待ARQ和连续ARQ。
2021-12-19 21:09:04
207
转载 Linux tracing systems & how they fit together
I’ve been confused about Linux tracing systems foryears. There’s strace, and ltrace, kprobes, and tracepoints, and uprobes, and ftrace, and perf, and eBPF,and how does it all fit together and what does it all MEAN?Last week I went to Papers We Love and.
2021-12-19 20:31:18
407
原创 ipv4 options - Record route
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <unistd.h>#include <netinet/in_systm.h>#include <netinet/ip.h>#include <arpa/inet.h>static unsigned char *optr; /* pointer into options bei.
2021-12-02 22:12:24
458
原创 IPv6 extension header
RFC 3542 - Advanced Sockets Application Program Interface (API) for IPv6 RFC 2460 (Obsoleted: Dec 1998 - Jul 2017, 39 pages)#include <stdlib.h>#include <unistd.h>#include <stdio.h>#include <string.h>#include <sys/types.h&g
2021-11-28 22:59:28
1939
原创 TCP CC tracing
#!/usr/bin/python## tcp_cc Trace TCP IPv4 tcp_slow_start and tcp_cong_avoid_ai().# For Linux, uses BCC, eBPF. Embedded C.from __future__ import print_functionfrom bcc import BPFfrom bcc.utils import printb# define BPF programbpf_text =...
2021-11-14 21:08:16
1592
sourceinsight4.0
2017-09-24
kiwi syslog server
2017-09-24
好用的串口助手
2017-03-24
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人