kali开启两张网卡的配置
1.开始只能使用一张网卡(注意对应的网卡名称:eth 0 )2.编辑vim /etc/network/interfaces添加静态地址auto eth1iface eth1 inet staticaddress 10.251.5.130netmask 255.255.255.0gateway 10.251.5.254或者dhcpauto eth1iface eth1 inet dhcp保存之后重启
·
1.开始只能使用一张网卡(注意对应的网卡名称:eth 0 )
2.编辑
vim /etc/network/interfaces
添加静态地址
auto eth1
iface eth1 inet static
address 10.251.5.130
netmask 255.255.255.0
gateway 10.251.5.254
或者dhcp
auto eth1
iface eth1 inet dhcp
保存之后重启网络 service networking restart
现在就有2个网卡可以同时使用
更多推荐
已为社区贡献2条内容
所有评论(0)