avatar

目录
Kali及Parrot问题解决方案

Kali及Parrot问题解决方案

1.网络问题

上网方式

1.桥接 (宽带下不可用!!!)

虚拟机与主机在同一个网段中,并且也要为虚拟机分配一个IP地址(不要与主机IP地址相同,也不要与主机所在局域网中的其他计算机IP地址相同),为虚拟机设置子网掩码、网关地址、DNS地址。除了IP地址不同,其他都相同。

2.NAT

虚拟机使用“NAT”(即VMnet8)虚拟网卡,并且在虚拟机中设置为“自动获得地址”,虚拟机就可以上网

网络故障问题的解决方法

1.查看自己ip地址、子网掩码等信息

ifconfig 

如不显示inet地址,则可能是smbd.server没开,应输入

/etc/init.d/smbd start

或输入

dhclient eth0

命令来获取IP地址
再输入ifconfig命令,就能看到eth0已经有IP地址了

2.配置网络

vi /etc/network/interfaces

修改为如下形式
#This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
 auto lo
 iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static                //配置eth0使用默认的静态地址
# address 192.168.0.133        //设置eth0的IP地址
# netmask 255.255.255.0          //配置eth0的子网掩码
# gateway 192.168.0.254        //配置当前主机的默认网关
  waddress ether 00:50:56:3D:9E:D2      //配置MAC地址

修改文件夹内文本数据时用vi命令,i键进入修改模式,修改后按ESC退出修改模式,输入 :w 保存,输入 :q 退出文件

配置DNS

Kali Linux的DNS服务器地址使用文件“/etc/resovl.conf”进行配置,用户可以通过“nameserver”配置项设置DNS服务器的 IP地址;
“resolv.conf”文件中最多可以使用“nameserver”指定3个DNS服务器,按照先后的顺序,一旦前面的DNS服务器失效,系统将自动使用后面的DNS服务器。
对于“resolv.conf”文件设置“nameserver”的修改是即时生效的,即只要对“resolv.conf”文件的修改进行了保存,在系统下一次需要进行域名的解析时就会按照该文件中指定的DNS服务器IP地址进行域名的解析。

vi /etc/resovl.conf

修改格式如下
# Generated by NetworkManager
nameserver 192.168.229.2 //Nat模式下为虚拟机网卡IP,桥接模式下为主机分配的IP
nameserver 114.114.114.114
nameserver 8.8.8.8

重启网卡

/etc/init.d/networking restart

ping

ping 114.114.114.114
ping 8.8.8.8

Parrot网络管理显示device not managed

  1. 编辑/etc/NetworkManager/NetworkManager.conf:

    sudo vi /etc/NetworkManager/NetworkManager.conf
    将其中的managed=false改为managed=true

2.重启network-manager service:

sudo service network-manager restart

####其他问题

parrot的软件安装

apt-get install 工具名
apt-get install parrot-tools-full  
                        //将装入full版parrot

更换更新源

vi /etc/apt/sources.list.d/parrot.list

中科大源

#stable repository
deb http://mirrors.ustc.edu.cn/parrot/ parrot main contrib non-free
#deb-src http://mirrors.ustc.edu.cn/parrot/ parrot main contrib non-free

清华源

#stable repository
deb http://mirrors.tuna.tsinghua.edu.cn/parrot/ parrot main contrib non-free
#deb-src http://mirrors.tuna.tsinghua.edu.cn/parrot/ parrot main contrib non-free

安装VMtools

sudo apt-get update
sudo apt-get install open-vm-tools-desktop fuse
然后重新登录

parrot网络配置

同kali(vim出现某些问题,需到相应路径下以管理员身份打开)

文章作者: kabeor
文章链接: https://kabeor.github.io/Kali%E5%8F%8AParrot%E9%97%AE%E9%A2%98%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 K's House

评论