View Single Post
Hei

Har en TP-LINK wr703n som jeg nettop har lagt inn openWRT på etter denne guiden:
http://wiki.xinchejian.com/wiki/Inst..._TPlink_WR703N

Etter å ha fått inn openWRT, lagt inn passord og reboota så ser det ikke ut til at
wifi'n får noe IP addresse.

Jeg har ett helt åpent netverk uten kryptering. (Bor på landet, langt fra folk)

Jeg har liten erfaring med både wifi og linux, så jeg står litt fast på hva som
kan være galt.


/etc/config/network:

config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'

config globals 'globals'
option ula_prefix 'fd37:a340:366c::/48'

config interface 'lan'
option ifname 'eth0'
option force_link '1'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'

config interface 'wan'
option ifname 'wlan0'
option proto 'dhcp'

/etc/config/wireless:

config wifi-device radio0
option type mac80211
option channel 11
option hwmode 11g
option path 'platform/ar933x_wmac'
option htmode HT20
# REMOVE THIS LINE TO ENABLE WIFI:
# option disabled 1

config wifi-iface
option device radio0
option network wan
option mode sta
option ssid 'minSSID'
# option encryption none

ifconfig
br-lan Link encap:Ethernet HWaddr 08:57:00:4E:47:E8
inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::a57:ff:fe4e:47e8/64 Scope:Link
inet6 addr: fd37:a340:366c::1/60 Scope:Global
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:110 errors:0 dropped:0 overruns:0 frame:0
TX packets:51 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:7111 (6.9 KiB) TX bytes:6932 (6.7 KiB)

eth0 Link encap:Ethernet HWaddr 08:57:00:4E:47:E8
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:124 errors:0 dropped:1 overruns:0 frame:0
TX packets:44 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:9553 (9.3 KiB) TX bytes:6210 (6.0 KiB)
Interrupt:4

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:1346 errors:0 dropped:0 overruns:0 frame:0
TX packets:1346 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:92160 (90.0 KiB) TX bytes:92160 (90.0 KiB)

wlan0 Link encap:Ethernet HWaddr 08:57:00:4E:47:E8
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)


~
~