環境:centos7.7
1.首先檢視網絡卡名稱
2.進入/etc/sysconfig/network-scripts,編輯 ifcfg-ens33 檔案
#vim /etc/sysconfig/network-scripts/ifcfg-ens33
a.靜態ip設定修改內容如下:
bootproto="static" #dhcp改為static
onboot="yes" #開機啟用本配置
ipaddr=192.168.5.541#靜態ip
gateway=192.168.5.1#預設閘道器
netmask=255.255.255.0#子網掩碼
dns1=192.168.1.10#dns 配置
修改後效果:
type=ethernet
proxy_method=none
browser_only=no
bootproto=static#靜態
defroute=yes
ipv4_failure_fatal=no
ipv6init=yes
ipv6_autoconf=yes
ipv6_defroute=yes
ipv6_failure_fatal=no
ipv6_addr_gen_mode=stable-privacy
name=ens33
uuid=8130eee1-c2c7-4779-9956-19f6b5336ce5
device=ens33
onboot=yes#開機啟用本配置
ipaddr=192.168.5.241#靜態ip
gateway=192.168.5.1#預設閘道器
netmask=255.255.255.0#子網掩碼
dns1=192.168.1.10
b.動態ip設定修改內容如下
bootproto="dhcp" #d動態
onboot="yes" #開機啟用本配置
修改後效果:
hwaddr="00:15:5d:07:f1:02"
type="ethernet"
bootproto="dhcp" #動態
defroute="yes"
peerdns="yes"
peerroutes="yes"
ipv4_failure_fatal="no"
ipv6init="yes"
ipv6_autoconf="yes"
ipv6_defroute="yes"
ipv6_peerdns="yes"
ipv6_peerroutes="yes"
ipv6_failure_fatal="no"
name="eth0"
uuid="bb3a302d-dc46-461a-881e-d46cafd0eb71"
onboot="yes" #開機啟用本配置
3.儲存退出後,重啟網路服務
#systemctl restart network
Linux 靜態庫及動態庫
庫的製作和使用 什麼是庫 1 庫是二進位制 2 庫是加了密的源 3 庫是功能相近或者相似的函式的集合 庫的作用 1 的復用性,提高了軟體開發的效率,而且穩定安全.庫的製作 庫分為靜態庫和動態庫 庫的名字 libtest1.a 材料 main.c fun1.c fun2.c head.h main.c...
Windows 動態ip設定及靜態ip切換
win10遇到乙個問題,手動配置靜態ip提示 設定固定ip 出現了乙個意外錯誤,不能完成所有你在設定中所要求的更改 疑似沒有許可權,因此通過ctrl r,在輸入cmd進去命令列模式,輸入指令 netsh inte ce ip set address name 乙太網 static 192.168.2...
linux 網路的引數及設定
常用網路協議 ipv4 ip32位 二進位制 11111110.11111110.11111110.11111110.254.254.254.254 子網掩碼 用來表示ip的網路位和主機位 網路為表示網路區域 主機位表示網路區域中的某台主機 netmask非0位所對應的ip位址數值為這個ip的網路位...