Sponsored Content
Operating Systems Solaris XSCF, SP and Dscp - confused. Post 302964068 by DukeNuke2 on Saturday 9th of January 2016 04:47:43 PM
Old 01-09-2016
The DSCP network is a hardwired connection between the XSCF and the Solaris domain. If you do an ifconfig -a in Solaris you should be able to see the interface named sppp0.

Read here for some more informations:
https://blogs.oracle.com/olympus/entry/dscp

The two XCSF network interface are for external connections to two different subnets for management. With one XSCF there is no automatic failover between network interfaces. The larger systems have two XSCF with combined 4 interfaces in two different subnets, which can automaticly failover if one XSCF fails.

So:
- M3000, M4000 and M5000 -> One XSCF
- M8000 and M9000 -> Two XSCF

and all the newer M10-1, M10-4 and M10-4S only have one XSCF (build in) again with two network interfaces and an internal DSCP network.
This User Gave Thanks to DukeNuke2 For This Post:
 

10 More Discussions You Might Find Interesting

1. Solaris

Mx000 XSCF logging

is there a way to force an error on an xscf much the same way you can with logger on solaris 10? i would like to test and make sure setarchiving is appropriately configured. however, i do not want to just pull a power source as the system is in production. anyway have any insight? showarchiving... (0 Replies)
Discussion started by: pupp
0 Replies

2. Solaris

Service Mode on XSCF

While entering to service mode on XSCF i getting following error XSCF> service Account is not enabled for service mode. What could be the reason for this ? (5 Replies)
Discussion started by: fugitive
5 Replies

3. Solaris

M5000 servers - XSCF functions

Hi all A couple of new M5000 servers will be arriving soon and I need to work out how to configure the underlying domains. It will come with 4 x CPUS, 32 Gb of memory, 4 x HD, 2 x IOtrays. Reading the XSCF manual, I can configure the item into 2 domains, something about uni / quad xsb.... (9 Replies)
Discussion started by: sbk1972
9 Replies

4. IP Networking

TCP packet with RST flag not carrying DSCP

Hello, I'm having an issue with TCP sockets. When the TCP connection is terminated on one end, TCP packet with RST flag set is being sent to the sender. All the packets sent so far were carrying the DSCP 'AF21' set by me. But packet with RST flag is carrying DSCP '0'. Is this expected or... (0 Replies)
Discussion started by: Solace
0 Replies

5. Solaris

XSCF prompt disappeared, Sun M5000

Hi, I've got an issue here: After I logon to the xscf prompt of this Sun M5000 and did 'XSCF> version -c xcp', the xscf prompt disappeared. I can't get it back and can't log out. exit rebootxscf logout #. #> #> ~# ~# exit sendbreak exit I tried to set the Mode Switch to the service... (3 Replies)
Discussion started by: aixlover
3 Replies

6. Solaris

XSCF on M3000

Hi, I've updated a few M3000s to new firmware without any hassle, but on one of them the following is happening: XSCF> getflashimage -u wayner ftp://10.16.122.200/tftpboot/IKXCP1102.tar.gz Error: insufficient free space Any idea how to delete whatever old firmware is on there so I can... (7 Replies)
Discussion started by: cabaiste
7 Replies

7. Emergency UNIX and Linux Support

Change username in XSCF

Hi All, I have SPARC T4-4 connected with XSCF console. By mistake console user name is set to "root" instead of "sunadmin" (This is what we keep as standard). How can I change it ? Please help me -> show /SP/users/root /SP/users/root Targets: ssh Properties: role... (1 Reply)
Discussion started by: solaris_1977
1 Replies

8. Solaris

Mounting USB in XSCF on M5000

Trying to update my M5000 firmware. trying to mount my USB to upload firmware and getting the following message. XSCF> getflashimage -v file:///media/usb_msd/FFXCP1115.tar.gz Free space: 97MB Making sure mount point is clear umount: /media/usb_msd is not mounted (according to mtab) Trying... (2 Replies)
Discussion started by: soupbone38
2 Replies

9. Solaris

How to Display M4000 XSCF IP from Solaris OS?

Hi All, I have an Oracle M4000 server with Solaris 10 OS. I have access to Solaris root prompt. But I don't know the XSCF IP of this server. Is there any way to display XSCF IP from Solaris OS? (2 Replies)
Discussion started by: byrusber
2 Replies

10. IP Networking

M5000 Xscf

I took over an M5000 and have a jumper server with a nic to connect to the console IP of an M5000. access via ssh user@ip. it was working fine, another person can connect remotely on the subnet, but when I ssh,it just hangs and then times out. so my question is, any ideas of what I might... (4 Replies)
Discussion started by: rrodgers
4 Replies
net_getlifaddr(9F)					   Kernel Functions for Drivers 					net_getlifaddr(9F)

NAME
net_getlifaddr - determine a network address for a given interface SYNOPSIS
#include <sys/neti.h> int net_getlifaddr(const net_data_t net, const phy_if_t ifp, const net_if_t lif, int const type, struct sockaddr* storage); INTERFACE LEVEL
Solaris DDI specific (Solaris DDI). PARAMETERS
net value returned from a successful call to net_protocol_lookup(9F). ifp value returned from a successful call to net_phylookup(9F) or net_phygetnext(9F), indicating which network interface the infor- mation should be returned from. lif indicates the logical interface from which to fetch the address. type indicates what type of address should be returned. See below for more details on this field. storage pointer to an area of memory to store the address data. DESCRIPTION
The net_getlifaddr() function retrieves the address information for each logical interface. Each call to net_getlifaddr() requires that the caller pass a pointer to an array of address information types to retrieve, and an accompanying pointer to an array of pointers to struct sockaddr structures to which to copy the address information. See net_lifgetnext(9F) for an example on how to use this function. Each member of the address type array should be one of the values listed here. NA_ADDRESS Return the network address associated with the logical interface (lif) that belongs to the network interface (ifp). NA_PEER Return the address assigned to the remote host for point to point network interfaces for the given network/logical inter- face. NA_BROADCAST Return the broadcast address assigned to the given network/logical interface for network interfaces that support broadcast packets. NA_NETMASK Return the netmask associated with the given network/logical interface for network interfaces that support broadcast pack- ets. RETURN VALUES
The net_getlifaddr() function returns: -1 The network protocol does not support this function. 0 Successful completion. 1 Unsuccessful. CONTEXT
The net_getifaddr() function may be called from user, kernel, or interrupt context. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ SEE ALSO
net_lifgetnext(9F), net_phylookup(9F), net_phygetnext(9F)net_protocol_lookup(9F) SunOS 5.11 13 Oct 2008 net_getlifaddr(9F)
All times are GMT -4. The time now is 08:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy