Como posso abrir a porta 21 em uma VM Linux?

0

Eu preciso abrir a porta 21 em uma máquina virtual Linux (CentOS 5) que tenho. Eu tentei várias soluções do Google, mas nenhuma está funcionando. Eu queria saber se alguém poderia me dizer como fazer isso.

Abaixo está a saída de 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   

E aqui está a saída de 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  
    
por prolink007 09.02.2011 / 18:28

1 resposta

3

Eu percebi isso. Eu não tenho um servidor FTP em execução na máquina que estou tentando conectar.

    
por 09.02.2011 / 18:39