ISC DHCP:不支持的设备

ISC DHCP:不支持的设备

我正在尝试在处于监控模式的 wlan1mon 设备上运行 ISC DHCP。但我收到错误:

systemctl status isc-dhcp-server.service
● isc-dhcp-server.service - LSB: DHCP server
Loaded: loaded (/etc/init.d/isc-dhcp-server)
Active: failed (Result: exit-code) since czw 2015-10-01 09:07:55 UTC; 1min 20s ago
Process: 2767 ExecStart=/etc/init.d/isc-dhcp-server start (code=exited, status=1/FAILURE)

paź 01 08:45:41 kali dhcpd[2657]: Wrote 0 leases to leases file.
paź 01 08:45:41 kali dhcpd[2657]: Unsupported device type 803 for "wlan1mon"
paź 01 08:45:41 kali dhcpd[2657]: 
paź 01 08:45:41 kali dhcpd[2657]: If you think you have received this message due to a bug rather
paź 01 08:45:43 kali isc-dhcp-server[2650]: Starting ISC DHCP server: dhcpdcheck syslog for diagnostic...led!
paź 01 08:45:43 kali isc-dhcp-server[2650]: failed!
paź 01 08:45:43 kali systemd[1]: isc-dhcp-server.service: control process exited, code=exited status=1
paź 01 08:45:43 kali systemd[1]: Failed to start LSB: DHCP server.
paź 01 08:45:43 kali systemd[1]: Unit isc-dhcp-server.service entered failed state.

GNU nano 2.2.6                    Plik: /etc/dhcp/dhcpd.conf                                                

# Sample /etc/dhcpd.conf
# (add your comments here)
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.10.255;
option routers 192.168.10.254;
option domain-name-servers 192.168.10.1, 192.168.10.2;
option domain-name "mydomain.example";

subnet 192.168.10.0 netmask 255.255.255.0 {
range 192.168.10.10 192.168.10.100;
range 192.168.10.150 192.168.10.200;
}





GNU nano 2.2.6                   Plik: /etc/network/interfaces                                              

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto wlan0
iface wlan0 inet dhcp
wpa-ssid "Darmowy Internet"
wpa-psk "*******"

iface wlan1mon inet static
address 192.168.10.0
netmask 255.255.255.0




GNU nano 2.2.6                 Plik: /etc/default/isc-dhcp-server                                           

INTERFACES="wlan1mon"




ifconfig
eth0      Link encap:Ethernet  HWaddr b8:27:eb:db:b5:72  
      UP BROADCAST MULTICAST  MTU:1500  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:65536  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

wlan0     Link encap:Ethernet  HWaddr e8:94:f6:26:10:3f  
      inet addr:192.168.1.106  Bcast:255.255.255.255  Mask:255.255.255.0
      inet6 addr: fe80::ea94:f6ff:fe26:103f/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:9496 errors:0 dropped:0 overruns:0 frame:0
      TX packets:7073 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:885381 (864.6 KiB)  TX bytes:1075319 (1.0 MiB)

wlan1mon  Link encap:UNSPEC  HWaddr F8-1A-67-09-7C-FE-30-30-00-00-00-00-00-00-00-00  
      inet addr:192.168.10.0  Bcast:192.168.10.255  Mask:255.255.255.0
      UP BROADCAST NOTRAILERS PROMISC ALLMULTI  MTU:1800  Metric:1
      RX packets:1409554 errors:0 dropped:1403000 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:351968132 (335.6 MiB)  TX bytes:0 (0.0 B)

答案1

当设备处于监控模式时,仅“嗅探”流量,不发送任何内容。因此无法发送dhcp报价,也dhcp无法使用此接口。

监控模式或 RFMON(射频监控)模式允许带有无线网络接口控制器 (WNIC) 的计算机监控从无线网络接收的所有流量。与同样用于数据包嗅探的混杂模式不同,监控模式允许捕获数据包而无需先与接入点或临时网络关联。监控模式仅适用于无线网络,而混杂模式可用于有线和无线网络。监控模式是 802.11 无线网卡可以运行的六种模式之一:主模式(充当接入点)、托管模式(客户端,也称为站点)、临时模式、网状模式、中继器模式和监控模式。

资源

相关内容