91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Linux服務器中ftp如何限制ip

發布時間:2021-11-09 16:04:36 來源:億速云 閱讀:699 作者:柒染 欄目:建站服務器

今天就跟大家聊聊有關Linux服務器中ftp如何限制ip,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

限制IP

1、通過vsftpd的配置文件以及“hosts.deny”和“hosts.allow”文件設置允許某個ip地址訪問

1)修改配置文件“/etc/vsftpd/vsftpd.conf”中的參數“tcp_wrapper”,確保這個參數是yes

[root@localhost wj]# gedit /etc/vsftpd/vsftpd.conf        //匿名登錄

tcp_wrapper=YES

2)打開配置文件“/etc/hosts.deny“,在末尾追加一句話”vsftpd:all:Deny

[root@localhost wj]# gedit /etc/hosts.deny 

# hosts.deny  This file contains access rules which are used to

#      deny connections to network services that either use

#      the tcp_wrappers library or that have been

#      started through a tcp_wrappers-enabled xinetd.

#

#      The rules in this file can also be set up in

#      /etc/hosts.allow with a 'deny' option instead.

#

#      See 'man 5 hosts_options' and 'man 5 hosts_access'

#      for information on rule syntax.

#      See 'man tcpd' for information on tcp_wrappers

#

vsftpd:all:Deny       //所有的ip都不可以訪問

3)打開配置文件“/etc/hosts.allow“,在末尾追加一句話”vsftpd:192.168.0.123:Allow“。當前的配置就是只允許“192.168.0.123”訪問

[root@localhost wj]# gedit /etc/hosts.allow

 # hosts.allow This file contains access rules which are used to

#      allow or deny connections to network services that

#      either use the tcp_wrappers library or that have been

#      started through a tcp_wrappers-enabled xinetd.

#

#      See 'man 5 hosts_options' and 'man 5 hosts_access'

#      for information on rule syntax.

#      See 'man tcpd' for information on tcp_wrappers

#

vsftpd:192.168.0.123:Allow

4)測試是否可以訪問,當前主機的ip并不是“192.168.0.123”,因此訪問不會成功的

[root@localhost wj]# service vsftpd restart        //重啟服務

關閉vsftpd                                             [確定]

 vsftpd 啟動vsftpd                                    [確定]

 

[root@localhost wj]# lftp weijie:123456@192.168.0.113:8765     //本地用戶登錄

lftp weijie@192.168.0.113:~> ls

中斷                                                                     //ls失敗,并沒有連接成功

lftp weijie@192.168.0.113:~> bye

 

[root@localhost wj]# lftp 192.168.0.113:8765                     //匿名登錄

lftp 192.168.0.113:~> ls

中斷                                                                     //ls失敗,并沒有連接成功

lftp 192.168.0.113:~> 

2、當一個ip地址對主機的連接太多時,就會降低服務器的效率。因此有必要設置一個IP的連接數,當連接超過一定的數量就不能再連了,這樣就可以提高服務器的效率。Vsftpd默認沒有連接設置,可以通過參數“max_clients“來設置。由于同一個局域網的ip是一樣的,因此這個最大連接數要合理設置。

1)打開配置文件“/etc/vsftpd/vsftpd.conf“,在末尾追加一句話”max_clients=2“

[root@localhost pub]# gedit /etc/vsftpd/vsftpd.conf 

 max_clients=2

2)重啟服務,測試。一次打開三個連接,發現第三個連接不能訪問

[root@localhost wj]# service vsftpd restart        //重啟服務

關閉vsftpd                                             [確定]

 vsftpd 啟動vsftpd                                    [確定]

 

[root@localhost wj]# lftp weijie:123456@192.168.0.113:8765        //登錄weijie

lftp weijie@192.168.0.113:~> ls

-rwxrwxrwx    1 0        0        2375494044 Aug 14 07:13 1.zip

lftp weijie@192.168.0.113:~> 

 

[root@localhost wj]# lftp 192.168.0.113:8765                       //匿名登錄

lftp 192.168.0.113:~> ls

drwxr-xr-x    2 0        0            4096 Aug 14 06:38 pub

lftp 192.168.0.113:/> 

 

[root@localhost pub]# lftp 192.168.0.113                          //匿名登錄

lftp 192.168.0.113:~> ls

[0] ls &                                 

    `ls' at 0 [重新連接前延時: 22]                                  //不能再訪問,ls失效

lftp 192.168.0.113:~> 

做了一個Linux學習的平臺,目前出來一個雛形,各位可以參考使用
鏈接:https://pan.baidu.com/s/1GOLVU2CbpBNGtunztVpaCQ  密碼:n7bk

Linux服務器中ftp如何限制ip

看完上述內容,你們對Linux服務器中ftp如何限制ip有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

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

AI

宜章县| 平湖市| 个旧市| 大关县| 伊川县| 珠海市| 江安县| 金乡县| 龙岩市| 深泽县| 儋州市| 汕头市| 阿坝| 阳东县| 登封市| 遵化市| 大竹县| 高邑县| 柘荣县| 纳雍县| 绥滨县| 兴业县| 刚察县| 苏州市| 班戈县| 新乐市| 枝江市| 天全县| 新建县| 宁津县| 德州市| 平泉县| 乳源| 叶城县| 松潘县| 武隆县| 丹江口市| 密山市| 邮箱| 三亚市| 汉川市|