centos 網路配置

南川i發表於2024-07-16

設定靜態ip

進入系統後編輯配置檔案:
vi /etc/sysconfig/network-scripts/ifcfg-ens33

修改 BOOTPROTO=static
DNBOOT=yes #開啟自動啟用網路連線
IPADDR=192.168.1.100
NETMASK=255.255.255.0
GATEWAY=192.168.152.1
DNS1=8.8.8.8

編輯完成儲存(:wq)退出

重啟網路卡

service network restart
systemctl restart network

關閉防火牆

檢視防火牆狀態:systemctl status firewalld.service
關閉:systemctl stop firewalld
開啟:systemctl start firewalld
開機自動關閉:systemctl disable firewalld
開機自動啟動:systemctl enable firewalld

SSH 遠端連線

1.安裝 openssh-server
2.改配置檔案
vim /etc/ssh/sshd_config
3.開啟22埠(此處可以自定義,預設22)
port22
允許root賬戶登入
PermitRootLogin yes
4.啟動ssh服務
systemctl start sshd.service
5.啟動網路
service network restart
6.設定開機啟動ssh服務
systemctl enable sshd.service

相關文章