前段時間太久沒有在本地使用虛擬機器,網絡卡連了很久,做個筆記吧
本機介面卡選項中設定dns位址
vmare 設定nat連線模式
把虛擬機器設定跟本機同一閘道器 即第三位 150
虛擬機器編輯網絡卡設定為固定ip
vim /etc/sysconfig/network-scripts/ifcfg-ens33
type=ethernet
proxy_method=none
browser_only=no
#靜態ip
bootproto=static
defroute=yes
ipv4_failure_fatal=no
ipv6init=yes
ipv6_autoconf=yes
ipv6_defroute=yes
ipv6_failure_fatal=no
ipv6_addr_gen_mode=stable-privacy
name=ens33
uuid=12dcfb7c-f2e7-494e-8cc1-26f0bbd45be2
device=ens33
onboot=yes
#ip位址
ipaddr=192.168.150.22
#子網掩碼 即是nat模式中的子網掩碼
netmask=255.255.255.0
#預設網絡卡 即是nat模式中的預設網絡卡
gateway=192.168.150.2
dns1=8.8.8.8
LINUX設定網絡卡
一 臨時啟用網絡卡並配置ip ifconfgi eth1 192.168.8.201 netmask 255.255.255.0 up 二 通過直接配置 etc sysconfig network scripts ifcfg eth1 一般為ifcfg eth0 vi etc sysconfig n...
linux 設定網絡卡
配置網絡卡 修改 etc sysconfig network scripts ifcfg eth0檔案,如果有多張網絡卡,則修改相應的網絡卡 vim etc sysconfig network scripts ifcfg eth0 device eth0 網絡卡對應的裝置別名 bootproto s...
linux 網絡卡設定
1 進入網絡卡目錄 cd etc sysconfig network scripts 2 網絡卡配置檔案內容 type ethernet proxy method none browser only no bootproto none defroute yes ipv4 failure fatal ...