Sponsored Content
Top Forums UNIX for Dummies Questions & Answers networking solaris8 with windows2000 Post 3420 by scotte on Sunday 1st of July 2001 04:15:30 PM
Old 07-01-2001
networking solaris8 with windows2000

I am a real newbie to linux/unix and need alot of help. I have been trying to find through books and internet , how to change the network properties(ip address,subnet mask, protocols,ect..)But I cant seem to find out how.Also do I need to install samba to network to other windows machines on a peer to peer windows 2000 network.
Thanks to all replies,
Scotte
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

NFS and windows2000 Server

Hello, We use an WIN2000 NT Server and some Unix (Scitex Brisque) in our prepress network. We want to create a folder onto the unix machine which is visible for the NTServer. The nfs apllication is Disk Acces. The people at scitex told me to that I'd to make an export folder so the unix... (3 Replies)
Discussion started by: Vanstraelen
3 Replies

2. UNIX for Dummies Questions & Answers

downloaded solaris8

i have downloaded 3 zipped solaris ver 8 07/01 installation cd and i want to ask this question: 1. what will i do to burn it? do i need to extract the file and then burn it? what? Note: Those zipped files have only one file each and it has more than 100mb plus. (6 Replies)
Discussion started by: rodelu
6 Replies

3. UNIX for Dummies Questions & Answers

linux and windows2000

I have successfully installed Slackware 8.0 on a disk and Windows 2000 on the other. The win-disk being the master and linux-disk the slave. I do multi booting via LILO and everything works great. But recently I've decided to remove the harddrive with linux on and put it in another computer.... (6 Replies)
Discussion started by: J.P
6 Replies

4. UNIX for Dummies Questions & Answers

A problme about solaris8

Hello,I have a problme when log on Solaris 8 ,screen show"DT information system do not startup".what's this.how to do it? thankx. (3 Replies)
Discussion started by: Yeliu
3 Replies

5. UNIX Desktop Questions & Answers

is there any problem that install windows2000 and unix on one computer

I want to know if there is any problem that install windows2000 and unix or linux on same computer.I partition my harddisk to 4, 3 of 4 are NTFS, 1 is FAT32, I want to install unix or linux on this partition.how should I do??? (6 Replies)
Discussion started by: sw_water
6 Replies

6. UNIX for Dummies Questions & Answers

about grep on solaris8

there is -r switch for grep in linux, but in solaris 8, I found it doesn't support it. But I really need this function to rescue my sub-directories, so anybody can help me?thanks!! (2 Replies)
Discussion started by: cooldown
2 Replies

7. Solaris

Solaris8

What is the max file system that I can create. Is the max 2TB? I trying to connect a iscsi device and Solaris can only see 999 GB. Do I have to change sector size? (2 Replies)
Discussion started by: kmcguinn71
2 Replies

8. Linux

ftp problem from linux to windows2000 server

Hi All, I was trying to ftp multiple files from my windows to my linux box, everything gets transfered but unfortunately some of them are corrupted. I found out that some of the files are in Ascii and some are binary, but since most of the files I'm trying to send are Ascii...the big ones... (2 Replies)
Discussion started by: 3rr0r_3rr0r
2 Replies

9. UNIX for Dummies Questions & Answers

.profile in solaris8

question: why is that when I created a user under solaris8, i got two lines before the login.. sample: login as: user1 user1@1.1.1.1's password: Last login: Fri Feb 25 17:00:52 2011 from 12.0.0.5 Sun Microsystems Inc. SunOS 5.8 Generic February 2000 Sun Microsystems Inc. SunOS... (0 Replies)
Discussion started by: lhareigh890
0 Replies

10. Solaris

Solaris10 and Windows2000 authentication.

Only for testing/learning I have setup a windows 2000 server with active directory I connect to it a Solaris 10 machine "client". I want Solaris10 take users from AD I have follow this guide.. a)Setup active directory environment+services for UNIX OK b)I have created two users,one for... (2 Replies)
Discussion started by: Linusolaradm1
2 Replies
veth(4) 						     Linux Programmer's Manual							   veth(4)

NAME
veth - Virtual Ethernet Device DESCRIPTION
The veth devices are virtual Ethernet devices. They can act as tunnels between network namespaces to create a bridge to a physical network device in another namespace, but can also be used as standalone network devices. veth devices are always created in interconnected pairs. A pair can be created using the command: # ip link add <p1-name> type veth peer name <p2-name> In the above, p1-name and p2-name are the names assigned to the two connected end points. Packets transmitted on one device in the pair are immediately received on the other device. When either devices is down the link state of the pair is down. veth device pairs are useful for combining the network facilities of the kernel together in interesting ways. A particularly interesting use case is to place one end of a veth pair in one network namespace and the other end in another network namespace, thus allowing communi- cation between network namespaces. To do this, one first creates the veth device as above and then moves one side of the pair to the other namespace: # ip link set <p2-name> netns <p2-namespace> ethtool(8) can be used to find the peer of a veth network interface, using commands something like: # ip link add ve_A type veth peer name ve_B # Create veth pair # ethtool -S ve_A # Discover interface index of peer NIC statistics: peer_ifindex: 16 # ip link | grep '^16:' # Look up interface 16: ve_B@ve_A: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc ... SEE ALSO
clone(2), network_namespaces(7), ip(8), ip-link(8), ip-netns(8) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2018-02-02 veth(4)
All times are GMT -4. The time now is 06:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy