Boot message freeebsd kernel ifconfig SIOCIFCREATE2 bad address

Booting goes perfect , only i have this boot message.
As responsible i think a bad line in /etc/rc.conf
But which one and why ?
 
You ask we share,
Code:
cat /etc/rc.conf
#DONE--------------------------------------------------------------
keymap="be.acc.kbd"
ifconfig_em0="DHCP"
ifconfig_em0_ipv6="inet6 accept_rtadv"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
dumpon_enable="YES"
dumpdir="/var/crash"
kld_list="drm linux nvidia nvidia-modeset fuse"
linux_enable="YES"
clear_tmp_enable="YES"
sendmail_enable="NONE"
hostname="freebsd.ala"
keymap="be.kbd"
moused_enable="YES"
ntpd_enable="NO"
ntpd_sync_on_start="NO"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
###  Important initial Boot-tme options  ####################
rc_debug="NO"           # Set to enable debugging output from rc.d
rc_info="YES"           # Enables display of informational messages at boot.
devd_enable="YES"
# Kernel modules to load after local disks are mounted
#kld_list="acpi_video fusefs cryptodev openzfs filemon vmm drm radeonkms cc_cubic \
#cpuctl coretemp hwpmc ichsmb ipmi drm sem smbus \
#usb_template ulpt umodem uslcom ucom nmdm iic ow fusefs udf uhid ums \
#libiconv libmchain cd9660_iconv msdosfs_iconv sysctlinfo cuse gpioths"
#ZFS
zpool_enable="YES"
zfs_enable="YES"        # Automaticly mount zfs filesystems
#UFS
fsck_y_enable="YES"     # Set to YES to do fsck -y if the initial preen fails.
background_fsck="YES"   # Attempt to run fsck in the background where possible.
background_fsck_delay="60" # Time to wait (seconds) before starting the fsck.
ipv6_activate_all_interfaces="YES" 
ipv6_privacy="YES"               # Use privacy address on RA-receiving IFs  # (RFC 4941)
rtsold_enable="YES"
ip6addrctl_enable="YES"            # Set to YES to enable default address selection
ip6addrctl_verbose="NO"    # Set to YES to enable verbose configuration messages
ip6addrctl_policy="ipv6_prefer"    # Set to YES to enable default address selection
###  System console options  #################################
keymap="be.acc.kbd"
keyrate="fast"
moused_enable="YES"
###  Mail Transfer Agent (MTA) options  ######################
sendmail_enable="NO"    # Run the sendmail inbound daemon
sendmail_cert_create="NO"    # Create a server certificate if none 
sendmail_submit_enable="NO"    # Start a localhost-only MTA for mail submission
sendmail_outbound_enable="NO"    # Dequeue stuck mail
sendmail_msp_queue_enable="NO"    # Dequeue stuck clientmqueue mail
###  Miscellaneous administrative options  ###################
accounting_enable="YES"
clear_tmp_enable="YES"   # Clear /tmp at startup.
clear_tmp_X="YES"   # Clear and recreate X11-related directories in /tmp
devfs_enable="YES"
automount_enable="NO"
autofs_enable="NO"
dbus_enable="YES"
hald_enable="YES"
seatd_enable="NO"
jail_enable="YES"
sndiod_enable="YES"
sndiod_flags="-f rsnd/4 -L 127.0.0.1  -m play -s default" #Port:11025
cron_enable="NO"
ntpdate_enable="YES"     # Run ntpdate to sync time on boot (or NO).
ntpdate_program="/usr/local/sbin/ntpdate"
#ntpdate_flags="-b"      # Flags to ntpdate (if enabled).
#ntpdate_config="/etc/ntp.conf"  # ntpdate(8) configuration file
#ntpdate_hosts=""        # Whitespace-separated list of ntpdate(8) servers.
ntpd_program="/usr/local/sbin/ntpd"
ntpd_config="/usr/local/etc/ntp.conf"
#ntpd_config="/etc/ntp.conf" # ntpd(8) configuration file
ntpd_sync_on_start="YES"     # Sync time on ntpd startup, even if offset is high
ntpd_flags="-g -x"           # Additional flags to ntpd
openntpd_enable="NO"
openntpd_flags=""
local_unbound_enable="YES"
syslog_ng_enable="YES"
syslogd_enable="NO"
syslogd_flags="-ss"
fcron_enable="YES"
snmptrapd_enable="NO"
snmptrapd_flags="-x 127.0.0.1 -a -p /var/run/snmptrapd.pid"
snmpd_enable="YES"
snmpd_flags="-A -V -C -a -L -x 127.0.0.1"
snmpd_conffile="/usr/local/etc/snmp/snmpd.conf"
smtpd_enable="YES" 
dovecot_enable="YES"
cupsd_enable="YES" 
smartd_enable="YES"
postgresql_enable="YES"
influxd_enable="YES"
mysql_enable="YES"
nginx_enable="YES"
apache24_enable="YES"
php_fpm_enable="YES"
monit_enable="YES"
netdata_enable="YES"
netdata_flags="-P /var/run/netdata/netdata.pid"
telegraf_enable="YES"
prometheus_enable="YES"
grafana_enable="YES"
mrtg_daemon_enable="YES"
cacti_enable="NO"
munin_node_enable="YES"
minidlna_enable="YES"
php_fpm_exporter="NO"
my_munin_enable="YES"
my_cacti_enable="NO"
my_jaila_enable="YES"
my_jailb_enable="YES"
my_cups_exporter_enable="YES"
my_gstat_exporter_enable="YES"
my_node_exporter_enable="YES"
my_ping_exporter_enable="YES"
my_postgres_exporter_enable="YES"
my_memory2_enable="YES"
mrtg_daemon_enable="YES"
firewall_script="/etc/ipfw.rules"
ipfw_enable="YES"
wlans_iwm0="wlan0"
ifconfig_wlan0="WPA DHCP"
 
Plausible
This is in rc.d:
cat sndiod
Code:
#!/bin/sh

# PROVIDE: sndiod
# REQUIRE: NETWORKING sysctl
# BEFORE:  DAEMON
# KEYWORD: shutdown

. /etc/rc.subr

name=sndiod
rcvar=sndiod_enable

load_rc_config $name

: ${sndiod_enable="NO"}

command="/usr/local/bin/sndiod"

run_rc_command "$1"

Remains the question what is the right solution.
 
Siocifcreate2 is a networking error.
I would rather say that it is an ioctl, just mentioned in error message.

If the error message does not mention the particular utility that calls it (it doesn't right?, otherwise please provide the exact error message), I don't know of an easy way to trace it down to one, especially if it says "kernel".
 
If the error message does not mention the particular utility that calls it (it doesn't right?, otherwise please provide the exact error message), I don't know of an easy way to trace it down to one, especially if it says "kernel".
Sorry, I completely missed that subject says "ifconfig", try setting rc_debug="YES" in /etc/rc.conf, and reboot; that hopefully should give you a hint what script calls that ifconfig command (if it comes from rc, that is).
 
snmptrapd_flags="-x 127.0.0.1 -a -p /var/run/snmptrapd.pid"
You are using loopback here too.
I don't know that you have to create an interface but in my opinion it don't hurt.
You have two daemons depending on it.

### Networking ###
ifconfig_lo="127.0.0.1 netmask 255.255.255.0"
#
 
Back
Top