I have seen other questions on this board that are similar but I haven't seen an answer that works for me. I have a Raspberry Pi setup so that it can talk to the wireless lan. I am on an Airport Extreme bridged to a ubee modem and I do not have guest mode turned on for the airport extreme so it is NOT in wireless isolation mode. If I have connected with both the wired and wireless lan then I can easily connect to my Pi from any device on my local network using either the wireless ip or the wired ip. However, if I remove the wire and reboot then I can see the internet through the wireless net from the Pi but no other devices on my local lan can see my Pi. What I just discovered today was that if I curl to the ip address of another device, even if it has no web server( like an iPhone) then that device can suddenly see the Pi!
My intention is to have the Pi be headless and host a web page for use only within my local pan. Any help would be appreciated.
I have raspbian installed with all the latest updates, nothing else installed except nginx as I am trying to start from scratch.
/etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
/etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="<ssid>"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
psk="<psk>"
}
ip route list
as root? – foibs Feb 15 '14 at 23:42