1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

OpenWRTインストール中

Posted at

#OpenWRT インストール中

初代Raspberry Pi君、Raspbian OSだとよく固まるのが悩みのたね。スマホ中毒の同居人専用のAPを立ち上げるか考えていたところでもあるので、導入してみた。

##インストール手順

簡単です。本家からダウンロードして、SDカードに焼くだけ。

###本体のダウンロード

ここから、初代のイメージをダウンロード

###SDカードへの書き込み

ダウンロードしたファイルをSDに書き込む

$ gunzip -c openwrt-xx.xx.x-brcm2708-bcm2708-rpi-ext4-factory.img.gz | sudo dd of=/dev/sdc bs=4M status=progress

##セットアップ

ipアドレスの変更

デフォルトでは、192.168.1.1なので、お気に召さない場合は、変更が必要
また、入れたバージョン(18.04)では、gateway/dnsの設定が記載されていなかったので、それも追記

- option ipaddr '192.168.1.1'
+ option ipaddr '192.168.0.10'
+ option gateway '192.168.0.1'
+ option dns'192.168.0.1'

ドライバのインストール

うちのは、RL8192CUなので、kmod-rtl8192cuをインストール

# opkg update
# opkg install kmod-rtl8192cu

ifconfig -aで確認して、wlan0が出てくればOK

wlan0の設定

https://openwrt.org/docs/guide-user/network/wifi/bridgedap
公式におおよそ書いてあるので、それに従えばOK

# diff wireless.org wireless
4c4
< 	option channel '11'
---
> 	option channel '1'
7,8c7,9
< 	option htmode 'HT20'
< 	option disabled '1'
---
> 	option htmode 'NOHT'
>       option txpower '1'    <--とある部屋のみ電波を飛ばしたいのでMin Power
> 	option disabled '0'   <--これ重要!! デフォルトは'1'。これだと動かない(disabled)
14,15c15,17
< 	option encryption 'none'
---
> 	option encryption 'psk2'
>       option key 'ABCD012345'

これで、rebootすれば、動いてます。

luciアクセス

設定したipアドレスに、ブラウザでアクセス
id/pwは、cliアクセスと同じ

image.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?