使用橋接模式,設定網路連線
1、 查詢本機ip:
無線區域網介面卡 wlan:
連線特定的 dns 字尾 . . . . . . . :
ipv4 位址 . . . . . . . . . . . . : 192.168.31.206
子網掩碼 . . . . . . . . . . . . :255.255.255.0
預設閘道器. . . . . . . . . . . . . : 192.168.31.1
2、修改網路配置檔案 cat/etc/sysconfig/network-scripts/ifcfg-eth0
[root@caption01 sysconfig]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0
hwaddr=00:0c:29:7b:d9:0d
type=ethernet
iuuid=a92670f2-c9e9-45e9-a226-5b7be921744e
onboot=yes //開機啟用網路配置
nm_controlled=yes //實施生效,修改後無需重啟網絡卡生效
bootproto=static //ip獲取方式 dhcp、static、none
ipaddr=192.168.31.207 //ip位址
netmask=255.255.255.0 //子網掩碼
gateway=192.168.31.1 //閘道器:向外傳送請求
dns1=192.168.31.1 //dns:解析網域名稱;本地的dns伺服器
dns2=8.8.8.8 //谷歌的dns伺服器
[root@caption01 sysconfig]#
設定閘道器與dns:實現了訪問外網和解析網域名稱的功能
3、重啟網絡卡服務
/etc/init.d/network restart
或
service network restart
4、 測試
a) 關閉windows的防火牆
b) ping主機ip
如果需要則配置一下檔案:
1、 在網路配置檔案 /etc/sysconfig/network 中新增閘道器位址
[root@caption01 ~]# cat /etc/sysconfig/network
networking=yes
hostname=caption01
gateway=192.168.31.1 //
設定閘道器,與本機一致
[root@caption01 ~]#
2、 配置
dns服務
/etc/resolv.conf
[root@caption01 ~]# cat /etc/resolv.conf
; generated by /sbin/dhclient-script
search workgroup
nameserver 192.168.31.1
[root@caption01 ~]#
Vmware橋接網路設定
環境 centos5.5 為啦讓虛擬機器和本機網路想通,設定如下 宿主機 ip 192.168.0.100 閘道器 192.168.0.1 虛擬機器網路連線方式 橋接 不勾選replicate phycial network.虛擬機器網路設定如下 ifconfig eth0 192.168.0.66...
VMware橋接模式設定
1.設定橋接的網絡卡 選中虛擬機器,在選單欄選擇 編輯 虛擬網路編輯器 將 橋接到 設定為實際使用的網絡卡 2.配置虛擬機器網路 1 虛擬機器和宿主機要在同一網段 2 把虛擬機器的閘道器設定成宿主機的ip位址 3.關閉防火牆 1 關閉宿主機防火牆 2 關閉虛擬機器防火牆 chkconfig ipta...
linux 虛擬機器設定橋接模式
首先我的虛擬機器是 裝在筆記本上的,所以大多數情況下都是通過無線連線的 這裡我們要設定一下,允許我們的主機共享網路給虛擬機器 在window上此操作 vmnet0 設定為自己的無線網絡卡 虛擬機器的虛擬網絡卡都是通過vmnet0和主機網絡卡進行連線的 3 最後需要更改一下 linux 上的網路設定 ...