码迷,mamicode.com
首页 > 其他好文 > 详细

kali网卡配置文件

时间:2018-03-04 19:03:47      阅读:2240      评论:0      收藏:0      [点我收藏+]

标签:定义   style   网卡配置   网络   重启   配置   ace   eth0   /etc   

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

 

kali网卡配置文件

标签:定义   style   网卡配置   网络   重启   配置   ace   eth0   /etc   

原文地址:https://www.cnblogs.com/f-ck-need-u/p/8505405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!