Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Users visiting another office

Status
Not open for further replies.

rjs

MIS
Apr 6, 1999
632
US
What is an effective/painless method to allow a user who visits a remote office to login to the local server but maintain rights to directories on their primary server?

Example: NetWare 5.1 servers in DC and GA in the same tree (different partitions). LANs connected via Internet with a firewall to firewall-based VPN (T1 in DC, 256K in GA). A DC user travels to GA. We would like that person to login to the GA server, but maybe map a single drive over to the DC server for file access.

As you might expect, our users don't want to know or remember to do anything special, like change their context.

Any advice/suggestions would be appreciated.
 
You could have them type in their fully distinguished NDS Names...

.<user>.<OU>.<O>
example - .userA.sales.novell

That way, they don't have to worry about modifying the Context on the workstation.

Good Luck!
 
Although an alias object would help, it would be a 'mare to administrate. You'd need all your inter-site users to have alias's.

Another way would be to rewrite your login script to ... say ... do something like the following (would need to be included in both DC and GA login scripts:
___________________________________________________________
IF &quot;%NETWORK_ADDRESS%&quot;=&quot;000000DC&quot; THEN
SET &quot;%LOCAL_SRV%&quot;=&quot;DCSERVER&quot;
END

IF &quot;%NETWORK_ADDRESS%&quot;=&quot;000000AA&quot; THEN
SET &quot;%LOCAL_SRV%&quot;=&quot;GASERVER&quot;
END

MAP INS S1:=&quot;%LOCAL_SRV%&quot;/SYS:pUBLIC
MAP etc....
___________________________________________________________

Can't remember the exact syntax's (will check at work on Monday), but the map statements would also include a MAP command to the users home area (again via an environment variable). This can also be used for IP, but I would have to look it up. -----------------------------------------------------
&quot;It's true, its damn true!&quot;
-----------------------------------------------------
 
Thanks LAD. So I would be looking at the network portion of the address. Never thought of that. Will give it a try.
 
Ok, got the partial extracts from my works login script (works over 50 ish sites so should be ok...) and have amended it slightly for your uses if you have not sorted one out already:

____________________________________________________________
IF &quot;%NETWORK_ADDRESS&quot; = &quot;000000AA&quot; THEN
SET LOCAL-SRV=&quot;GASERVER&quot;
END

IF &quot;%NETWORK_ADDRESS&quot; = &quot;000000DC&quot; THEN
SET LOCAL-SRV=&quot;DCSERVER&quot;
END

MAP ROOT INS S1:=Z:=%<LOCAL-SRV>/SYS:pUBLIC
MAP ROOT INS S1:=Y:=%<LOCAL-SRV>/SYS:pUBLIC\NLS

MAP ROOT P:=%HOME_DIRECTORY
____________________________________________________________

In the above example, the Z: and the Y: are the system drives and the P: maps to the users personal drive.

Hope this helps. -----------------------------------------------------
&quot;It's true, its damn true!&quot;
-----------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top