Well I did say I was confused from the beginning :)
I want to basically provide a PPP service on a serial port. This serial port happens to be on the DECserver, so I figured I would make a LAT service called CHIMPYNET on CHIMPY that provides the PPP service. Then anyone connected to the DECserver could just say CONNECT CHIMPYNET and be connected to the PPP service.
Is this doable?
Sampsa
On 5 Oct 2009, at 00:11, Johnny Billquist wrote:
You are totally mixing up things.
Why don't you try to describe the whole path of what you are trying to
do instead, and we work our way from there.
The current setup is that if someone connect to LTA777:, the will be
connected over LAT to the service CHIMPYNET. And the service CHIMPYNET
seems to be defined as a service on the local machine, using port LTA777:
Looks very circular to me...
But I can be reading something wrong, since this is VMS, which I'm not
as familiar with as RSX. With VMS I need to play around a bit to get
things right usually.
But without knowing what you really are trying to accomplish, it will be
very hard to get things right.
So. Start over, and start with describing what you want to accomplish,
without even mentioning LAT, LATCP, or any specific details on that
level. Describe it as if you had a serial port locally on the VMS
machine, connected by a physical cable to another machine.
Johnny
Sampsa Laine wrote:
Cool, that worked.
But I'm still stuck :)
What I'm trying to do is to attach a PPP service to this port, and then be able to connect to that from my DECserver. I've set up the PPP service:
TCPIP SET INTERFACE PP1 /SERIAL_DEVICE=LTA777: /HOST=192.168.77.246 -
/NETWORK_MASK=255.255.255.0 /DESTINATION=192.168.77.151 /COMPRESS=AUTO
But doing a SET HOST/LAT CHIMPYNET does not work - any ideas where I'm going wrong?
Some output:
CHIMPYSYS$ lcp show service chimpynet
Service Name: CHIMPYNET Service Type: Application
Service Status: Available Connections: Enabled
Service Password: Disabled Queueing: Enabled
Service Ident: CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
Service Ports: _LTA777:
Node Name Status Rating Identification
CHIMPY On 28 D CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
CHIMPYSYS$ lcp show port lta777
Local Port Name: _LTA777: Local Port Type: Dedicated (Queued)
Local Port State: Inactive
Connected Link:
Target Port Name: Actual Port Name:
Target Node Name: Actual Node Name:
Target Service Name: CHIMPYNET Actual Service Name:
CHIMPYSYS$ set host/lat chimpynet
%LAT-F-CONFAIL, connection to CHIMPYNET not established
-LAT-F-LRJINUSE, port or service in use
-LAT-I-END, control returned to node CHIMPY
On 4 Oct 2009, at 20:50, Kari Uusim ki wrote:
Sampsa Laine wrote:
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
.
First you should create the service
$ MC LATCP CREA SERVI /APPL
Then create the port
$ MC LATCP CREA PORT /DEDI
And then associate the port with your service
$ MC LATCP SET PORT /DEDI /SERVI
Then start your application which listens to the LAT port.
Kari
--
Johnny Billquist || "I'm on a bus
|| on a psychedelic trip
email: bqt at softjar.se || Reading murder books
pdp is alive! || tryin' to stay hip" - B. Idol
You are totally mixing up things.
Why don't you try to describe the whole path of what you are trying to
do instead, and we work our way from there.
The current setup is that if someone connect to LTA777:, the will be
connected over LAT to the service CHIMPYNET. And the service CHIMPYNET
seems to be defined as a service on the local machine, using port LTA777:
Looks very circular to me...
But I can be reading something wrong, since this is VMS, which I'm not
as familiar with as RSX. With VMS I need to play around a bit to get
things right usually.
But without knowing what you really are trying to accomplish, it will be
very hard to get things right.
So. Start over, and start with describing what you want to accomplish,
without even mentioning LAT, LATCP, or any specific details on that
level. Describe it as if you had a serial port locally on the VMS
machine, connected by a physical cable to another machine.
Johnny
Sampsa Laine wrote:
Cool, that worked.
But I'm still stuck :)
What I'm trying to do is to attach a PPP service to this port, and then be able to connect to that from my DECserver. I've set up the PPP service:
TCPIP SET INTERFACE PP1 /SERIAL_DEVICE=LTA777: /HOST=192.168.77.246 -
/NETWORK_MASK=255.255.255.0 /DESTINATION=192.168.77.151 /COMPRESS=AUTO
But doing a SET HOST/LAT CHIMPYNET does not work - any ideas where I'm going wrong?
Some output:
CHIMPYSYS$ lcp show service chimpynet
Service Name: CHIMPYNET Service Type: Application
Service Status: Available Connections: Enabled
Service Password: Disabled Queueing: Enabled
Service Ident: CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
Service Ports: _LTA777:
Node Name Status Rating Identification
CHIMPY On 28 D CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
CHIMPYSYS$ lcp show port lta777
Local Port Name: _LTA777: Local Port Type: Dedicated (Queued)
Local Port State: Inactive
Connected Link:
Target Port Name: Actual Port Name:
Target Node Name: Actual Node Name:
Target Service Name: CHIMPYNET Actual Service Name:
CHIMPYSYS$ set host/lat chimpynet
%LAT-F-CONFAIL, connection to CHIMPYNET not established
-LAT-F-LRJINUSE, port or service in use
-LAT-I-END, control returned to node CHIMPY
On 4 Oct 2009, at 20:50, Kari Uusim ki wrote:
Sampsa Laine wrote:
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
.
First you should create the service
$ MC LATCP CREA SERVI /APPL
Then create the port
$ MC LATCP CREA PORT /DEDI
And then associate the port with your service
$ MC LATCP SET PORT /DEDI /SERVI
Then start your application which listens to the LAT port.
Kari
--
Johnny Billquist || "I'm on a bus
|| on a psychedelic trip
email: bqt at softjar.se || Reading murder books
pdp is alive! || tryin' to stay hip" - B. Idol
Cool, that worked.
But I'm still stuck :)
What I'm trying to do is to attach a PPP service to this port, and then be able to connect to that from my DECserver. I've set up the PPP service:
TCPIP SET INTERFACE PP1 /SERIAL_DEVICE=LTA777: /HOST=192.168.77.246 -
/NETWORK_MASK=255.255.255.0 /DESTINATION=192.168.77.151 /COMPRESS=AUTO
But doing a SET HOST/LAT CHIMPYNET does not work - any ideas where I'm going wrong?
Some output:
CHIMPYSYS$ lcp show service chimpynet
Service Name: CHIMPYNET Service Type: Application
Service Status: Available Connections: Enabled
Service Password: Disabled Queueing: Enabled
Service Ident: CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
Service Ports: _LTA777:
Node Name Status Rating Identification
CHIMPY On 28 D CHIMPY - OpenVMS 8.3 on AlphaServer 800 5/333
CHIMPYSYS$ lcp show port lta777
Local Port Name: _LTA777: Local Port Type: Dedicated (Queued)
Local Port State: Inactive
Connected Link:
Target Port Name: Actual Port Name:
Target Node Name: Actual Node Name:
Target Service Name: CHIMPYNET Actual Service Name:
CHIMPYSYS$ set host/lat chimpynet
%LAT-F-CONFAIL, connection to CHIMPYNET not established
-LAT-F-LRJINUSE, port or service in use
-LAT-I-END, control returned to node CHIMPY
On 4 Oct 2009, at 20:50, Kari Uusim ki wrote:
Sampsa Laine wrote:
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
.
First you should create the service
$ MC LATCP CREA SERVI /APPL
Then create the port
$ MC LATCP CREA PORT /DEDI
And then associate the port with your service
$ MC LATCP SET PORT /DEDI /SERVI
Then start your application which listens to the LAT port.
Kari
Thanks!
Sampsa
On 4 Oct 2009, at 20:50, Kari Uusim ki wrote:
Sampsa Laine wrote:
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
.
First you should create the service
$ MC LATCP CREA SERVI /APPL
Then create the port
$ MC LATCP CREA PORT /DEDI
And then associate the port with your service
$ MC LATCP SET PORT /DEDI /SERVI
Then start your application which listens to the LAT port.
Kari
Sampsa Laine wrote:
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
.
First you should create the service
$ MC LATCP CREA SERVI /APPL
Then create the port
$ MC LATCP CREA PORT /DEDI
And then associate the port with your service
$ MC LATCP SET PORT /DEDI /SERVI
Then start your application which listens to the LAT port.
Kari
Guys,
I'm trying to set up an incoming LAT service on CHIMPY called SAMPSACOM, i.e. I want to be able to connect to a service called SAMPSACOM over LAT and this connection is then routed to port LTA101: - I will have an app on CHIMPY that waits for connections on LTA101.
I've done this:
lcp:==mcr latcp
lcp create port lta101: /dedicated
lcp set port lta101: /dedicated /service=sampsacom
Now what? If I try to connect to the port (via set host/dte) I get an error:
%REM-E-PORTRXERR, port receive error
-SYSTEM-F-HANGUP, data set hang-up
It doesn't show up in SHOW SERVICES and SHOW PORTS says it's inactive:
$lcp show ports *
[....]
_LTA101: Dedicated Inactive //SAMPSACOM
Any help on how to proceed would be most welcome.
Sampsa
On Sat, 2009-10-03 at 01:18 +0100, Sampsa Laine wrote:
Does anybody have a copy of the clients of this lying around, either
Mac or Win32?
Sampsa
Yes, it might even be available on the server - I'll have to fire it up and check.
Mark.
Sampsa Laine wrote:
Does anybody have a copy of the clients of this lying around, either Mac or Win32?
Sampsa
.
Do you have the VMS Software Products Library from recent years?
There used to be the Pathworks32 client disk also.
Kari
yeah, and it's as fast as it'll get.
Also google tells me there was a 3rd party product called TSSnet...
im still digging!
On Fri, Oct 2, 2009 at 9:01 PM, Sampsa Laine <sampsa at mac.com> wrote:
That's a brilliant idea! I'm going to do that actually.
Sampsa
On 3 Oct 2009, at 01:58, Jason Stevens wrote:
I installed on an IDE flash disk that is connected to an IDE/SCSI bridge....
The flash card is 8GB.
It should pretty much work with anything I would imagine under 32gb....
On Fri, Oct 2, 2009 at 8:56 PM, Sampsa Laine <sampsa at mac.com> wrote:
I tried the install floppy, it saw my devices on the bus, but didnt allow me to format them.
Come to think of it, i think the Sun disk box i connected to it might be RAIDed or something.
I'll try again soon.
On 3 Oct 2009, at 01:54, Jason Stevens wrote:
It shouldn't be that involved, but I recall it taking FOREVER...... I recall doing a 2gig macos, and then 2gig UFS partitions from there...
my quadra if off right now I'd have to recable to get it back online but it wasn't tooo bad, the bigger issue was recognizing the CD-ROM.. I managed to score an apple 150 to do the load...
At least the A/UX install floppy will let you format non apple hard disks....!
On Fri, Oct 2, 2009 at 8:52 PM, Sampsa Laine <sampsa at mac.com> wrote:
Yeah, got the max sims waiting to be installed. I've also got a CDROM drive that's MEAT to work.
I can't figure out how to format the damn disks though
On 3 Oct 2009, at 01:48, Jason Stevens wrote:
It's a painfull install, but once it's done it's GREAT!!!... It's the OSX of the 1980's!
SYSVr2 & System 7.
Naturally you'll want LOTS of ram!!
On Fri, Oct 2, 2009 at 8:45 PM, Sampsa Laine <sampsa at mac.com> wrote:
Nice, I've got a Quadra 650 and an SE/30 - thinking about rolling out A/UX on the quadra, just for fun :)
Sampsa
On 3 Oct 2009, at 01:44, Jason Stevens wrote:
That'd be cool, I even have a Quadra 700 that'd be nice to connect up.....