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

 

相关文章:

  • 2021-04-08
  • 2021-11-23
  • 2021-11-23
  • 2021-11-23
  • 2021-11-23
  • 2022-01-14
  • 2022-03-03
猜你喜欢
  • 2021-04-15
  • 2021-11-02
  • 2021-10-20
  • 2021-12-03
  • 2021-10-26
  • 2021-11-22
相关资源
相似解决方案