Linux Mint LMDE 3では、AndroidデバイスをWi-Fiホットスポットに接続できません。

Linux Mint LMDE 3では、AndroidデバイスをWi-Fiホットスポットに接続できません。

私は最近私のPCにLinux Mint LMDE 3をインストールしましたが、今日まですべてがうまくいきました。引き続きWi-Fiホットスポットを設定するときにネットワークのSSID、パスワードを入力しましたが、驚くべきことですか?接続されたデバイスがなく、ネットワークを識別しますが、IPを割り当てません。

この問題に対する解決策をGoogleで検索しましたが、DHCPサービスがインストールされていない可能性があります。これチュートリアルでは問題を解決しようとしますが、何も修正しません。

以下に、関連プログラムの設定ファイルの内容をここに残しておきます。

/etc/dhcp/dhcpd.conf ファイル

ddns-update-style none;
default-lease-time 600;

    max-lease-time 7200;
    #ping true;
    option domain-name-servers 172.27.15.2, 10.72.81.2;
    option domain-name "example.com";
    authorative;
    log-facility local7;

    subnet 10.42.0.1 netmask 255.255.255.0 {
    range 10.42.0.1 10.42.0.99;
    option subnet-mask 255.255.255.0;
    option domain-name-servers 192.168.0.254, 10.128.254.254;
    option domain-name "example.com";
    option routers 192.168.1.1;
    option netbios-name-servers 192.168.1.1;
    option netbios-node-type 8;
    get-lease-hostnames true;
    use-host-decl-names true;
    default-lease-time 600;
    max-lease-time 7200;
    }

これは /etc/default/isc-dhcp-server ファイルです

# Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server)

# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
DHCPDv4_CONF=/etc/dhcp/dhcpd.conf
#DHCPDv6_CONF=/etc/dhcp/dhcpd6.conf

# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
DHCPDv4_PID=/var/run/dhcpd.pid
#DHCPDv6_PID=/var/run/dhcpd6.pid

# Additional options to start dhcpd with.
#   Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""

# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
#   Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACESv4="enp1s5 wlxf8d111b4f797"
INTERFACESv6=""

これはコマンドの終了ですsystemctl status isc-dhcp-server

● isc-dhcp-server.service - LSB: DHCP server
   Loaded: loaded (/etc/init.d/isc-dhcp-server; generated; vendor preset: enabled)
   Active: failed (Result: exit-code) since Sun 2018-12-02 15:33:32 -04; 1h 7min ago
     Docs: man:systemd-sysv-generator(8)

dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: Configuration file errors encountered -- exiting
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: If you think you have received this message due to a bug rather
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: than a configuration issue please read the section on submitting
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: bugs on either our web page at www.isc.org or in the README file
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: before submitting a bug.  These pages explain the proper
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: process and the information we find helpful for debugging..
dic 02 15:33:32 bryan-useche isc-dhcp-server[803]: exiting.
dic 02 15:33:32 bryan-useche systemd[1]: Failed to start LSB: DHCP server.
dic 02 15:33:32 bryan-useche systemd[1]: isc-dhcp-server.service: Unit entered failed state.
dic 02 15:33:32 bryan-useche systemd[1]: isc-dhcp-server.service: Failed with result 'exit-code'.

ベストアンサー1

これを実行すると、dhcpd -tファイルをテストし、考えられるエラーを報告します。

この場合は応答します...

subnet 10.42.0.1 netmask 255.255.255.0: bad subnet number/mask combination.
    subnet 10.42.0.1 netmask 255.255.255.0 
                                         ^

あなたのネットワークは10.42.0.0

関連はありませんが、次のステップで潜在的な問題になる可能性があるルーター定義(192.168.1.1)はネットワークからアクセスできないため、10.42.0.0/255.255.255.0デバイスはIPアドレスを取得できますが、どこにもルーティングできない可能性があります。

おすすめ記事