ip 網路介面配置檔案
[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
# intel corporation 82545em gigabit ethernet controller (copper)
device=eth0 #網絡卡介面名稱
type=ethernet #網絡卡型別
onboot=yes #系統啟動時是否自動載入
bootproto=static #啟用位址協議 --static:靜態協議 --bootp協議 --dhcp協議
hwaddr=08:00:27:11:50:f5 #網絡卡裝置mac位址
ipaddr=10.243.118.152 #網絡卡ip位址
netmask=255.255.254.0 #網絡卡網路位址
gateway=10.243.118.1 #網絡卡閘道器位址
broadcast=10.243.119.255 #網絡卡廣播位址
dns1=10.243.101.62 #網絡卡dns位址
dns2=10.243.65.66
重新匯入ifcfg-eth0網路配置檔案
[root@localhost ~]# /etc/init.d/network reload
shutting down inte***ce eth0: [ ok ]
shutting down loopback inte***ce: [ ok ]
bringing up loopback inte***ce: [ ok ]
bringing up inte***ce 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 ~]# /etc/init.d/network stop
[root@localhost ~]# /etc/init.d/network start
[root@localhost ~]# /etc/init.d/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
檢視當前路由及閘道器資訊
[root@localhost ~]# netstat -r
redhat 指令碼自動切換ip設定
attached please find the script to change your vm』s network ip, the way to use it is as below:
1. change to home』s network:
./changenetwork.sh home
2. change to office』s network:
./changenetwork.sh office
changenetwork.sh
\cp -f ifcfg-eth0-$1 /etc/sysconfig/network-scripts/ifcfg-eth0ifcfg-eth0-homeservice network restart
device=eth0
nm_controlled=yes
onboot=yes
hwaddr=08:00:27:67:4d:66
type=ethernet
bootproto=none
defroute=yes
peerroutes=yes
ipv4_failure_fatal=yes
ipv6init=no
name="system eth0"
ipaddr=192.168.1.123
netmask=255.255.255.0
gateway=192.168.1.1
userctl=no
dns2=122.224.9.93
dns1=8.8.8.8
ifcfg-eth0-office
device=eth0
nm_controlled=yes
onboot=yes
hwaddr=08:00:27:7a:1c:cc
type=ethernet
bootproto=none
defroute=yes
peerroutes=yes
ipv4_failure_fatal=yes
ipv6init=no
name="system eth0"
uuid=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03
ipaddr=10.243.119.226
netmask=255.255.254.0
gateway=10.243.119.1
userctl=no
dns2=10.243.65.66
dns1=10.243.101.62
設定暫時性的http**:
檢視埠占用情況netstat -antlp | grep 443
bin/apachectl stop
bin/apachectl start
檢視路由狀態
tracert 192.168.67.143 4001
開通組播功能:
route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
注意: 如果提示 error: no suitable device found: 找不到裝置
刪除 /etc/udev/rules.d/70-persistent-net.rules
重後 重新編輯使 mac 位址 及 裝置名稱 在兩個檔案中 對應
centos 網路配置
一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 device eth0 hwaddr 44 33 4c 00 18 98 type ethernet uuid 5d40d966 3bf9 4b...
CentOS配置網路
1 配置ip vim etc sysconfig network scripts ifcfg eth0 檔案不存在就建立乙個,名字為 ifcfg 具體網絡卡的命名 可以用ifconfig命令檢視,左邊顯示的就是 device eth0 物理裝置名 ipaddr 192.168.1.100 ip位址 ...
centos網路配置
修改ip位址 1 使用setup命令 使用setup命令進入圖形介面,根據提示進入network configuration,edit device,根據提示進行ip設定 2 直接編輯檔案進行修改 vi etc sysconfig network scripts ifcfg eth0 此處的ifcf...