1. 程式人生 > >Kali Linux 手動配置ip

Kali Linux 手動配置ip

首先把虛擬機器的網路介面卡設定成橋接模式:直接連線到物理網路

大家都知道,要想進行內網滲透攻擊,你必須要在那個內網裡。
但是大家在Vmware裡安裝kali的時候,大多數使用者為了方便,未選擇橋接模式,而是選擇了使用與本機共享的IP網路
當然,這樣能上網,但是你的虛擬機器卻沒有實際獲得內網IP。

1,首先你要在你的本機上ipconfig一下

說一下內網ip ,如果你的閘道器是192.168.1.1。    那麼你的內網ip是192.168.1.XXX  , 前三個數字都一樣,最後一個數字不一樣,一臺機子分一個數字。

2,然後,進入你的虛擬機器的kali 進行操作。 在終端輸入 ifconfig -a 

檢視所有的網絡卡

3,正式開始配置,開啟終端  輸入命令 vi /etc/network/interfaces   #意思是用vim開啟檔案,然後編輯IP地址。

進入編輯模式 ,先按一下 i 鍵  編輯好了再單擊Esc 鍵,再按一下 + q  完畢。

inface eth0 inet static    設定 eth0 使用預設的靜態地址

address 192.168.4.200   設定 eth0 的ip 地址

gatework 192.168.4.4    配置當前主機的預設閘道器

netmask  255.255.255.0   設定 eth0 的子網掩碼

4,   如果你的閘道器是 192.168.1.1,那麼你就要設定 192.168.1.XXX,最後的數字推薦100-115中間的
       如果是192.168.0.1的,那麼你就要設定 192.168.0.XXX,最後的數字推薦100-115中間的

這裡說明一下如果你的  閘道器是192.168.1.1的就填192.168.1.0,閘道器是192.168.0.1的就填192.168.0.0

5,閘道器地址就和本機上一樣的。

全部都加入完了的話就     按一下 Esc 鍵,然後 Shift+;進入命令模式,輸入wq 回車退出。

修改 /etc/resolv.conf  檔案

三,重啟網絡卡

  在終端下,輸入:/etc/init.d/networking restart 回車,進行重啟網絡卡
進行這一步之後,kali的右上角會提示網路已斷開,並會顯示一個紅色的X。如果等了1分鐘X還沒去掉,請重啟,做好失敗的準備。

四,設定系統啟動後自動啟用網絡卡
在終端下,輸入update-rc.d networking defaults 回車,設定設定系統啟動後自動啟用網絡卡

在配置好網了的話,下面給大家一些更新源。

在終端輸入leafpad /etc/apt/sources.list 回車

然後新增以下更新源:

  1. deb http://http.kali.org/kali kali main non-free contrib
  2. deb-src http://http.kali.org/kali kali main non-free contrib
  3. deb http://security.kali.org/kali-security kali/updates main contrib non-free
  4. deb http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib 
  5. deb-src http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib 
  6. deb http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib 
  7. deb-src http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib 
  8. deb http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib 
  9. deb-src http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib 
  10. deb http://mirrors.163.com/debian wheezy main non-free contrib 
  11. deb-src http://mirrors.163.com/debian wheezy main non-free contrib 
  12. deb http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib 
  13. deb-src http://mirrors.163.com/debian wheezy-proposed-updates main non-free contrib 
  14. deb-src http://mirrors.163.com/debian-security wheezy/updates main non-free contrib 
  15. deb http://mirrors.163.com/debian-security wheezy/updates main non-free contrib

儲存完之後再終端輸入:apt-get update && apt-get upgrade  回車

寫的不好,諒解!!!