1.登入centos。
2.# dhclient 自動獲取ip位址;正常情況下什麼也看不到
1).第乙個位址127.0.0.1是回環位址,網絡卡名叫做lo,windows作業系統也有該位址,用來和自己通訊。
2).第二個192.168.123.130就是剛剛自動獲取的ip位址。ens33就是網絡卡的名字。
4.獲取ip位址後,檢視是否可以聯網。
onboot=no改成yes yes表示網刊隨系統一同啟動。
bootproto=dhcp改成static. dhcp表示動態獲取,static表示手動設定靜態ip位址。
並且增加
ipaddr=192.168.123.130 指定ip位址
netmask=255.255.255.0 子網掩碼
gateway=192.168.123.2 閘道器
dns1=119.29.29.29
6.重啟網路服務
#systemctl restart network.service
7.檢視ip位址
# ip addr
8..網路連通性
ZYNQ petalinux設定固定IP位址
背景 zynq petalinux在開機自啟動以後ifconfig設定ip,然後執行應用程式 如果裝置沒有串列埠且程式在啟動過程中用wireshark抓取不到資訊,這時,就要使用固定ip位址進行測試了。解決方法 1 cd 到專案工程目錄下,執行命令 petalinux config或者直接在peta...
centOS靜態IP設定
編輯檔案 vi etc sysconfig network script ifcfg eth0 1.動態獲取ip onboot yes mm controlled no bootproto dhcp 2.靜態ip device eth0 type ethernet hwaddr 00 0c 29 5...
CentOS設定靜態IP
vim etc sysconfig network scripts ifcfg eth0 onboot yes nm controlled yes bootproto static ipaddr 172.19.1.35 netmask 255.255.255.0 gateway 172.19.1.1...