Advertisement
Guest User

rc.conf

a guest
Mar 24th, 2021
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1.  
  2. # $NetBSD: rc.conf,v 1.97 2014/07/14 12:29:48 mbalmer Exp $
  3. #
  4. # See rc.conf(5) for more information.
  5. #
  6. # Use program=YES to enable program, NO to disable it. program_flags are
  7. # passed to the program on the command line.
  8. #
  9.  
  10. # Load the defaults in from /etc/defaults/rc.conf (if it's readable).
  11. # These can be overridden below.
  12. #
  13. if [ -r /etc/defaults/rc.conf ]; then
  14. . /etc/defaults/rc.conf
  15. fi
  16.  
  17. # If this is not set to YES, the system will drop into single-user mode.
  18. #
  19. rc_configured=YES
  20.  
  21. # Add local overrides below.
  22. #
  23. hostname="netBox"
  24. #ifconfig_iwm0="up inet 192.168.1.104 netmask 255.255.255.0"
  25. ifconfig_iwm0="up"
  26. dhcpcd=YES
  27. wpa_supplicant=YES
  28. wpa_supplicant_flags="-D bsd -i iwm0 -c /etc/wpa_supplicant.conf"
  29. defaultroute="192.168.1.1"
  30. wscons=YES
  31. rpcbind=YES
  32. dbus=YES
  33. famd=YES
  34. microcode=YES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement