Can ping but cannot access with telnetting


 
Thread Tools Search this Thread
Operating Systems SCO Can ping but cannot access with telnetting
# 1  
Old 07-19-2014
Can ping but cannot access with telnetting

I just installed a new server with sco 5.0.7 and installed SP5. I installed the server on site but windows computers can't access through Powerterm Pro. It indicates that it is connected but no login appears. netstat -an won't run, it just hangs until I press CTRL-BACKSPACE. The old server, which is also 5.0.7 but SP1, does accept the connections and shows the Login. The connection is TCP/IP

Can anyone help me with this?
# 2  
Old 07-20-2014
Try
Code:
trace netstat -an

Because it might hang before showing the hanging syscall, compare it with your working system.
# 3  
Old 07-20-2014
It's been a few years since I used SCO in anger but I do remember that you needed to configure the number of pseudo-ttys that you wanted.

This was done with:

Code:
# mkdev ptty

or possibly the SCO admin shell:

Code:
# scoadmin

If you change the number of ptty's then the management took will ask if you want to relink the kernel and you need to say yes. Also, say yes to rebuilding the kernel environment.

At this stage just try the 'mkdev ptty' command and it will tell you how many ptty's you have configured already.

Last edited by hicksd8; 07-20-2014 at 09:37 AM..
# 4  
Old 07-20-2014
Since you are getting no response from netstat, you should confirm that tcp is running.
#/etc/tcp stop
#/etc/tcp start
At the console, try 'telnet localhost'. You should get a new login prompt. Type <ctrl>] to get a telnet> prompt and enter quit.
Confirm that the network configuration for ip address and netmask is consistent at both the SCO and Windows ends.
Confirm that the Powerterm configuration points to the new system.
Assuming that you have the graphical interface working, try opening the web browser and opening the web page on your router.
The initial installation sets up 16 pseudo ttys so that is not likely to be the problem.
# 5  
Old 07-21-2014
@jgt.......I had assumed that the network (tcp) was running because ping works.
# 6  
Old 07-21-2014
telnet localhost also hangs. What else to look for?

---------- Post updated at 10:17 AM ---------- Previous update was at 09:56 AM ----------

Also, I can ping the server from another machine but I can't ping out. Not even the machine itself.
# 7  
Old 07-21-2014
Are you listening for a telnet connection? Try:-
Code:
netstat -na | grep LISTEN | grep "\.23"

Do you get any output?

If so, what process owns port 23 (probably inetd):-
Code:
lsof -i tcp:23 | grep LISTEN

What is telnetd record defined as in /etc/inetd.conf or if you are xinetd then you might have to past the content of /etc/xinetd.d/telnet

I apologise for not being very familiar with SCO, just a brief foray quite a few years ago to get a server running for an actuarial quotation engine - and that never worked so we disposed of the SCO server too.



Robin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Ping test sends mail when ping fails

help with bash script! im am working on this script to make sure my server will stay online, so i made this script.. HOSTS="192.168.138.155" COUNT=4 pingtest(){ for myhost in "$@" do ping -c "$COUNT" "$myhost" &&return 1 done return 0 } if pingtest $HOSTS #100% failed... (4 Replies)
Discussion started by: mort3924
4 Replies

2. Proxy Server

How to use Squid on Linux to control certain IP to access Web Server and certain IP cannot access?

Dear all experts here, :) I would like to install a proxy server on Linux server to perform solely to control the access of Web server. In this case, some of my vendor asked me to try Squid and I have installed it onto my Linux server. I would like know how can I set the configuration to... (1 Reply)
Discussion started by: kwliew999
1 Replies

3. Homework & Coursework Questions

Remote Access vs Local Access

Dear Friends, This is not a problem , it's a course work (UNIX scenario).... As part of it I am searching Remote Attacks and find points as 1. Exploiting a listening service 2. Routing through Unix system that is providing security between 2 or more networks 3. User initiated Remote execution... (1 Reply)
Discussion started by: anespa
1 Replies

4. Shell Programming and Scripting

How to get reason for ping failure using perls Net::Ping->new("icmp");?

Hi I am using perl to ping a list of nodes - with script below : $p = Net::Ping->new("icmp"); if ($p->ping($host,1)){ print "$host is alive.\n"; } else { print "$host is unreacheable.\n"; } $p->close();... (4 Replies)
Discussion started by: tavanagh
4 Replies

5. Solaris

samba read write access to owner and no access to other users

Hi All, I want to configure samba share permission so that only directory creator/owner has a read and write permission and other users should not have any read/write access to that folder.Will that be possible and how can this be achieved within samba configuration. Regards, Sahil (1 Reply)
Discussion started by: sahil_shine
1 Replies

6. Shell Programming and Scripting

Animation Ping on Solaris Like Cisco Ping

Hi, I develop simple animation ping script on Solaris Platform. It is like Cisco ping. Examples and source code are below. bash-3.00$ gokcell 152.155.180.8 30 Sending 30 Ping Packets to 152.155.180.8 !!!!!!!!!!!!!.!!!!!!!!!!!!!!!. % 93.33 success... % 6.66 packet loss...... (1 Reply)
Discussion started by: gokcell
1 Replies

7. AIX

ftp access without shell access

Hi all, I'm using AIX v 5.3 I want to create system users to access through ftp or sftp and restrict those users into specific directory and don't traverse the whole file system just to be restricted within a directory and don't get shell access . i don't want to use any other third party... (7 Replies)
Discussion started by: h@foorsa.biz
7 Replies

8. IP Networking

Does my provider limit my internet access or somesites access?

Hi Good Day, i would like to ask for further info about my problems experiencing this evening. Im a PPP0 connection in the internet using 3G located in asia pacific region.i had this problem this evening in my INTERNET connections that there are some sites i can't open example ( Gizmodo.com,... (2 Replies)
Discussion started by: jao_madn
2 Replies

9. UNIX for Dummies Questions & Answers

kernel giving access for multiple users to access files

hi all, i want to know y kernel is giving access for multiple users to access a file when one user may be the owner is executing that file. Because other user can manipulate that file when the other user is executing that file, it will give the unexpected result to owner . plz help me... (1 Reply)
Discussion started by: jimmyuk
1 Replies

10. UNIX for Dummies Questions & Answers

Need help to access/mount so to access folder/files on a Remote System using Linux OS

Hi I need to access files from a specific folder of a Linux system from an another Linux System Remotely. I know how to, Export a folder on One SCO System & can access the same by using Import via., NFS in the Sco Unix SVR4 System using the scoadmin utility. Also, I know to use mount -t ... (2 Replies)
Discussion started by: S.Vishwanath
2 Replies
Login or Register to Ask a Question