Raspberry Pi OS が bookworm の場合は、NetworkManager が標準ですが、
Redhat系で、過去に使いにくさを経験してたので、
古来からの(?) /etc/network/interfaces の設定に変更しました
1. interfacesファイルの作成
# cat interfaces
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
#iface default inet dhcp
allow-hotplug wlan0
auto wlan0
#iface wlan0 inet dhcp
iface wlan0 inet static
address 192.168.xxx.yyy
netmask 255.255.255.0
gateway 192.168.xxx.yyy
wpa-ssid "xxxx"
wpa-psk "ppppp"
dns-nameservers 192.168.xxx.yyy
iface wlan1 inet static
address 192.168.xxx.yyy
netmask 255.255.255.0
gateway 192.168.xxx.yy
wpa-ssid "xxxxx"
wpa-psk "ppppp"
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.xxx.yyy
netmask 255.255.255.0
gateway 192.168.xxx.yy
dns-nameservers 192.168.xxx.yy
2. NetworkManagerの無効化及び停止
sudo systemctl disable NetworkManager
sudo systemctl stop NetworkManager
3. resolv.confの手動設定
# cat resolv.conf
# Generated by NetworkManager
nameserver 192.168.xxx.yy
4. reboot
以上