마침내 wlan0 (Edimax EW-7811Un USB WiFi 동글)을 라우터에 연결했지만 apt-get update
Raspberry가 로컬 네트워크 외부에서 볼 수 없다는 것을 알게되었습니다. 내 라즈베리는 최신 라즈 비안 이미지에서 실행됩니다.
- wlan0이 내 라우터에 연결되어 있고 IP 주소가 주어졌습니다
- 라우터, 프린터 및 로컬 네트워크 내부의 다른 시스템을 핑 (ping) 할 수 있지만 외부 네트워크에서 아무것도 핑 (ping) 할 수 없습니다 (localhost의 루프백 핑은 "호스트에 도달 할 수 없음"이라고 말하지만 NAT를 취소한다고합니다) 127.0.0.1 요청)
- 성공적으로 연결할 수 있지만를 통해 연결
eth0
해야합니다wlan0
.
ifconfig 출력 :
pi@MinoPi ~ $ ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr *macaddresshere*
inet addr:192.168.1.9 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:552 errors:0 dropped:6 overruns:0 frame:0
TX packets:289 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:375003 (366.2 KiB) TX bytes:318051 (310.5 KiB)
iwconfig 출력 :
pi@MinoPi ~ $ iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:"Sanctuary" Nickname:"<WIFI@REALTEK>"
Mode:Managed Frequency:2.437 GHz Access Point: *macaddresshere*
Bit Rate:54 Mb/s Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality=100/100 Signal level=100/100 Noise level=0/100
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
/etc/network/interfaces
파일:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
iface wlan0 inet static
address 192.168.1.9
netmask 255.255.255.0
gateway 192.168.1.1
wpa-ssid "Sanctuary"
wpa-psk "somePasswordHere"
어떤 아이디어?