CentOS FTP 更換Port後 無法連線

CentOS FTP 更換Port後 無法連線

原本VSFTP使用21PORT,後來需改成其他端口,改了listen的port後,卻連不上了。
但iptables關掉就能連上,猜測應該是iptables在擋。

解決方法:使用PASV模式
/etc/vsftpd/vsftpd.conf
增加下面三行
pasv_enable=Yes
pasv_max_port=10100
pasv_min_port=10090

/etc/sysconfig/iptables
增加下面一行
-A INPUT -p tcp –destination-port 10090:10100 -j ACCEPT

重啟vsFTP跟iptables

之後從新的port連線,成功!

centos 6 YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

centos 6 YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

centos 6 YumRepo Error: All mirror URLs are not using ftp, http[s] or file.

由於Centos6 已經停止更新,所以yum會出錯。
修改辦法:
1.修改 vi /etc/yum.repos.d/CentOS-Base.repo

2.只留下面3個
[base]
name=CentOS-$releasever – Base
baseurl=https://vault.centos.org/6.10/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

[updates]
name=CentOS-$releasever – Updates
baseurl=https://vault.centos.org/6.10/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#additional packages that may be useful
[extras]
name=CentOS-$releasever – Extras
baseurl=https://vault.centos.org/6.10/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

3.存檔 應該就可以修好!