虛擬機linux橋接模式網絡連接設置

虛擬機NAT模式網絡連接設置ssh

VMWare虛擬機 網絡連接模式介紹


1.安裝好虛擬機之後,打開虛擬網絡編輯器


2.打開虛擬網絡編輯器,點擊更改網絡設置-修改連接方式爲橋接,選擇你使用的網卡,點擊確定


3.進入根目錄,輸入 cd etc/sysconfig/network-scripts/  然後新建 eth0 文件

或者: vi cd etc/sysconfig/network-scripts/ificfg-eth0

4.在ifcfg-eth0 中寫入下圖內容,完成配置

prefix表示:前綴是24,其實就是相當於子網掩碼有24位也就是255.255.255.0
寫了子網掩碼的請刪除prefix,二者只能保留一個


IP必須與主機在同一網段

網關,子網掩碼查看主機網絡的詳細信息

MAC地址:右鍵虛擬機-設置-網絡適配器-高級-MAC地址


UUID:輸入命令  uuidgen eth0   即可查詢 eth0 的UUID


5.重啓網絡服務:service network restart  在Cent0S7之後使用 systemctl restart network.service


6.介紹一些常用的關於網卡的命令:

網絡接口配置文件
[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=Ethernet       #網卡類型
DEVICE=eth0         #網卡接口名稱
ONBOOT=yes          #系統啓動時是否自動加載
BOOTPROTO=static    #啓用地址協議 --static:靜態協議 --bootp協議 --dhcp協議
IPADDR=192.168.1.11      #網卡IP地址
NETMASK=255.255.255.0    #網卡網絡地址
GATEWAY=192.168.1.1      #網卡網關地址
DNS1=10.203.104.41       #網卡DNS地址
HWADDR=00:0C:29:13:5D:74 #網卡設備MAC地址
BROADCAST=192.168.1.255  #網卡廣播地址 


重新導入ifcfg-eth0網絡配置文件
[root@localhost ~]# /etc/init.d/network reload
Shutting down interface eth0:                             [ OK ]
Shutting down loopback interface:                         [ OK ]
Bringing up loopback interface:                           [ OK ]
Bringing up interface eth0:                               [ OK ]


網卡接口關閉與激活
[root@localhost ~]# ifdown eth0   #關閉網絡
[root@localhost ~]# ifup eth0     #啓動網絡


網絡服務啓動與關閉
方法一:
[root@localhost ~]# service network stop    #關閉網絡服務
[root@localhost ~]# service network start   #啓動網絡服務
[root@localhost ~]# service network restart #重啓網絡服務

網卡狀態查詢
[root@localhost ~]# service network status
Configured devices:
lo eth0
Currently active devices:
lo eth0


臨時配置網卡信息,無需重啓。
[root@localhost ~]# ifconfig eth0 10.1.1.10 netmask 255.0.0.0
查看網卡接口信息,默認列出所有接口
[root@localhost ~]# ifconfig -a

查看當前路由及網關信息
[root@localhost ~]# netstat -r
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.1.0     *               255.255.255.0   U         0 0          0 eth0
169.254.0.0     *               255.255.0.0     U         0 0          0 eth0
default         192.168.1.1     0.0.0.0         UG        0 0          0 eth0


7.如果同時編輯了同一個網卡,會提示已經打開(如下圖)

[root@localhost network-scripts]# ls -a     #顯示隱藏文件

[root@localhost network-scripts]# rm -rf .ifcfg-eth0.swp   #刪除文件



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章