View Single Post
Old 22nd August 2016
shep shep is offline
Real Name: Scott
Arp Constable
 
Join Date: May 2008
Location: Dry and Dusty
Posts: 1,507
Default

Are you getting an IP address lease. If not, I think you can manually request a dhcp lease via dhcpcd
# dhcpcd rum0

If that does not work, here are the differences between your posted configs and what I have:

Code:
#wlan
dhcpcd_flags="-q -b"
wpa_supplicant=YES
wpa_supplicant_flags="-B -i rum0 -c /etc/wpa_supplicant.conf"
ifconfig_rum0="dhcp"
#dhclient=YES
I have my hostname set in /etc/rc.conf and do not have the line ifconfig_rum0. I also do not have an /etc/myname file.

Code:
#wlan
hostname=nbsd.km.net
dhcpcd_flags="-q -b"
wpa_supplicant=YES
wpa_supplicant_flags="-B -i rum0 -c /etc/wpa_supplicant.conf"
#dhclient=YES
I'm wondering if you are getting an I.P. address via dhcp?
It should generate entries in /etc/resolv.conf
Code:
Eyore# cat /etc/resolv.conf
# Generated by resolvconf
domain home.yak
nameserver 205.171.3.65
nameserver 96.90.175.167
nameserver 104.238.153.178
Having several different ways of configuring a network and no documentation about wireless configuration in the handbook always makes me appreciate OpenBSD

Last edited by shep; 23rd August 2016 at 01:58 AM.
Reply With Quote