Configuring X11 forwarding with HP-UX

December 9th, 2009   Filed Under General, HP-UX, Ssh, X11  

# vi /opt/ssh/etc/sshd_config
and make sure "X11Forwarding yes" is uncommented. If you made a change to this file, restart the daemon:
# /sbin/init.d/secsh stop
# /sbin/init.d/secsh start

http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1092967

SSH AllowUsers

August 7th, 2009   Filed Under General, Ssh  

 # This is ssh server systemwide configuration file.

          Port 22
          ListenAddress 192.168.1.1
          HostKey /etc/ssh/ssh_host_key
          ServerKeyBits 1024
          LoginGraceTime 600
          KeyRegenerationInterval 3600
          PermitRootLogin no
          IgnoreRhosts yes
          IgnoreUserKnownHosts yes
          StrictModes yes
          X11Forwarding no
          PrintMotd yes
          SyslogFacility AUTH
          LogLevel INFO
          RhostsAuthentication no
          RhostsRSAAuthentication no
          RSAAuthentication yes
          PasswordAuthentication yes
          PermitEmptyPasswords no
          AllowUsers admin

 AllowUsers admin

    The option AllowUsers specifies and controls which users can access ssh services. Multiple users can be specified, separated by spaces.

Configure the /etc/ssh/sshd_config file

Chrooted SSH/SFTP Tutorial

March 19th, 2009   Filed Under General, Ssh  

Chrooted SSH/SFTP Tutorial (Debian Lenny) | HowtoForge – Linux Howtos and Tutorials