ifconfig命令:
#系統中若沒有ifconfig這個命令解決辦法==> yum search ifconfig ==> 發現這個命令在是net- tools.x86_64這個包裡;==》安裝 yum install net-tools.x86_64
ifconfig 命令用於配置和顯示linux中網路介面的網路引數資訊;
ifconfig //顯示網路裝置資訊(啟用狀態的)
ifconfig -a //顯示所有裝置資訊
啟動關閉指定網絡卡
ifconfig eth0 up //啟動指定網絡卡eth0
ifconfig eth0 down //關閉指定網絡卡eth0 //ssh遠端登陸狀態下操作慎用
ifconfig eth0 1.1.1.2 netmask 255.255.255.0 broadcast 1.1.1.1 //配置ip位址
一:啟動生效:
vi /etc/sysconfig/network-scripts/ifcfg-ens* //(某些版本中可能沒有vim這個
比如centos,可能用vi替換)
device=ens*
bootproto=static //靜態(static)或dhcp(自動獲取)
onboot=yes //開機啟動
type=ethernet
ipaddr=192.168.1.102 //新增ip位址
netmask=255.255.255.0 //掩碼
gateway=192.168.1.1 //新增閘道器
dns1=8.8.8.8
注:bootproto只有在static(靜態)模式下才可以使用設定的ip資訊
二:即時生效(重啟後失效):
ifconfig eth0 192.168.1.102 netmask 255.255.255.0 //新增ip位址
route add default gw 192.168.1.1 //新增閘道器
三:修改dns
vim /etc/resolv.conf
修改後可即時生效,啟動同樣有效
形式:加入nameserver= ***.***.***.***
最多可有三個,作為上乙個失敗後的候選
四:相關配置命令
1. 使用ifconfig命令配置並檢視網路介面情況
#示例1: 配置eth0的ip,同時啟用裝置:
ifconfig eth0 192.168.4.1 netmask 255.255.255.0 up
#示例3:啟用(禁用)裝置
ifconfig eth0:1 up(down)
#示例4:檢視所有(指定)網路介面配置
ifconfig (eth0)
網路基礎配置
1.首先安裝虛擬機器 2.設定網路介面卡 3.登入,修改配置檔案 4.重新啟動,且測試能否ping通 5.關閉防火牆 6.安裝外掛程式 7.修改時間 echo 5 usr sbin ntpdate ntp1.aliyun.com dev null 2 1 var spool cron root us...
Linux網路基礎配置
在linux centos 中,乙太網介面被命名為eth0,eth1,0,1表示網絡卡編號 通過 lspci檢視網絡卡硬體資訊 ifconfig檢視介面資訊 ifconfig a 檢視所有介面 ifconfig eth0 檢視指定介面資訊 ifup eth0 啟用介面 ifdown eth0 禁用乙...
linux網路配置基礎
linux網路配置基礎 2001 04 18 14 16 41 設定主機名和網域名稱 一 修改檔案 etc hostname 檔案包含系統的主機名稱 例如 www.com 二 修改檔案 etc sysconfig network 例如 networking yes hostname www.com ...