View Single Post
  #9   (View Single Post)  
Old 22nd August 2016
bsd-keith bsd-keith is offline
Real Name: Keith
Open Source Software user
 
Join Date: Jun 2014
Location: Surrey/Hants Border, England
Posts: 344
Default

Still no joy - can you see any glaring faults in my setup?

rc.conf
Code:
#	$NetBSD: rc.conf,v 1.97 2014/07/14 12:29:48 mbalmer Exp $
#
# See rc.conf(5) for more information.
#
# Use program=YES to enable program, NO to disable it. program_flags are
# passed to the program on the command line.
#

# Load the defaults in from /etc/defaults/rc.conf (if it's readable).
# These can be overridden below.
#
if [ -r /etc/defaults/rc.conf ]; then
	. /etc/defaults/rc.conf
fi

# If this is not set to YES, the system will drop into single-user mode.
#
rc_configured=YES

# Add local overrides below.
#
wscons=YES
#
sshd=NO
postfix=NO
inetd=NO
#
#wlan
dhcpcd_flags="-q -b"
wpa_supplicant=YES
wpa_supplicant_flags="-B -i rum0 -c /etc/wpa_supplicant.conf"
ifconfig_rum0="dhcp"
#dhclient=YES
ifconfig.rum0
Code:
up
dhcp
wpa_supplicant.conf
Code:
#ctrl_interface=/var/run/wpa_supplicant
#ctrl_interface_group=wheel
#network={
#ssid="name"
#psk="phrase"
#}

network={
	ssid="name"
        scan_ssid=1
        key_mgmt=WPA-PSK
	#psk="phrase"
	psk=huge-number
}
partial dmesg
Code:
rum0 at uhub6 port 1
rum0: Ralink 802.11 bg WLAN, rev 2.00/0.01, addr 2
rum0: MAC/BBP RT2573 (rev 0x2573a), RF RT2528, address 00:1d:92:12:51:08
rum0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
rum0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
__________________
Linux since 1999, & also a BSD user.
Reply With Quote