| Greetings!
This guy called again (I think?, he didn't identify himself) after 17:00
Eastern wanting to know how to configure DECnet/OSI to talk to a remote printer.
I left him voicemail this morning to call me or just pursue this directly with
the CSC. This isn't a "porting" issue and I have no experience with DECnet/OSI.
The only way I know how to talk to remote printers is with UCX (if printer talks
TCP/IP) or DCPS (supports both DECnet or TCP/IP stacks on PrintServers) or LAT
queues if printer is hooked up to a terminal server on the same LAN...
Tony Swierkowski
Digital Equipment Corporation
Software Partner Engineering
Palo Alto, California
(415) 617-3601
"[email protected]"
|
| From: HYDRA::LNARAYAN "R Lakshminarayan, Software Partner Engg" 22-APR-1997 12:58:03.08
To: US4RMC::"[email protected]"
CC: LNARAYAN
Subj: DECnet problem: Have you tried this?
Hi Ranjan,
Could you please try this and let me know your inputs.
Thanks
-Nari
You check out a flowing NCL command:
NCL>sho osi transport all
Node 0 OSI Transport
at 1996-07-25-13:25:58.999+09:00Iinf
Status
UID = 776D108C-E577-11CF-8005-AA000400A8E9
State = On
Currently Active Connections = 0 <-------*1
Characteristics
Maximum Transport Connections = 200 <-------*
Maximum Receive Buffers = 4000
Delay Weight = 5
Delay Factor = 4
Maximum Window = 20
Maximum Multiplexing = 4294967295
Disconnect Holdback = 0
Maximum Network Connections = 4294967295
ISO Version = 1
Version = V1.1.0
CONS Classes Supported =
{
0 ,
2 ,
4
}
CLNS Classes Supported =
{
4
}
Support MAP = False
Maximum Remote NSAPs = 201 <-------*
NSAP Selector = 33
CONS Filters =
{
"OSI Transport"
}
Congestion Avoidance = False
CONS NSAP Addresses =
{
}
Maximum RFC1006 Connections = 4294967295
RFC1006 Listener Ports =
{
{
102 ,
399
}
Out Of Order Cache Size = 10
NCL>
* or *1: You are check out a point.
ANALYSYS:
If condition to Currently Active Connections >
Maximum Transport Connections,
that are maximum connection limits exceed.
Solution:
flowing commmand :
ncl>disable osi transport
ncl>set osi transport max transport connection CONNCTIONVALUE
ncl>set osi transport max remote nsaps CONNCTIONVALUE+1
ncl>enable osi transport
and
To make the chage permanent:
$edit/xtpu sys$startup:net$osi_transport_startup.ncl
and modfiy to flowing command:
set osi transport max transport connection CONNCTIONVALUE
set osi transport max remote nsaps CONNCTIONVALUE+1
|