Adding a Unix Server to a Windows 2000 Network


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Adding a Unix Server to a Windows 2000 Network
# 1  
Old 12-21-2004
Bug Adding a Unix Server to a Windows 2000 Network

Hi everyone

Firstly I apologise for my total lack of knowledge about UNIX. Its unfortunately something I have never had any exposure to (Until Now).

I administer a smallish Windows 2000 network with all the usual bits and pieces that involves, and have been given the task of joining a Unix server running SCO OpenServer Release 5.0 to it. The server contains some quite sensitive data and access needs to be limited to four users and myself.

To be honest I don't have a clue where to start! If someone could please point me in the right direction it would be hugely appreciated.

Thanks
# 2  
Old 12-21-2004
Hmmm.... unless you need to worry about actually joining the Windows Active Directory "domain", you should be able to just include the server on the network just as you would with a Windows box - i.e. assign the appropriate hostname, IP address, etc, patch it in and away you go.

If you need to join the domain, authenticate Windows users, run heterogenous applications, etc, you may need to investigate (a lot) further.

Otherwise, just run an ssh daemon on the SCO box, and use a Windows based ssh client such as PuTTY to log in and access the data on the SCO server.

We have an HP-UX server at work integrated into a Win2K network and there are no real special considerations, except the Unix box is more secure Smilie

Cheers
ZB
# 3  
Old 12-22-2004
Question

Thanks ZB

I have patched the server into the Network, but unfortunately fallen at the first hurdle. Although the machine has an Ethernet card in it I have no idea if it is configured or not.

I logged in as root and ran netconfig, which gives hardware / protocol options, but as I'm not sure what the card is, I was wary about messing with the existing configuration. Is there any way of checking without pulling the case apart and yanking the card out? Also once the card is identified how do you insure that is correctly configured and has the right IP address?

Sorry - I know this is all simple stuff, but I don't have a clue.

Thanks a million!
# 4  
Old 12-23-2004
The easiest way to see if the IP address, etc, is configured is via ifconfig.

Type
man ifconfig
to read the manual page for ifconfig, as each *nix has its own command variation.

The actual interface device name also varies wildly between unix flavours. You can run

ifconfig <device>

Linux uses eth0 for the first ethernet device
HP-UX uses lan0
And SCO (I believe) uses net0

On SCO, ifconfig -a will show you information about all configured devices

*something like*
ifconfig net0 192.168.0.1 netmask 255.255.255.0 up
should bring the interface up if it already isn't.

You'll then need
route add default 192.168.0.100

to specify the default gateway
(Linux uses "route add default gw <address>")

All this will need to be added to startup scripts to make the changes persistent after everything is tested and working.

You'll also need to think about DNS, or if your network only has a few hosts on it, just edit the /etc/hosts file and add the hosts in.

There's quite a lot to do, and there is some good documentation on www.sco.com

Cheers
ZB
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

restart windows 2000 server using command line

Hi all expert, Anybody know how to restart the windows 2000 server through command line and without using any additional tool? Thanks :):) (2 Replies)
Discussion started by: wilsonSurya
2 Replies

2. Shell Programming and Scripting

SFTP from UNIX (AIX) to Windows 2000 server

Hi all, I have to sftp a file (put) from AIX server to Windows 2000 server. The question is Windows 200 server that i am using doesnt have any SFTP server , if so i know we need to install one. The question here is for writing a sftp script that as to run everyday as part of cron job we... (0 Replies)
Discussion started by: reddymails
0 Replies

3. UNIX for Dummies Questions & Answers

Unix in Network 2000 Server

Hi, is it possible to see our Unix server, with logged-on users(for that specifiek unix-network domain) in my network environment, on my xp pc (i however, log on at our 2000 server)? We have a windows2000 server and both are connected in our LAN. Do i need to make a trust relationship or do i have... (0 Replies)
Discussion started by: devuyst
0 Replies

4. Windows & DOS: Issues & Discussions

file management in windows 2000 server

i am using windows 2000 server. my query is as follows: there are 2 directories say c:\emp & c:\exe. DataBase (DB) files are there in emp folder and the executables are in exe folder. Now i want to share the exe folder to the clients. If i give read permission to the exe folder and no... (3 Replies)
Discussion started by: raguramtgr
3 Replies

5. UNIX for Dummies Questions & Answers

Adding MS 2000 FSMO Roles to Unix Bind

In a Windows 2000 active directory environment (using Unix DNS), is it possible to create entries in Unix Bind to point Microsoft Workstations to specific Microsoft servers, depending on their Microsoft FSMO roles (i.e. Domain Naming Master, PDC Emulator, RID, Infrastructure Master)? In other... (0 Replies)
Discussion started by: breffkin
0 Replies

6. Solaris

setting up unix and 2000 server on network

i have a question i want to setup a unix server and 2000 server with an xp client i want to run bind can i still setup a primary dns on the 2000 box or can u use secondary dns on 2000 also i want to setup an exchange server on the 2000 server for email between the windows machines? basically i... (2 Replies)
Discussion started by: rmuhammad
2 Replies

7. Cybersecurity

permissions and security with windows 2000 server

I setup a Windows 2000 Server so that a G4 could access one specific folder. The only way this contact could take place between the two operating systems is with Maclan. I have not installed it with the PCmaclan currently, I have only been reading about it. Can someone assist me with this... (0 Replies)
Discussion started by: pmoncriffe
0 Replies

8. UNIX for Dummies Questions & Answers

Sco openserver and Windows 2000 server

Hi, i have 4 Unix Sco openservers, 4PCs running windows 2000, and 1 PC with windows server which i want to configure in the same network. During the configuration procedure, the wizard of Windows 2000 SERVER ask you if this is the only server in the network, now it will be the only WINDOWS... (2 Replies)
Discussion started by: BAM
2 Replies

9. UNIX for Advanced & Expert Users

Unix with Windows 2000

Hey! I have just acquired a Unisys SMP6400 server. It has Unix already installed. It has 2 disk drives: 1 is 2 gig with Unix setup on it. The 2nd drive is 8 gig with apps. Both drives are under Mylex DAC960 raid control. Here is my question, can I install Windows 2000 Pro on this machine either... (11 Replies)
Discussion started by: mastermold
11 Replies
Login or Register to Ask a Question