최근에 내 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 주소를 얻을 수 있지만 어디로도 라우팅되지 않을 수 있습니다.