Test Access Point

  1. Power cycle the Raspberry Pi.
  2. Wait ~5min
  3. From separate host scan radio space
  4. From same separate host connect to access point
    • Confirm password is requested
    • Confirm an incorrect password is rejected
    • Confirm correct password is accepted
    • Wait ~2min for association.
    • Confirm correct ip address is set
      
      	      sudo ifconfig interface
      	      # ... inet addr:192.168.7.131 ...
      	
    • Confirm correct association
      
      	      sudo iwconfig interface
      	      # ... ESSID:"WIFINAME"
      	      # Mode: Managed ... Access Point: 00:11:22:33:44:55
      	      # Bit Rate=10 Mb/s ...
                    # Link Quality=50/70 ...
      	
    • Confirm correct dns servers
      
      	      cat /etc/resolv.conf
      	      # ...
      	      # search local.net
      	      # nameserver 192.168.7.1
      	
    • Confirm correct routing
      
      	      /sbin/route -n
      	      # ...
      	      # 0.0.0.0         192.168.7.1     0.0.0.0         UG ...
      	      # 192.168.7.0     0.0.0.0         255.255.255.0   U  ...