Guest User

Untitled

a guest
Feb 13th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ## /etc/wpa_supplicant.conf
  2. ctrl_interface=/var/run/wpa_supplicant
  3. ctrl_interface_group=wheel
  4. network={
  5. ssid="abcdxyz"
  6. psk="*****"
  7. }
  8.  
  9. ## /etc/rc.conf
  10.  
  11. # $NetBSD: rc.conf,v 1.97 2014/07/14 12:29:48 mbalmer Exp $
  12. #
  13. # See rc.conf(5) for more information.
  14. #
  15. # Use program=YES to enable program, NO to disable it. program_flags are
  16. # passed to the program on the command line.
  17. #
  18.  
  19. # Load the defaults in from /etc/defaults/rc.conf (if it's readable).
  20. # These can be overridden below.
  21. #
  22. if [ -r /etc/defaults/rc.conf ]; then
  23. . /etc/defaults/rc.conf
  24. fi
  25.  
  26. # If this is not set to YES, the system will drop into single-user mode.
  27. #
  28. rc_configured=YES
  29.  
  30. # Add local overrides below.
  31. #
  32. hostname=unitedbsd.com.iballbaton.com.in
  33. dhcpcd=YES
  34. dhcpcd_flags="-qM alc0"
  35. ntpd=YES
  36. wscons=YES
  37. rpcbind=YES
  38. famd=YES
  39. dbus=YES
  40. hal=YES
  41. wpa_supplicant=YES
  42. wpa_supplicant_flags="-B -i iwn0 -c /etc/wpa_supplicant.conf"
Add Comment
Please, Sign In to add comment