Operating System - OpenVMS
1752786 Members
5956 Online
108789 Solutions
New Discussion юеВ

Re: Need set host/mop syntax for MAC address

 
SOLVED
Go to solution
Chaim Budnick
Regular Advisor

Need set host/mop syntax for MAC address

I need to connect to a terminal server and I only have the MAC address. I need the set host/mop syntax.

Chaim
5 REPLIES 5
Antoniov.
Honored Contributor
Solution

Re: Need set host/mop syntax for MAC address

Chaim,
with decnet IV you can type
$ NCP CONNECT VIA PHYS

Antonio Vigliotti

Antonio Maria Vigliotti
Ian Miller.
Honored Contributor

Re: Need set host/mop syntax for MAC address

From the manual

$ set host/mop -
_$ /circuit = circuit-name - (1)
_$ /address = lan-address - (2)
_$ /verification = octet-string - (3)
_$ /disconnect = disconnect-character -
_$ /break = break-character

1. Specifies the name of the MOP circuit over which the target system can be reached.
2. Specifies the LAN hardware address associated with this client.
3. Specifies the verification string. The value is an octet string of up to 16 hexadecimal digits. Enter the value as "%X" followed by an even number of digits. For more information about specifying a verification string, see Section 10.2.2.1. The default is %X0000000000000000.
____________________
Purely Personal Opinion
Melinda Chan
Advisor

Re: Need set host/mop syntax for MAC address

Hi
If using DECnet Phase V, then to make permanent change try using
$net$configure
option 8 - Configure MOP Client database
this will edit the file SYS$MANAGER:NET$MOP_CLIENT_STARTUP.NCL;

So you can just $set host/mop
without the need to remember the MAC address, etc.. all the time

Content of file would look something like
CREATE MOP CLIENT SERV01
SET MOP CLIENT SERV01 CIRCUIT = CSMACD-0 -
,ADDRESSES = {08-00-2B-B1-9B-00} -
,PHASE IV HOST ADDRESS = 2.1 -
,PHASE IV CLIENT NAME = SERV01 -
,DUMP FILE = {SYS$SYSROOT:SERV01.DMP}
Terry Yeomans
Frequent Advisor

Re: Need set host/mop syntax for MAC address

SET HOST /MOP /DISCON=D /CIRCUIT=CSMACD-0
/ADDRESS=mac_address
/DISCON=D means use Control and D to disconnect
CIRCUIT=CSMACD-0 is the circuit we use.
Hopefully this will help.
Yours Terry.
Chaim Budnick
Regular Advisor

Re: Need set host/mop syntax for MAC address

THANKS to everyone !!!!

I was able to connect to the terminal server and then get the server name etc etc.

Chaim