https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247111
longw...@incore.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |longw...@incore.de --- Comment #1 from longw...@incore.de --- Are you really sure your problem is caused by different NICs ? I had the same problem and the slowness came from incoming ARPs. In a network without ARP traffic pxeboot had normal speed. I could solve my problem with the following patch for V12.1 Stable: --- pxe.c.orig 2019-01-13 08:25:55.000000000 +0100 +++ pxe.c 2020-06-15 21:30:19.000000000 +0200 @@ -424,7 +424,7 @@ if (undi_open_p == NULL) return; bzero(undi_open_p, sizeof(*undi_open_p)); - undi_open_p->PktFilter = FLTR_DIRECTED | FLTR_BRDCST; + undi_open_p->PktFilter = FLTR_DIRECTED; pxe_call(PXENV_UNDI_OPEN, undi_open_p); if (undi_open_p->Status != 0) printf("undi open failed: %x\n", undi_open_p->Status); For more info see https://lists.freebsd.org/pipermail/freebsd-net/2020-June/056025.html Andreas Longwitz -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-net@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"