溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用Linux自帶的gssftp服務

發(fā)布時間:2021-10-22 10:41:06 來源:億速云 閱讀:149 作者:小新 欄目:系統(tǒng)運維

這篇文章給大家分享的是有關怎么使用Linux自帶的gssftp服務的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

RedHat和CentOS都自帶了一個gssftp服務,使用方式如下:

[root@linux local]# cd /etc/xinetd.d 
[root@linux xinetd.d]# ls 
chargen cups-lpd daytime-udp echo-udp gssftp krb5-telnet rsync time-udp 
chargen-udp daytime echo eklogin klogin kshell time

編輯gssftp文件,將server_args改為-l,將disable改為no:

[root@linux xinetd.d]# vi gssftp
[root@linux xinetd.d]# vi gssftp
# default: off
# description: The kerberized FTP server accepts FTP connections \
# that can be authenticated with Kerberos 5.
service ftp
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/kerberos/sbin/ftpd
#server_args = -l -a
server_args = -l
log_on_failure += USERID
#disable = yes
disable = no
}

重啟xinetd服務:

[root@linux xinetd.d]# service xinetd restart 
Stopping xinetd: [ OK ] 
Starting xinetd: [ OK ]

這時查看21端口已經打開:

[root@linux xinetd.d]# netstat -tnlp 
Active Internet connections (only servers) 
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 22543/xinetd

如果防火墻沒有打開端口,則開放21端口并重啟防火墻服務:

[root@linux xinetd.d]# vi /etc/sysconfig/iptables 
[root@linux xinetd.d]# service iptables restart 
Flushing firewall rules: [ OK ] 
Setting chains to policy ACCEPT: filter [ OK ] 
Unloading iptables modules: [ OK ] 
Applying iptables firewall rules: [ OK ]

這樣ftp服務就可用了,可以使用linux系統(tǒng)用戶登錄,不過gssftp不夠安全,臨時應急或內部使用可以,穩(wěn)定的FTP服務還是建議使用vsftp來搭建。

感謝各位的閱讀!關于“怎么使用Linux自帶的gssftp服務”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI