修改系統地址掩碼網關

題:修改本機網卡IP 爲192.168.1.223/24 網關192.168.1.1 DNS 8.8.8.8。html

方法1:修改本地網卡文件(須要重啓網卡)ui

# vi /etc/sysconfig/network-scripts/ifcfg-ens32spa

# 使用靜態IP
BOOTPROTO=static
# IP地址
IPADDR=192.168.1.233
# 子網掩碼
NETMASK=255.255.255.0
# 網關
GATEWAY=192.168.1.1
# DNS
DNS1=8.8.8.8

更多詳情:http://www.javashuo.com/article/p-ceemzzcx-mm.html命令行

 

方法2:圖形化配置code

# nmtuihtm

 

方法3:命令行配置blog

# nmcli connection add con-name ‘static-ip’ ifname eth0 type Ethernet ip4 192.168.1.223/24 gw4 192.168.1.1dns

# nmcli connection modify static-ip ipv4.dns 8.8.8.8ip

# nmcli connection modify static-ip ipv4.method manualget

# nmcli connection modify static-ip connection.autoconnect yes

# nmcli connection up static-ip

相關文章
相關標籤/搜索