kali網路卡配置檔案

駿馬金龍發表於2018-03-04

kali的網路卡配置檔案為/etc/network/interfaces 下面定義了lo、eth0和eth1的配置

auto lo # auto表示開機啟動該網路卡裝置 
iface lo inet loopback 

auto eth0 # 使用dhcp分配地址 
iface eth0 inet dhcp 
iface eth0 inet6 auto 

auto eth1 # 使用靜態地址
iface eth1 inet static a
    ddress 192.168.1.2/24 
    gateway 192.168.1.1 

iface eth1 inet6 static 
    address fec0:0:0:1::2/64 
    gateway fec0:0:0:1::1

 然後重啟網路

service networking restart

或者重啟某個網路卡

ifdown eth1
ifup eth1

 

相關文章