トップ 最新

GREEN HARMONY 手記

2021年01月15日 アニメ(メモ)、debian10(設定) [長年日記]

アニメ

  • 夏目友人帳 3
    • 田沼
  • オルタンシア・サーガ 2

Debian10 を無線LANホットスポットにする。

bridge-utilsをインストール

sudo apt install bridge-utils

/etc/network/interfaces を編集

ブリッジ設定

無線LANインターフェース名は記載しない

auto lo br0 
iface lo inet loopback

iface enp2s0 inet manual

iface br0 inet static
        address xxx.xxx.x.x
        netmask 255.255.255.0
        gateway xxx.xxx.x.x
        bridge_ports enp2s0
        bridge_stp off

hostapdをインストール

sudo apt install hostapd

/etc/default/hostapdを編集

DAEMON_CONF="/etc/hostapd/hostapd.conf"

/etc/hostapd/hostapd.confを作成 wpa_passphraseコマンドで暗号化したものを wpa_pskに設定

interface=wlp1s0
bridge=br0
ssid=SSID名(任意)
hw_mode=g
channel=1
auth_algs=1           
wpa=2                 
wpa_key_mgmt=WPA-PSK  
rsn_pairwise=CCMP
wpa_psk=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
sudo systemctl unmask hostapd
sudo systemctl enable hostapd

再起動

(注)resolvconfはインストールしない事


Debian 辞典 (Desktop reference)