Prev: SQLite build process
Next: metareplace -e
From: Winston on 18 Mar 2010 10:24 "patrick_nyr" <mpprpp2000(a)yahoo.com> writes: >>> I'm running Solaris 9 on a V880 and I'm unable to connect through ftp >>> or telnet? and later: > I am able to ping. I am able to login from the console. While you're logged in from the console, does "netstat -af inet" show LISTENs on the TCP ftp and/or telnet ports? -WBE
From: patrick_nyr on 18 Mar 2010 10:42 "Winston" <wbe(a)ubeblock.psr.com.invalid> wrote in message news:ydtysd907q.fsf(a)UBEblock.psr.com... > "patrick_nyr" <mpprpp2000(a)yahoo.com> writes: >>>> I'm running Solaris 9 on a V880 and I'm unable to connect through ftp >>>> or telnet? > > and later: >> I am able to ping. I am able to login from the console. > > While you're logged in from the console, does "netstat -af inet" show > LISTENs on the TCP ftp and/or telnet ports? > -WBE >. I ran the "netstat -af inet" and I don't see for ftp or telnet with LISTEN.
From: hume.spamfilter on 18 Mar 2010 11:51 patrick_nyr <mpprpp2000(a)yahoo.com> wrote: > I ran the "netstat -af inet" and I don't see for ftp or telnet with LISTEN. Is inetd running? For example, # ps -ef | grep inetd root 221 1 0 May 25 ? 8:37 /usr/sbin/inetd -s .... and does /etc/inetd.conf exist and contain lines for 'ftp' and 'telnet', like: # egrep 'ftp|telnet' /etc/inetd.conf #telnet stream tcp6 nowait root /usr/sbin/in.telnetd in.telnetd ftp stream tcp6 nowait root /usr/sbin/in.ftpd in.ftpd -a You can see there that ftp is enabled on this machine but telnet is not. -- Brandon Hume - hume -> BOFH.Ca, http://WWW.BOFH.Ca/
From: patrick_nyr on 18 Mar 2010 11:58 <hume.spamfilter(a)bofh.ca> wrote in message news:hnti5j$9fe$1(a)Kil-nws-1.UCIS.Dal.Ca... > patrick_nyr <mpprpp2000(a)yahoo.com> wrote: >> I ran the "netstat -af inet" and I don't see for ftp or telnet with >> LISTEN. > > Is inetd running? For example, > > # ps -ef | grep inetd > root 221 1 0 May 25 ? 8:37 /usr/sbin/inetd -s > > Hi, Yes, this is running. > ... and does /etc/inetd.conf exist and contain lines for 'ftp' and > 'telnet', > like: > Yes, it contains those lines for ftp and telnet' > # egrep 'ftp|telnet' /etc/inetd.conf > #telnet stream tcp6 nowait root /usr/sbin/in.telnetd in.telnetd > ftp stream tcp6 nowait root /usr/sbin/in.ftpd in.ftpd -a > > You can see there that ftp is enabled on this machine but telnet is not. > The telnet daemon and ftp daemon are enabled.
From: Oscar del Rio on 18 Mar 2010 12:19
On 03/18/10 11:58 AM, patrick_nyr wrote: > The telnet daemon and ftp daemon are enabled. what does "telnet hostname 21" say? |