- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS: Which Protocol?
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
06-18-2003 09:14 PM
06-18-2003 09:14 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 09:19 PM
06-18-2003 09:19 PM
Re: NFS: Which Protocol?
# netstat -a ,
# rpcinfo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 09:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 09:43 PM
06-18-2003 09:43 PM
Re: NFS: Which Protocol?
You can get the info from
#rpcinfo -m
#nfsstat -n
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 03:18 AM
06-19-2003 03:18 AM
Re: NFS: Which Protocol?
Use $ nfsstat .
Lior./
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 05:58 AM
06-19-2003 05:58 AM
Re: NFS: Which Protocol?
On 11.11 both TCP and UDP are enabled on the server side. When an 11.11 client
mounts without any mount options specified, it will mount using the TCP
protocol. This is the default. The only way to have an 11.11 client mount
using the UDP protocol is to use the -o proto=udp mount option on the
mount command. Also, if TCP is simply not available on the server side, then
the mount will automatically fallback to UDP.
Note: The NFS_TCP variable in the /etc/rc.config.d/nfsconf file does not exist
any more on 11.11 since both protocols are built into the ONC product.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 10:54 AM
06-19-2003 10:54 AM
Re: NFS: Which Protocol?
The thing that TCP gets you that UDP does not only comes into play if you are losing NFS packets due to network instability. This is usually only a problem over WANs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2003 12:52 PM
06-19-2003 12:52 PM
Re: NFS: Which Protocol?
Check this commands:
nfsstat (will show nfs status)
netstat (will show info about connections)
Caesar