Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2005 06:39 PM
03-06-2005 06:39 PM
ssh
Do we have any file on HP-UX to restrict ssh logins from specific IP's like we have /var/adm/inetd.sec file for telnet & ftp.
Also I want to know how to enable ssh on linux server. SSH is already installed on linux server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2005 07:38 PM
03-06-2005 07:38 PM
Re: ssh
Take a look at:
/etc/ssh/sshd_config
or
/etc/ssh2/sshd2_config
there is the following line within this configuration file:
AllowHosts 10.*, 193.128.202.*
(you can specify your required IPs here).
I'll try and get back to you on the Linux question....
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2005 07:43 PM
03-06-2005 07:43 PM
Re: ssh
/etc/init.d/sshd start
do you see the process running when you do
ps -ef | grep ssh
If so, you will only need to change configuration (if required) in the /etc/ssh directory and add a start link in /etc/rc3.d (for example):
ln -s /etc/init.d/sshd /etc/rc3.d/S999ssh
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2005 10:17 PM
03-06-2005 10:17 PM
Re: ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2005 11:38 PM
03-07-2005 11:38 PM
Re: ssh
you get TCP Wrapper functionality.
See the sshd man page:
/etc/hosts.allow, /etc/hosts.deny
Access controls that should be enforced by tcp-wrappers are
defined here. Further details are described in hosts_access(5).
Hope this helps.
Armin
PS: Please assign points for answers!