AIX 上 BPF 设备数量不断增加

发布于 2024-09-11 04:07:23 字数 79 浏览 8 评论 0原文

有人知道如何将 AIX 5.2/5.3 中的 BPF 设备数量增加到高于假定的系统默认值 4 个吗?即同时运行四个以上的 tcpdump 进程?

Anyone know how to increase the number of BPF devices in AIX 5.2/5.3 above the supposed system default of four? i.e. running more than four tcpdump processes concurrently?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒几许 2024-09-18 04:07:23

我认为答案是“不可能”。

原因是读取头文件/usr/include/net/bpf.h:(

我的是AIX 5.2)

然后你遇到:

#define NBPFILTER       4

/* Flags to set the appropriate minor device */
#define BPF0    0x1    /* /dev/bpf0 */
#define BPF1    0x2    /* /dev/bpf1 */
#define BPF2    0x4    /* /dev/bpf2 */
#define BPF3    0x8    /* /dev/bpf3 */

所以数字“4”实际上是硬编码到源代码中的,上面的每一个bpfX 全部预编程至 4。

The answer I think is "IMPOSSIBLE".

The reason is to read the header file /usr/include/net/bpf.h:

(mine is AIX 5.2)

Then u come across:

#define NBPFILTER       4

/* Flags to set the appropriate minor device */
#define BPF0    0x1    /* /dev/bpf0 */
#define BPF1    0x2    /* /dev/bpf1 */
#define BPF2    0x4    /* /dev/bpf2 */
#define BPF3    0x8    /* /dev/bpf3 */

So the number "4" is in fact hardcoded into the source code, and each of the above bpfX is all preprogrammed up to 4.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文