Linux

如何在 Linux VM 上打開埠 21?

  • February 12, 2018

我需要在我擁有的 Linux (CentOS 5) 虛擬機上打開埠 21。我嘗試了幾種穀歌解決方案,但沒有一個有效。我想知道是否有人可以告訴我如何做到這一點。


下面是輸出netstat -tulpn

tcp        0      0 127.0.0.1:2208              0.0.0.0:*                   LISTEN      3576/hpiod          
tcp        0      0 0.0.0.0:611                 0.0.0.0:*                   LISTEN      3397/rpc.statd      
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      3365/portmap        
tcp        0      0 127.0.0.1:631               0.0.0.0:*                   LISTEN      3020/cupsd          
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN      3629/sendmail: acce 
tcp        0      0 127.0.0.1:2207              0.0.0.0:*                   LISTEN      3582/python         
tcp        0      0 :::22                       :::*                        LISTEN      3595/sshd           
udp        0      0 0.0.0.0:68                  0.0.0.0:*                               3278/dhclient       
udp        0      0 0.0.0.0:605                 0.0.0.0:*                               3397/rpc.statd      
udp        0      0 0.0.0.0:608                 0.0.0.0:*                               3397/rpc.statd      
udp        0      0 0.0.0.0:5353                0.0.0.0:*                               3729/avahi-daemon:  
udp        0      0 0.0.0.0:111                 0.0.0.0:*                               3365/portmap        
udp        0      0 0.0.0.0:57333               0.0.0.0:*                               3729/avahi-daemon:  
udp        0      0 0.0.0.0:631                 0.0.0.0:*                               3020/cupsd          
udp        0      0 192.168.201.90:123          0.0.0.0:*                               3611/ntpd           
udp        0      0 127.0.0.1:123               0.0.0.0:*                               3611/ntpd           
udp        0      0 0.0.0.0:123                 0.0.0.0:*                               3611/ntpd           
udp        0      0 :::5353                     :::*                                    3729/avahi-daemon:  
udp        0      0 :::52217                    :::*                                    3729/avahi-daemon:  
udp        0      0 fe80::20c:29ff:fe66:123     :::*                                    3611/ntpd           
udp        0      0 ::1:123                     :::*                                    3611/ntpd           
udp        0      0 :::123                      :::*                                    3611/ntpd   

這是輸出iptables -L -n

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination  

我想到了。我嘗試連接的機器上沒有執行 FTP 伺服器。

引用自:https://unix.stackexchange.com/questions/7166