[Bug 263986] IPv6 address gets detached when using multiple IPv6 routers

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=263986

--- Comment #6 from Frank Behrens  ---
(In reply to Hiroki Sato from comment #5)

Your are right, (without my patch) the state switches from initial

fdxx::xxx:::/64 if=net3
flags=LO vltime=infinity, pltime=infinity, expire=Never, ref=1
  No advertising router

to

fdxx::xxx:::/64 if=net3
flags=LAD vltime=36, pltime=36000, expire=%s, ref=2
  No advertising router

-- 
You are receiving this mail because:
You are the assignee for the bug.


Qlogic clom8214 1/10gbe controller

2022-08-09 Thread Thiago D. Silva
hello, could anyone tell me which drive to use on this Qlogic clom8214
1/10gbe controller?

if anyone knows I'll be grateful

--

Att,

Thiago D. Silva

-- 

Att,

Thiago D. Silva


[Bug 230807] if_alc(4): Driver not working for Killer Networking E2200

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230807

Kubilay Kocak  changed:

   What|Removed |Added

 CC||wirel...@freebsd.org
  Flags|mfc-stable11?   |maintainer-feedback?(bz@Fre
   ||eBSD.org), mfc-stable13?
   Assignee|n...@freebsd.org |wirel...@freebsd.org
   Keywords|patch   |

--- Comment #13 from Kubilay Kocak  ---
@Bjoern Did your patch in comment 10 resolve the issue on your AR8161? If so,
are you able to land the patch for that specific model until we can get
confirmation it resolves the issue for other models?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.


[Bug 230807] if_alc(4): Driver not working for Killer Networking E2200

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230807

Kubilay Kocak  changed:

   What|Removed |Added

   See Also||https://bugs.freebsd.org/bu
   ||gzilla/show_bug.cgi?id=2213
   ||54

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[Bug 221354] No connection with Atheros Killer 220x Ethernet Chipset

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221354

Kubilay Kocak  changed:

   What|Removed |Added

   See Also||https://bugs.freebsd.org/bu
   ||gzilla/show_bug.cgi?id=2308
   ||07

-- 
You are receiving this mail because:
You are the assignee for the bug.


[Bug 230807] if_alc(4): Driver not working for Killer Networking E2200

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230807

--- Comment #14 from Ed Maste  ---
OpenBSD's version of the driver has a slightly different approach for the same
thing, but it all involves the code around the comment

/*
 * Force maximum payload size to 128 bytes for
 * E2200/E2400/E2500/AR8162/AR8171/AR8172.
 * Otherwise it triggers DMA write error.
 */

OpenBSD changed the if condition to

if ((sc->alc_flags &
(ALC_FLAG_E2X00 | ALC_FLAG_AR816X_FAMILY)) != 0)
sc->alc_dma_wr_burst = 0;

In any case, if any version of the patch is confirmed to "fix" the issue we can
get something committed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


[Bug 230807] if_alc(4): Driver not working for Killer Networking E2200

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230807

Kubilay Kocak  changed:

   What|Removed |Added

 CC|wirel...@freebsd.org|
   Assignee|wirel...@freebsd.org|n...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.


[Bug 230807] if_alc(4): Driver not working for Killer Networking E2200

2022-08-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230807

Bjoern A. Zeeb  changed:

   What|Removed |Added

  Flags|maintainer-feedback?(bz@Fre |
   |eBSD.org)   |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.


Re: Import dhcpcd(8) into FreeBSD base

2022-08-09 Thread Ben Woods
On Tue, 9 Aug 2022, at 6:21 AM, Roy Marples wrote:
> On 08/08/2022 21:40, Hiroki Sato wrote:
>> Roy Marples  wrote
>>in <4516f415-939e-6374-45ce-df19a2ac6...@marples.name>:
>> 
>> ro> On 07/08/2022 15:23, Hiroki Sato wrote:
>> ro> >   1) Import dhcpcd and make it invoked via Other Configuration flag
>> ro> >  in RA for DHCPv6.  This means that the rtsold daemon remains a
>> ro> >  consumer of RA messages, and the default value of the -O option is
>> ro> >  set to run dhcpcd.
>> ro>
>> ro> I don't think this is a viable option as there is no easy way to
>> ro> transition from Other to Managed (or the other way around) from the
>> ro> dhcpcd commandline or signals.
>> 
>>   The rtsold daemon just invokes a corresponding helper script when
>>   receiving RAs with these flags.  A transition from O to M or vice
>>   versa is supposed to be handled by them.  I think it is possible to
>>   stop the running dhcpcd and/or restart it with another configuration
>>   via the scripts.  Is there a critical problem with it?  I do not
>>   insist that it is the best way since it is not a graceful transition,
>>   but I still believe it should work for most DHCPv6-enabled networks.
>> 
>> ro> Also, please consider than dhcpcd supports DNSSL and RDNSS options
>> ro> from RA messages whereas FreeBSD rtsold/kernel RA do not (please
>> ro> correct me if I'm wrong).
>> 
>>   The FreeBSD rtsold has supported them for >10 years.  Resolvconf, one
>>   of your projects, was imported at the same time to solve the problem
>>   of multiple information source for /etc/resolv.conf.
>> 
>> ro> Sure it works fine for the one interface wired system - which
>> ro> admitedly is the most popular setup. But when more than one interface
>> ro> comes into play or you have plugable interfaces it then becomes more
>> ro> complicated and will consume more resources having many more daemon
>> ro> runing to allow capsicum and makes dhcpcd just as predictable as
>> ro> dhclient on a multi-homed system (ie it's not predictable).
>> ro>
>> ro> I modified wpa_supplicant upstream to support the -M directive (I
>> ro> don't know if FreeBSD compiles wpa_supplicant with CONFIG_MATCH_IFACE
>> ro> defined) to allow plugable interfaces just for this reason.
>> 
>>   I agree that running processes for each interface independently is
>>   sub-optimal.  However, I think it is a separate topic from whether
>>   importing a DHCPv6 client into the base system or not.  More
>>   specifically, the following three are orthogonal:
>> 
>>   1. Use dhcpcd or not as a replacement of dhclient and rtsold.
>> 
>> This leads to a never-ending discussion.  Some people like the
>> existing ones because they have worked well and do not want to
>> change.
>> 
>>   2. Adopt a single process managing the multiple interfaces on the
>>  system or use per-interface processes.
>> 
>> Changing this requires a lot of work and breaks the existing
>> configurations.  A side node of the design and behavior of the
>> current rc.d/netif is as follows:
>> 
>> - The current rc.d/netif (and other network-related rc.d scripts
>>   such as rc.d/wpa_supplicant) are based on the per-interface
>>   model.  The rc.d/netif script is invoked asynchronously while it
>>   also runs at boot time sequentially.  This asynchronous
>>   invocation is specific to FreeBSD, and not seen in other BSDs
>>   (correct me if I am wrong).
>> 
>> - The devd(8) daemon is the main process receiving events of the
>>   interfaces such as arrival/departure/link-state changes, and
>>   invokes a process upon an event if necessary.
>> 
>> - The rtsold(8) daemon is the main process receiving RAs in
>>   userland and invokes a process upon an event if necessary.
>>   Currently, it handles O/M flags and RDNSS/DNSSL options.
>> 
>>   3. Add an implementation of the DHCPv6 client-side functionality or
>>  not.
>> 
>> I believe no one objects for adding one because we have no
>> implementation in the base system.  Some people like another one,
>> such as ISC dhclient or WIDE dhcp6.
>> 
>>   My opinion is: 1) "no need", 2) "keep the current model for a while",
>>   and 3) "go for it".  I tend to prefer WIDE dhcp6 because I have used
>>   it for >15 years with accumulated local patchset, but I do not stick
>>   to it as long as there is a good working implementation supporting
>>   IA_NA and IA_PD, and someone actively maintains it.  WIDE dhcp6 works
>>   well, but it has a lot of rough edges (and fixed locally by many
>>   people, as bz@ pointed out).
>> 
>>   As mentioned in my previous email, avoiding POLA violations is the top
>>   priority.  Regardless of which implementation we import, I still
>>   believe keeping the current per-interface model is the least
>>   intrusive for the existing configurations.
>> 
>>   So we need a consensus about how to get started with the integration.
>>   An idea in my mind is: 1) import dhcp