This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuvlan0.695,state-insert,block,in,4,0x0,,255,41990,0,none,17,udp,76,10.1.1.14,10.1.1.1,49753,123,56
match,pass,in,...
192.168.1.2 -> 192.168.243.10:12345
state-insert,block,in,...
192.168.1.2 -> 192.168.243.10:12345
@218 pass in log quick on igc0_vlan4096 inet
flags S/SA keep state
label "88f5cbb7-6e4c-47da-9811-ca92e09741a7"
divert-to 8000
Evaluations: 92502
Packets: 23425
States: 7
State Creations: 1093
State Table
current entries: 5717
Counters
state-insert: 7184
state-limit: 0
memory: 0
Quote from: kbthomelab88 on June 29, 2026, 06:41:10 PMi have upload the picture
Quote from: kbthomelab88 on June 29, 2026, 06:30:14 PMThis my lan setup for sonos
Quote from: Most on June 19, 2026, 05:00:00 PMUPDATE_AVAILABLE: Current version: OPNsense 26.4.1, Available version: OPNsense 26.1.10. Irgendwie funktioniuert es nicht mehr..
#!/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PKG_NAME="opnsense"
CURRENT_VERSION=$(opnsense-version 2>/dev/null | awk '{print $2}')
AVAILABLE_VERSION=$(pkg rquery '%v' "$PKG_NAME" 2>/dev/null)
if [ -z "$CURRENT_VERSION" ]; then
echo "UNKNOWN: Could not determine installed OPNsense version"
exit 3
fi
if [ -z "$AVAILABLE_VERSION" ]; then
echo "UNKNOWN: Could not determine repository version for $PKG_NAME"
exit 3
fi
if [ "$CURRENT_VERSION" = "$AVAILABLE_VERSION" ]; then
echo "NO_UPDATE: Current version: OPNsense $CURRENT_VERSION"
exit 0
fi
# FreeBSD/pkg-kompatibler Versionsvergleich
if pkg version -t "$CURRENT_VERSION" "$AVAILABLE_VERSION" >/dev/null 2>&1; then
CMP=$(pkg version -t "$CURRENT_VERSION" "$AVAILABLE_VERSION")
case "$CMP" in
"<")
echo "UPDATE_AVAILABLE: Current version: OPNsense $CURRENT_VERSION, Available version: OPNsense $AVAILABLE_VERSION"
exit 1
;;
">")
echo "VERSION_MISMATCH: Installed OPNsense $CURRENT_VERSION is newer than repository version OPNsense $AVAILABLE_VERSION"
exit 2
;;
"=")
echo "NO_UPDATE: Current version: OPNsense $CURRENT_VERSION"
exit 0
;;
*)
echo "UNKNOWN: Unexpected comparison result: $CMP"
exit 3
;;
esac
else
echo "UNKNOWN: Version comparison failed: installed=$CURRENT_VERSION repository=$AVAILABLE_VERSION"
exit 3
fiQuote from: BrandyWine on June 17, 2026, 08:24:53 PMSome more reading about alder lake with bios/uefi with freeBSD.
loader.conf may be too early to try and push a ucode update.
as a test, remove the load entries from loader.conf (or change to cpu_microcode_load="NO")
rc.local
#!/bin/sh
sleep 10
/usr/sbin/cpucontrol -m /dev/cpuctl0 /boot/firmware/intel-ucode.bin
/usr/sbin/cpucontrol -m /dev/cpuctl1 /boot/firmware/intel-ucode.bin
chmod +x /etc/rc.local