kali网卡在却ping不通
原因
1手残党
配置文件乱写一通
不分大小写
o O 0 分不清
中英文符号
tab键乱用
写错位置
2 方法用错了 (耐心度=0)
baidu->ways -> ctrl cv
finish!
loading…
boom…
教程不一定是对的 而且去除道德 作者想发什么就发什么 比如sudo chmod ugo=rwx /*删除线格式
3 运气不好 把所以可能的报错都遇见了 需要把各种教程同时使用
## 解决方案 #### 校园网只能NAT模式所以方法二不用考虑 ##### 方法1 nmtui 终端直接使用这个命令
-
方法2 :配置文件
sudo mousepad /etc/network/interfaces
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.125.30 netmask 255.255.255.0 gateway 192.168.125,254
service networking restart 或者: systemctl restart networking # start、status、stop、restart分别表示:启动、查看状态、停止、重启
root@kali:~# systemctl status networking ● networking.service - Raise network interfaces Loaded: loaded (/lib/systemd/system/networking.service; enabled; vendor preset: enabled) Active: active (exited) since Mon 2020-07-20 13:06:57 CST; 22s ago # 看到active (exited)表示正常启动了
方法3 配置dhcp服务器自动分配ip
之前我的教程有写
方法4
sudo mousepad /etc/network/interfaces
因为部分版本本身就有点问题 前几个方法你怎么操作都没用 所以只能配置文件自动分配
之前2018 2020 某一些版本这样 现在我用的是2022.1出现的bug
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback auto etho iface eth0 inet dhcp