GREEN HARMONY 手記
2021年01月13日 アニメ(メモ)、debian9(設定メモ)、Ubuntu(設定メモ) [長年日記]
☆ debian9 無線LAN接続、固定ip
/etc/network/interfaces
auto wlp1s0 iface wlp1s0 inet static wpa-ssid 無線LANホットスポットのSSID wpa-psk xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx address xxx.xxx.x.x netmask 255.255.255.0 gateway xxx.xxx.x.x dns-nameservers xxx.xxx.x.x
☆ Ubuntu 18.04.5 LTS
をWifiホットスポットにする。
(有線LANと同じネットワークにする。 Network Managerを使うと別のネットワーク になってしまうのでhostapdを使う。)
bridge-utilsをインストール
sudo apt install bridge-utils
/etc/network/interfaces を編集
ブリッジ設定
# The loopback network interface auto lo br0 iface lo inet loopback # The primary network interface iface enp2s0 inet manual iface wlp1s0 inet manual iface br0 inet static address xxx.xxx.x.x netmask 255.255.255.0 gateway xxx.xxx.x.x dns-nameservers xxx.xxx.x.x bridge_ports enp2s0 wlp1s0 bridge_stp off
hostapdをインストール
# sudo apt install hostapd
/etc/default/hostapdを編集
DAEMON_CONF="/etc/hostapd/hostapd.conf"
/etc/hostapd/hostapd.confを作成 (見本は/usr/share/doc/hostapd/examples/hostapd.conf.gz) wpa_passphraseコマンドで暗号化したものを wpa_pskに設定
interface=wlp1s0 bridge=br0 ssid=任意 hw_mode=g channel=1 auth_algs=1 wpa=2 wpa_key_mgmt=WPA-PSK rsn_pairwise=CCMP wpa_psk=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx