Sponsored Content
Full Discussion: M5000 Xscf
Special Forums IP Networking M5000 Xscf Post 303005991 by rrodgers on Wednesday 25th of October 2017 02:24:56 PM
Old 10-25-2017
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 look for, that I hmay ave missed before I have to drive to the server, its quite far. I may have to trace cables, ports etc...

nic is up
can ping the gateway on the sub net, but being a console port, it doesn't show up in the OS.
any ideas would be much appreciated.
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. Solaris

Sun M5000, xscf showdevices questions

Hi, I've configured this Sun M5000 to use two system domains (added a second domain to it). The following is the info about the settings. The showdevices command can't show devices on domain 1 because Solaris is not loaded on it yet. My question: How can I confirm the hardware devices such as... (5 Replies)
Discussion started by: aixlover
5 Replies

6. 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

7. Solaris

M5000 XSCF Console disconnecting when putty session is closed

Hi, I would appreciate some help. I remotely access, across a VPN, an M5000 and when I connect to the XSCF I can then access the OS using console -d0 and then I can get to the console. The problem I have is that I need to run something which will take many hours and I can't run it in the... (6 Replies)
Discussion started by: giles.cardew
6 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

M5000 XSCF upgrade, query about OBP

Hi, I'm planning to upgrade the XSCF firmware on an M5000, and have a question regarding the OBP part of the upgrade. At the moment, the system looks like this: XCP0 (Current): 1100 OpenBoot PROM : 02.18.0000 XSCF : 01.10.0000 root@server01 # /usr/sbin/prtconf -V OBP 4.24.15... (3 Replies)
Discussion started by: badoshi
3 Replies

10. Solaris

XSCF, SP and Dscp - confused.

Hi all, I understand SP is a separate processor use for management purposes. I understand XSCF is the management facility (similar to IDRAC, ILOM etc). I understand that we can create multiple domains in a SPARC machine (something like VM) and we can install OS in it. I am able to use... (4 Replies)
Discussion started by: javanoob
4 Replies
ssh-http-proxy-connect(1)					   User Commands					 ssh-http-proxy-connect(1)

NAME
ssh-http-proxy-connect - Secure Shell proxy for HTTP SYNOPSIS
/usr/lib/ssh/ssh-http-proxy-connect [-h http_proxy_host] [-p http_proxy_port] connect_host connect_port DESCRIPTION
A proxy command for ssh(1) that uses HTTP CONNECT. Typical use is where connections external to a network are only allowed via a proxy web server. OPTIONS
The following options are supported: -h http_proxy_host Specifies the proxy web server through which to connect. Overrides the HTTPPROXY and http_proxy environment variables if they are set. -p http_proxy_port Specifies the port on which the proxy web server runs. If not specified, port 80 is assumed. Overrides the HTTPPROXY- PORT and http_proxy environment variables if they are set. OPERANDS
The following operands are supported: http_proxy_host The host name or IP address (IPv4 or IPv6) of the proxy. http_proxy_port The numeric port number to connect to on http_proxy_host. connect_host The name of the remote host to which the proxy web server is to connect you. connect_port The numeric port number of the proxy web server to connect you to on http_proxy_host. EXAMPLES
The recommended way to use a proxy connection command is to configure the ProxyCommand in ssh_config(4) (see Example 1 and Example 2). Example 3 shows how the proxy command can be specified on the command line when running ssh(1). Example 1 Setting the proxy from the environment The following example uses ssh-http-proxy-connect in ssh_config(4) when the proxy is set from the environment: Host playtime.foo.com ProxyCommand /usr/lib/ssh/ssh-http-proxy-connect playtime.foo.com 22 Example 2 Overriding proxy environment variables The following example uses ssh-http-proxy-connect in ssh_config(4) to override (or if not set) proxy environment variables: Host playtime.foo.com ProxyCommand /usr/lib/ssh/ssh-http-proxy-connect -h webcache -p 8080 playtime.foo.com 22 Example 3 Using the command line The following example uses ssh-http-proxy-connect from the ssh(1) command line: example$ ssh -o'ProxyCommand="/usr/lib/ssh/ssh-http-proxy-connect -h webcache -p 8080 playtime.foo.com 22"' playtime.foo.com ENVIRONMENT VARIABLES
HTTPPROXY Takes the http_proxy_host operand to specify the default proxy host. Overrides http_proxy if both are set. HTTPPROXYPORT Takes the http_proxy_port operand to specify the default proxy port. Ignored if HTTPPROXY is not set. http_proxy URL format for specifying proxy host and port. EXIT STATUS
The following exit values are returned: 0 Successful completion. 1 An error occurred. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWsshu | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ SEE ALSO
ssh(1), ssh-socks5-proxy-connect(1), ssh_config(4), attributes(5) SunOS 5.11 24 Oct 2001 ssh-http-proxy-connect(1)
All times are GMT -4. The time now is 10:27 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy