- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ports and protocol for
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
08-07-2009 06:46 AM
08-07-2009 06:46 AM
I do not believe the phcb1cnb will need to respond to the phcb1cne.
What port(s) do I need to open on which server(s) to make this work? Also what protocol is remsh? UPD? TCP? Both? Something else?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 07:03 AM
08-07-2009 07:03 AM
SolutionBy default all the unsecure ports will be blocked at firewall. If you need only remsh port to be opened on firewall, ask them to open 514.
remsh uses the port number 514. You can also check in /etc/services file to find if the port is enabled on servers.
#grep 514 /etc/services
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 07:35 AM
08-07-2009 07:35 AM
Re: ports and protocol for
shell 514/tcp cmd # remote command, no passwd use
looks like I am all set.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 08:08 AM
08-07-2009 08:08 AM
Re: ports and protocol for
Yes. From server side remsh port is open. And it should be opened at firewall as well if there is a firewall between the servers.
To confirm if the port is opened on all the places, use this command,
#telnet
Trying...
Connected to
Escape character is '^]'.
Connection closed by foreign host.
If you get the message like above you are through.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 08:56 AM
08-07-2009 08:56 AM
Re: ports and protocol for
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 10:39 AM
08-07-2009 10:39 AM
Re: ports and protocol for
In this day and age of cybercrime using unencrypted protocals should be detered.
using ssh (port 20) would help thwart the criminals.. the more fences put up the more likely they would move on to somewhere else.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 10:49 AM
08-07-2009 10:49 AM
Re: ports and protocol for
Thanks for the words of advice. I will encourage my customer to re-architect their failover solution to not rely on remsh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 10:49 AM
08-07-2009 10:49 AM
Re: ports and protocol for
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 11:43 AM
08-07-2009 11:43 AM
Re: ports and protocol for
Would tend to confuse people, because port
20 is normally used for FTP. Port 22 is more
common for SSH (although security fanatics
often suggest using some other port for it,
to evade common attacks on port 22).
http://www.iana.org/assignments/port-numbers
Note also that port 514 (shell) may be used
for rsh/remsh with a command, while port 513
(login) may be used for rsh/remsh for an
interactive session (without a command).
That is, for example,
remsh host
and
remsh host 'sleep 30'
don't use the same port.
"netstat -an" can be helpful when exploring
in this region.