- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- question about nfs,linkloop,netstat.
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-11-2004 08:42 PM
08-11-2004 08:42 PM
1.i export /home on host1,how can i access it on a windows pc?
2.when i can ping a windows host,but use linkloop its mac address ,it did not display ok. why?
3.how can i clear "netstat 5 ",this command 's count information
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 08:46 PM
08-11-2004 08:46 PM
Re: question about nfs,linkloop,netstat.
02. Linkloop , I think you need to be on the same subnet to get an ok. ping packets are routeable but not the linkloop. I think man of linkloop should mention that.
03. netstat -z should clear the statistics...
hope this helps...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 09:17 PM
08-11-2004 09:17 PM
Solution2. Linkloop will check connectivity of machines with their physical which are in the same local area network.
If it is connected in the local network then get the mac address as said here,
http://www.dur.ac.uk/its/services/network/lan/mac/
And add 0x before it and remove - between bytes
3. We can not use netstat as like sar. It will update them in the same window.
And i hope there is no option as like netstat -z?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 10:03 PM
08-11-2004 10:03 PM
Re: question about nfs,linkloop,netstat.
but when linkloop 0x0002e35118be,
it reports:
error: get_msg2 getmsg failed,errno=4
--failed
frames sent :1
frames received correctly :0
reads that timed out :1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 10:37 PM
08-11-2004 10:37 PM
Re: question about nfs,linkloop,netstat.
You have to specify the ppa to be used, even if you hace just one.
Unfortunatly I have no HPUX under hand, but check
man linkloop
HTH,
Regards,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2004 12:05 PM
08-12-2004 12:05 PM
Re: question about nfs,linkloop,netstat.
there is no way to clear the netstat statistics (well, I suppose you could hunt all of them down in the kernel with /dev/kmem, but seriously, don't try to go there...) under HP-UX.
there is however, a nifty little utility written by a coworker. that utility is called "beforeafter" and it will take two files and "subtract" the first file from the second. I often use this to get netstat statistics over an interval as in:
$ netstat -p tcp > before;sleep 60;netstat-p tcp > after
$ beforeafter before after > delta
$ more delta
i have used it with netstat and lanadmin under UX, and even occasionally with netstat under linux - however, I believe (not sure) that beforeafter rather depends on the files being the same formats, and some linux distros have this annoying habit of not displaying certain netstat stats if they are zero, so you don't always have the same set of lines each time...
anyway... ftp://ftp.cup.hp.com/dist/networking/tools/
and it includes source. I suspect that with a bit of scripting, it could be used in something that ran continuously.
as for accessing files on the UX box from the PC - when you say export home thatimplies nfs, which means an NFS client for the PC. or you "export" it from the UX box via SIFS/Samba instead of NFS.