Sponsored Content
Operating Systems Solaris Specifying network configuration info Post 302069681 by FredSmith on Tuesday 28th of March 2006 11:25:33 AM
Old 03-28-2006
Specifying network configuration info

Can someone please point me in the correct direction of where I configure the network information on SunOS 5.8 server? (Searching SunSolve and Google have resulted in thousands of fixes for potential errors, but I can't find the general instructions, etc. for starting the process).

Thanks!
 

10 More Discussions You Might Find Interesting

1. HP-UX

HP-UX Network Configuration

Hi, I have installed a HP-UX B.11.00 U 9000/800 Server in one of the domain. And I'm also able to telnet/ping into this server from systems in the same domain. But I'm not able to telnet/ping into this server from a different domain. So, what shoud need to do to achieve this... (6 Replies)
Discussion started by: S.Vishwanath
6 Replies

2. Solaris

network configuration

hi again... i configured my network settings sometiime ago using the sys-unconfig command.the active link was rtls0. there was some problem with the network so i changed the ISP. now when im trying to reconfigure the system wit sys-unconfig, it tries to configure the network on rtls1 (and shows... (1 Reply)
Discussion started by: strider
1 Replies

3. Linux

Get info on network interface

Hello everybody, How can link network interface to the output of lspci -vv. Basicly i need to know who is the manufacturer of a specific interface, for example eth0 {Is it an Intel, or Broadcome, or something else}. Is there a way to find that out? Thanx (5 Replies)
Discussion started by: aleksey
5 Replies

4. AIX

change network info

hi all, how do i change the routing info and make sure i will be able to connect remotely? any ideas please? thanks in advance. (1 Reply)
Discussion started by: itik
1 Replies

5. SCO

Network Configuration

I have a SCO 5.07 Server and I am trying to get it on my network. I have edited the /etc/hosts file and /etc/rc2.d/s99route . I has connectivity on the NIC card but not sure if I am forgetting another file. Thanks! (2 Replies)
Discussion started by: andrewd
2 Replies

6. UNIX for Dummies Questions & Answers

network configuration

I am using solaris 10, my internet works alright but each time i reboot i keep loosing my connection. I will have to use the ifconfig iprb0 192.168.1.xx netmask 255.255.255.0 up and Route add default 192.168.1.xxx command to gain back my internet. I know there is a better way of addressing... (1 Reply)
Discussion started by: seyiisq
1 Replies

7. Solaris

Network configuration

Hi I have installed Solaris 5.10 on Intel x86 machine (standalone). I want to access internet through solaris. How should I configure the network? Is static IP or DHCP advisable? (5 Replies)
Discussion started by: johnl
5 Replies

8. UNIX and Linux Applications

kde network info app

In gnome there was an indicator applet that displayed your ip address, subnet mask, gateway, and dns. Is there a similar applet in kde? (0 Replies)
Discussion started by: cokedude
0 Replies

9. UNIX for Advanced & Expert Users

Show all network info

Is there a command that display all network info. I'm looking for ip address, subnet mask, gateway, and dns. If there isn't a single command could someone please write me a shellscript that can do this? (8 Replies)
Discussion started by: cokedude
8 Replies

10. UNIX for Dummies Questions & Answers

Need network info of servers

Hi, Need to Collect IP Details in the following format ServerName ; IPADDR1 ; NETMASK1 ; IPADDR2 ; NETMASK2 ; IPADDR3 ; NETMASK3 ; Could you please give me the suggesstions. Thanks (1 Reply)
Discussion started by: rajasekg
1 Replies
SbLine(3)							       Coin								 SbLine(3)

NAME
SbLine - The SbLine class represents a line in 3D space. SbLine provides a way of specifying a directed line, through a 3D point (origin) and a vector direction in 3D space. SYNOPSIS
#include <Inventor/SbLinear.h> Public Member Functions SbLine (void) SbLine (const SbVec3f &origin, const SbVec3f &point) void setValue (const SbVec3f &origin, const SbVec3f &point) SbBool getClosestPoints (const SbLine &line2, SbVec3f &ptOnThis, SbVec3f &ptOnLine2) const SbVec3f getClosestPoint (const SbVec3f &point) const const SbVec3f & getPosition (void) const const SbVec3f & getDirection (void) const void print (FILE *file) const Detailed Description The SbLine class represents a line in 3D space. SbLine provides a way of specifying a directed line, through a 3D point (origin) and a vector direction in 3D space. It is context dependent whether or not an SbLine is considered as a ray extending from the starting point in only one direction, or as a line intersecting the origin point and extending infinitely from it in both directions. SbLine is used by many other classes in Coin. See also: SbVec3f Constructor &; Destructor Documentation SbLine::SbLine (void) The default constructor does nothing. The line will be uninitialized until the first assignment or setValue() call. SbLine::SbLine (const SbVec3f &origin, const SbVec3f &point) Constructor with origin specifying the line origin point, and point specifying another point on the line that is used to determine the line's direction. point should not be the same as origin, as this will lead to the line having a null vector as the direction vector. This will cause division by zero problems in some of the other methods on this class. Be aware that the direction vector will be normalized and not be the same as point - origin. See also: setValue, getOrigin, getDirection Member Function Documentation void SbLine::setValue (const SbVec3f &origin, const SbVec3f &point) Set new position and direction of the line by specifying line origin and another point on the line that is used to determine the line's direction. point should not be the same as origin, as this will lead to having a null vector as the direction vector. This will cause division by zero problems in some of the other methods on this class. Be aware that the direction vector will be normalized and not be the same as point - origin. See also: setValue, getOrigin, getDirection SbBool SbLine::getClosestPoints (const SbLine &line2, SbVec3f &ptOnThis, SbVec3f &ptOnLine2) const Returns the two closest points on the lines. If the lines are parallel, all points are equally close and we return FALSE. If the lines are not parallel, the point positions will be stored in ptOnThis and ptOnLine2, and we'll return TRUE. Note that both SbLine instances are considered to be infinite in both directions from their definition points, as far as this function is concerned. See also: getClosestPoint(). SbVec3f SbLine::getClosestPoint (const SbVec3f &point) const Returns the point on the line which is closest to point: _ Q D SP x-----x-------> | | | | x P P = argument point _ SP = line starting point, and D = line direction of this line Q = point to find and return from function.fi The vector defined by point and the returned point will be normal to the line. Note that the SbLine instance is considered to be infinite in both directions from its definition point, as far as this function is concerned. See also: getClosestPoints(). const SbVec3f & SbLine::getPosition (void) const Return a vector representing the origin point on the line. See also: setValue const SbVec3f & SbLine::getDirection (void) const Return a vector representing the direction of the line. The direction vector will always be normalized. void SbLine::print (FILE *fp) const Dump the state of this object to the file stream. Only works in debug version of library, method does nothing in an optimized compile. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SbLine(3)
All times are GMT -4. The time now is 09:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy