![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SCO Santa Cruz Operation (SCO) was a software company based in Santa Cruz, California which was best known for selling three UNIX variants for Intel x86. |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Telnet/FTP: Delayed Connection | mahatma | UNIX for Advanced & Expert Users | 1 | 03-10-2006 06:42 AM |
| telnet connection refused | printrick | SCO | 2 | 01-11-2006 12:38 PM |
| no telnet connection | colesy | UNIX for Dummies Questions & Answers | 3 | 03-28-2003 07:12 AM |
| remote connection | preetham | UNIX for Advanced & Expert Users | 5 | 10-02-2002 03:59 AM |
| I need remote connection help | noobie_doo | UNIX for Dummies Questions & Answers | 2 | 02-12-2002 01:51 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Remote connection trought Telnet
Well... finally I took and old SCO Server and it works fine to keep working my ERP, but now I have a "LITTLE" trouble... with the other server we've made a connection trought TinyTerm with a DYNDNS Domain, in my firewall I noticed that there's a RULE establishing that the IP 192.168.0.1 (Server IP in my local network) redirect to Port 23 (default of Telnet I think) I think that it's a kind of mapping (tell me if I wrong)... but the actual server don't make this connection, TinyTerm send me an Out of time Error, as all of you can see I'm confused
If I try to connect in the LAN there's no problem.. I can connect to the server but the trouble came when I try to connect "WAN" trought the ADSL to (myserver.dyndns.org) What it could be happening? The port in the firewall it's wrong? or simply I have to configure in the server this port or another? How can I check what port it's the Telnet port making the connection in SCO? My firewall it's mOnOwall, and runs Ok, the server runs SCO Openserver R. 5 Thanks to all!!!! |
| Forum Sponsor | ||
|
|
|
|||
|
To connect by telnet correctly (port 23) you need to have the default gateway correctly set in you SCO 5 server. Version before 5.0.7 may not correctly use the default gateway stored in your "netconf" settings. One simple fix is to create a "start-up" script which should ensure that the default gateway is always set.
Using a text editor (like vi) create /etc/rc2.d/S99route with # # S99route : To specify default route to the Internet # /etc/route add default <ip address of your network's router / firewall> |
|
|||
|
Thanks a lot for the information, I'm a newer user of SCO Unix but i will try to do the maximum to resolve this with a help of you... the script I got to do it only contains the lines you write ...
# # S99route : To specify default route to the Internet # /etc/route add default <ip address of your network's router / firewall> my mOnOwall got the IP 192.168.0.2, where can I put this address or what is the script content with this IP, sorry I got no exprience with scripts, but I will try to understand the script if you have enough time to send me it... mmm can I manipulate this trought the scoadmin?... I change through the scoadmin the TCP/IP protocol use a Gateway, the system ask to me for a relink the kernel, this operation (relink) don't affect to my configuration/installation? |
|
|||
|
SCO is not like most versions of Linux. Network changes force a kernel relink since network drivers on in the kernel.
The IP address need to be at the <......>. So line: /etc/route add default <ip address of your network's router / firewall> should look like /etc/route add default 192.168.0.2 |