[Linux] configure kali with two ethernet cards

kali配置两张网卡后,只有一张网卡有ip地址,该怎么解决?

1.开始只能使用一张网卡(假定对应的网卡名称:eth0)

2.编辑vim /etc/network/interfaces

方案1:添加静态地址

auto eth1
iface eth1 inet static
address 10.251.5.130
netmask 255.255.255.0
gateway 10.251.5.254

方案2:使用dhcp分配ip地址

auto eth1
iface eth1 inet dhcp

3.保存之后重启网络

service networking restart

现在就有2个网卡可以同时使用了

你可能感兴趣的:(Linux,linux,服务器,网络)