ChinaUnix.net
相关文章推荐:

ssh配置信任转发

大家好: 在安装VCS的时候,总是提示我2台SUN机器间ssh登陆需要输入密码. 但是rlogin和rsh都没有问题. 请指点下具体这些配置.希望能详细点. 谢谢

by yuxz9805109 - Solaris - 2007-08-30 11:42:06 阅读(2782) 回复(2)

相关讨论

ssh的三个强大的端口转发命令: [color="#000000"]QUOTE: ssh -C -f -N -g -L listen_port:DST_Host:DST_port user@Tunnel_Host ssh -C -f -N -g -R listen_port:DST_Host:DST_port user@Tunnel_Host ssh -C -f -N -g -D listen_port user@Tunnel_Host -f Fork into background after authentication. 后台认证用户/密码,通常和-N连用,不用登录到远程主机。 -p port Connect to this port. Server must be ...

by lsstarboy - 网络技术文档中心 - 2009-01-14 22:29:27 阅读(1210) 回复(0)

我从 local 的 A(192.192.192.192)机器无法 telnet 远程的 C(10.10.10.10)机器,现在通过 B(20.20.20.20)机器作端口转发,如下: 终端1: A# ssh -v -g -L 9000:10.10.10.10:9000 -l root 20.20.20.20 终端2: A# telnet localhost 9000 这样我就现实了从A到C的telnet. 但我想从A ssh到C,如下: 终端1: A# ssh -v -g -L 9000:10.10.10.10:9000 -l root 20.20.20.20 终端2: A# ssh -l user localhost -p 9000 出问题了, 终端2挂在那里,没...

by anvizh - 网络技术 - 2008-10-21 09:38:44 阅读(1675) 回复(1)

比如192.168.0.1这台服务器只开了22这个端口,而且我想通过ssh来远程管理192.168.0.1这台服务器的图形界面 ssh -L 3389:192.168.0.1:3389 username@192.16.0.1 命令是这样吧

by hnchina - 内核/嵌入技术 - 2005-06-17 00:30:45 阅读(855) 回复(1)

本文中ssh指:struts2,srping2.5,hibernate3.2 struts2必须JAR包(6个): struts2-spring-plugin-2.0.11.2.jar xwork-2.0.5.jar struts2-core-2.0.11.2.jar freemarker-2.3.8.jar ognl-2.6.11.jar commons-logging-1.0.4.jar(与hibernate3.2必须JAR包重复,取一个既可) hibernate3.2必须JAR包(8个): antlr-2.7.6.jar commons-collections-2.1.1.jar commons-logging-1.0.4.jar dom4j-1.6.1.jar ehcac...

by soranokiseki - Java文档中心 - 2009-04-28 13:42:31 阅读(2149) 回复(0)

各位好,单位里的server是在NIS控制下,个别人可以用ssh登录所有NIS控制的server中,即用户名和密码由NIS统一控制。现在想让另外一个人从一台server 上登录到一台workstation(Solaris系统),请问应该怎么配置ssh

by shot - Solaris - 2008-09-01 12:12:22 阅读(1419) 回复(1)

为了配置ssh来访问PIX,我们需要完成两组独立服务。 ·配置PIX来接受ssh连接。 ·配制我们的ssh客户端来连接到PIX。 1.下边开始配置PIX来接受ssh连接 pixfirewall(config)#hostname 21vianet 21vianet (config)#domain-name 21vianet.com 为PIX分配主机名和域名。要想产生RSA密钥集,这是必需的。 21vianet (config)#ca generate rsa key 2048 ca zeroize rsa 清空以前配置 产生一对RSA密钥,并且存到FLASH里。 21vianet (config...

网络管理

by 剑心通明 - 网络技术文档中心 - 2008-05-21 18:03:19 阅读(900) 回复(0)

ssh是FreeBSD的远程控制,如何配置呢?看看这个! [separator] 首先vi编辑/etc/inetd.conf,去掉ssh前的#,保存退出 编辑/etc/rc.conf 最后加入:sshd_enable="yes"即可 激活sshd服务: techo#/etc/rc.d/sshd start 用下面命令检查服务是否启动,在22端口应该有监听。 #netstat -an ## check port number 22 最后 vi /etc/ssh/sshd_config, 下面是我的配置文件:(/etc/ssh/sshd_config) ###########################################...

by gslsok - BSD文档中心 - 2008-04-15 11:32:17 阅读(1198) 回复(0)

ssh Server Configuration: Router(config)# hostname ssn ssn(config)# ip domain-name ssn.com ssn(config)# crypto key generate rsa The name for the keys will be: ssn.ssn.com Choose the size of the key modulus in the range of 360 to 2048 for your General Purpose Keys. Choosing a key modulus greater than 512 may take a few minutes. How many bits in the modulus [512]: 1024 % Generati...

网络管理

by sense5 - 网络技术文档中心 - 2007-11-19 11:48:46 阅读(831) 回复(0)

首先vi编辑/etc/inetd.conf,去掉ssh前的#,保存退出 编辑/etc/rc.conf 最后加入:sshd_enable="yes"即可 激活sshd服务: techo#/etc/rc.d/sshd start 用下面命令检查服务是否启动,在22端口应该有监听。 #netstat -an ## check port number 22 最后 vi /etc/ssh/sshd_config, 下面是我的配置文件:(/etc/ssh/sshd_config) #################################################### # $OpenBSD: sshd_config,v 1.72 2005/07/25 11:59:...

by tomcent_2006 - BSD文档中心 - 2007-03-26 19:48:50 阅读(846) 回复(0)

为了配置ssh来访问PIX,我们需要完成两组独立服务。 •配置PIX来接受ssh连接。 •配制我们的ssh客户端来连接到PIX。 1.下边开始配置PIX来接受ssh连接 pixfirewall(config)#hostname 21vianet 21vianet (config)#domain-name 21vianet.com 为PIX分配主机名和域名。要想产生RSA密钥集,这是必需的。 21vianet (config)#ca generate rsa key 2048 ca zeroize rsa 清空以前配置 产生一对RSA密钥,并且存到FLASH里。 21viane...

网络管理

by zqli - 网络技术 - 2006-11-01 16:01:33 阅读(1245) 回复(0)