- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: unable to telnet or ping to server
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
Discussions
Discussions
Discussions
Forums
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
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
тАО12-29-2008 01:54 PM
тАО12-29-2008 01:54 PM
HP-UX - B.11.31 U ia64 2066127389 unlimited-user license ia64 hp server rx7640
####################################
Hello All,
I'm trying to figure out where on my system the security is set up to prevent telnet & ping from outside? We do utilize "ssh" to access the server. I attenpted to look in "/opt/ssh/etc/sshd_config" for answers, but nothing looked to be the problem. I can telnet or ping from within the server, but not from another server to my server.
#######################
root@vlupolicyp[/opt/ssh/etc]
# ps -aef | grep ssh
root 1607 1 0 Dec 22 ? 0:00 /opt/ssh/sbin/sshd
##############################
Does anyone have any thoughts?
I tried to look at places like :
/var/adm/inetd.sec
/etc/inetd.conf
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 02:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 02:13 PM
тАО12-29-2008 02:13 PM
Re: unable to telnet or ping to server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 02:23 PM
тАО12-29-2008 02:23 PM
Re: unable to telnet or ping to server
root[/etc/default]
# egrep -i "ping|telnet" /etc/default/security
root[/etc/default]
# egrep -i "ping|telnet" /etc/services
telnet 23/tcp # Virtual Terminal Protocol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 04:29 PM
тАО12-29-2008 04:29 PM
Re: unable to telnet or ping to server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 04:30 PM
тАО12-29-2008 04:30 PM
Re: unable to telnet or ping to server
IPFilter can be used to block all kinds of IP traffic: it's a kernel-level filter, so it can block traffic before any application can see it. It can also block ICMP (including pings) which is normally handled by the kernel only.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 06:28 PM
тАО12-29-2008 06:28 PM
Re: unable to telnet or ping to server
0.Looks like your TCP stack works well because you can ping yourself successfully.
1. Could you check your network traffic goes well with the "another" box?
2. Could you make sure only ssh/telnet/ping traffices are blocked?
3. Can you use some tools like tcpdump to capture the package.
4. You also can use "ssh -vvv" to print out more detailed story.
Hope this can help
-- Jerry Jiang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 06:35 PM
тАО12-29-2008 06:35 PM
Re: unable to telnet or ping to server
#################
root@
# /opt/ipf/bin/ipfilter -q
IPFilter Enabled
root@
# /opt/ipf/bin/ipfilter -d
IPFilter Disabled
*****
ping from outside server works now after ipfilter is disabled
*****
root@
# /opt/ipf/bin/ipfilter -e
Set 0 now inactive
Set 0 now inactive
0 entries flushed from NAT table
0 entries flushed from NAT list
IPFilter Enabled
#################
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-29-2008 10:04 PM
тАО12-29-2008 10:04 PM
Re: unable to telnet or ping to server
If you want to secure your servers to be accessed by using telnet, rlogin etc ...
Comment the entry of each unnecessary services:
#vi /etc/inetd.conf
and restore the internet deamon:
#inetd -c
regards.