Code: Select all
rc-update show default
...
sshd | default
...
Code: Select all
/etc/init.d/sshd start
* Service sshd starting
* Starting sshd ...
* Service sshd startedThere are two network interfaces (eth0 = wired network, eth1 = wireless network, net.eth0 and net.eth1 are symbolic links to net.lo in /etc/init.d/), and there is always one of them "connected" at boot. Here is my rc.conf (note that I use RC_PARALLEL_STARTUP="yes" and RC_NET_STRICT_CHECKING="no"):
Code: Select all
RC_TTY_NUMBER=11
RC_PARALLEL_STARTUP="yes"
RC_INTERACTIVE="no"
RC_HOTPLUG="yes"
RC_COLDPLUG="yes"
RC_PLUG_SERVICES="!net.*"
RC_NET_STRICT_CHECKING="no"
RC_DOWN_INTERFACE="yes"
RC_VOLUME_ORDER="raid evms lvm dm"
RC_VERBOSE="yes"
RC_BOOTLOG="yes"
RC_BOOTCHART="no"
RC_USE_FSTAB="no"
RC_USE_CONFIG_PROFILE="yes"
RC_FORCE_AUTO="no"
RC_DEVICES="auto"
RC_DEVICE_TARBALL="no"
RC_SWAP_ERASE="no"
RC_RETRY_KILL="yes"
RC_RETRY_TIMEOUT=1
RC_RETRY_COUNT=5
RC_FAIL_ON_ZOMBIE="no"
RC_KILL_CHILDREN="no"
RC_WAIT_ON_START="0.1"

