- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't assign requested address
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
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
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-22-2011 05:46 AM
08-22-2011 05:46 AM
Can't assign requested address
Hi,
when i try to ssh any server i facing this message and can't login to server
# ssh 192.168.1.5
ssh: connect to host 192.168.1.5 port 22: Can't assign requested address
#
and i trying that on ip's on the same subnet or vlan, and same issue.
other servers are working fine.
and also i can ssh to this server direct or from other servers and i can ping, traceroute or nslookup to any ip.
i don't know what is the cause of this issue. all configuration it's ok (gateway and .......)
the firewall team are not find any traffic from my system
please i need your support
Thanks
- Tags:
- ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2011 07:47 AM
08-22-2011 07:47 AM
Re: Can't assign requested address
Hi,
please your support.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2011 02:22 PM
08-22-2011 02:22 PM
Re: Can't assign requested address
Usually this happens when there is no anonymous port available anymore, because for instance of
sockets which had not been closed by an application.
This problem is almost everytime due to an other application problem which don't close sockets
On 11.31, if not with last xport patch, when a connection is reset by peer, it comes back to BOUND state, which can cause anonymous port starvation if an application don't close reset socket, or socket in FINWAIT2 state.
with netstat -an check if there is any port avaliable larger than 49192 ( tcp_smallest_anon_port)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2011 11:32 PM - edited 08-22-2011 11:54 PM
08-22-2011 11:32 PM - edited 08-22-2011 11:54 PM
Re: Can't assign requested address
Hi,
this is all port with CLOSE_WAIT and FIN_WAIT_2 state and larger than 49192. what can i do now.
please find the attached file.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2011 11:25 PM
09-13-2011 11:25 PM
Re: Can't assign requested address
1) find what process doesn't close the CLOSE_WAIT sockets if not using half closed sockets.
and have it fixed (or restart it)
2) is just a workaround, change ndd param tcp_smallest_anon_port to 32768 ( you can put less with cautions
to be sure none of your application will bind in the range
1) is the solution
2) is a workaround