- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- network connection printer down
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
05-20-2002 02:00 AM
05-20-2002 02:00 AM
network connection printer down
They can only use the network printer. The network printer can still be used if the connection printer down happens.
If we do a lpstat -t command there will be a lot of connection printer down message appear. For the remote printer we use the omniprint software at the client side. If we ping to the remote printer the network is still alive. When we check using the command below:
# netstat -an|grep FIN_WAIT_2|wc -l
The figure will be around 499. This is what we notice. If it is less than 499 the connection printer down won't happen.
Appreciate your help on the above problem.
Thanks for helping.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 02:11 AM
05-20-2002 02:11 AM
Re: network connection printer down
Our network was shared with Novell Netware. Novell has the worst "noise" on a network.
The fix was to configure switches not to allow SNMP from Novell servers (unless they are print servers). Later we separated Novell and UNIX on the network. The UNIX network (HP, SUN, Digital, Linux, SCO) runs at least twice the speed of the Novell one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 02:13 AM
05-20-2002 02:13 AM
Re: network connection printer down
Cheers
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 02:13 AM
05-20-2002 02:13 AM
Re: network connection printer down
Once this first FIN_ACK is received, the system will shut more of the connection down and just before everything closes, it will send a second FIN packet to the other side and wait for another FIN_ACK. While waiting, connections will be reported in the FIN_WAIT_2 state. In either of these state, nothing can be done to the connection. By default, the system will wait indefinitely for the FIN_ACKs because it wants to ensure that the other side of the connection closes cleanly.
So, you need to modify some TCP settings in order to get around the large number of FIN_WAIT_2 connections you have. Heres what to add into your /etc/rc.config.d/nddconf file;
TRANSPORT_NAME[0]=tcp
NDD_NAME[0]=tcp_ip_abort_interval
NDD_VALUE[0]=30000
TRANSPORT_NAME[1]=tcp
NDD_NAME[1]=tcp_ip_abort_cinterval
NDD_VALUE[1]=15000
TRANSPORT_NAME[2]=tcp
NDD_NAME[2]=tcp_fin_wait_2_timeout
NDD_VALUE[2]=15000
Add these to the nddconf file, reboot, and now you shouldnt get anywhere as many FIN_WAIT_2 connections.
There is also a script to kill sockets stuck in FIN_WAIT_2 but its possibly risky and its much better to prevent them in the first place than kill them once theyre created.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2002 02:10 PM
05-20-2002 02:10 PM
Re: network connection printer down
Ron