centos 7.0預設使用的是firewall作為防火牆。
firewall:
systemctl start firewalld.service#啟動firewall
systemctl stop firewalld.service#停止firewall
systemctl disable firewalld.service#禁止firewall開機啟動
systemctl diablefirewalld 永久關閉防火牆
vim/etc/sysconfig/selinux 並修改selinux=enforce行為selinux=disabled 關閉selinux
centos7 修改ssh 埠
修改/etc/ssh/sshd_config
vi /etc/ssh/sshd_config
port 22 ——> port 2212
修改firewall配置
新增到防火牆:
firewall-cmd --zone=public --add-port=2212/tcp --permanent (permanent是儲存配置,不然下次重啟以後這次修改無效)
重啟:firewall-cmd --reload
檢視新增埠是否成功,如果新增成功則會顯示yes,否則no
firewall-cmd --zone=public --query-port=2212/tcp
修改selinux
使用以下命令檢視當前selinux 允許的ssh埠:
semanage port -l | grep ssh
新增2212埠到 selinux
semanage port -a -t ssh_port_t -p tcp 2212
然後確認一下是否新增進去
semanage port -l | grep ssh
如果成功會輸出
ssh_port_t tcp 33378, 22
重啟ssh
systemctl restart sshd.service
在阿里雲伺服器上可以簡化步驟為:
systemctl stop firewalld.service#停止firewall
vi /etc/ssh/sshd_config
port 22 ——> port 2212
systemctl restart sshd.service
ssh埠即修改為2212
Centos7伺服器環境搭建
systemctl start httpd.service 啟動 systemctl stop httpd.service 停止 systemctl restart httpd.service 重啟 設定開機啟動 關閉 systemctl enable httpd.service 開機啟動 syst...
centos 7 搭建ntp 伺服器
restrict 192.168.1.0 netmask 255.255.255.0 nomodify notrap第一步 安裝ntp yum install ntp 第二步,查詢最近的時間同步伺服器 第三部編輯 etc ntp.conf server 127.127.1.0 iburst loca...
centos7 搭建ftp伺服器
本文採用最新的centos7 來學習搭建linux各種伺服器,今天分享的是搭建ftp伺服器 ps 不建議使用最新的系統去學習,因為系統發生了改變,好多以前的搭建伺服器的方法就不行了,比如說centos7將防火牆由iptables換為了firewall,再按照原來的教程去搭建就會遇到很多問題.當然如果...