1 ubuntu 的網路配置,設定靜態ip
vi /etc/network/inte***ces
(1)靜態ip位址
auto lo
iface lo inet dhcp
auto eth0
iface eth0 inet static //靜態ip
address 192.168.0.5 // ip位址
netmask 255.255.255.0 //掩碼
gateway 192.168.0.1 //閘道器]\
(2)預設的網路配置是dhcp自動獲取auto lo
iface lo inet dhcp
auto eth0
iface eth0 inet dhcp //dhcp獲取
儲存退出後重啟網路服務
/etc/init.d/networking restart
2 redhat和centos的網路配置vi /etc/sysconfig/network-scripts
(1)靜態ip位址
device="eth0"
bootproto="static"
hwaddr="00:0c:29:ce:aa:5f"
nm_controlled="yes"
onboot="yes"
ipaddr="10.91.0.30"
netmask="255.255.255.0"
gateway="10.91.0.1"
(2)預設的網路配置是dhcp自動獲取
device="eth0"
bootproto="dhcp"
hwaddr="00:0c:29:ce:aa:5f"
nm_controlled="yes"
onboot="yes"
儲存退出後重啟網路服務service network restart
Linux 系統 網路配置
linux 系統 網路配置 配置linux系統網路的方法有幾種,這裡介紹本人常用的兩種。第一種 使用命令ifconfig配置,具體用法 ipconfig ethx x.x.x.x netmask x.x.x.x 效果如下圖 通常,此種配置法只是用來測試用,因為重啟機器後,該配置的內容將會失效。第二種...
linux系統網路配置
1 設定虛擬機器為橋接模式 虛擬機器 設定 硬體 網路介面卡 橋接模式 ifconfig 啟動網路服務 sudo ifconfig eth0 up 關閉網路服務 sudo ifconfig eth0 down ifconfig eth0 192.168.3.注意防止ip衝突 測試網路是否聯通 pin...
Linux系統網路配置詳解
檢視ipifconfig 配置ip的方法 a 這種方法立即生效 但是重啟將不會儲存。除了這個方法的其它方法都可以儲存下來 ifconfig eth 1.1.1.1 netmask 255.0.0.0 up ifconfig eth0 1 1.1.1.3 up設定乙個網絡卡多個ip的方法 在設定虛擬主...