Sponsored Content
Top Forums Programming Help in developing a Network Appliation to monitor pc in a network Post 302282458 by valaparambil88 on Saturday 31st of January 2009 08:22:52 AM
Old 01-31-2009
Help in developing a Network Appliation to monitor pc in a network

I am developing a Network Appliation to monitor computers in a network.
Specs are
  1. App monitors the current web page viewed in each system
  2. App also can shutdown the computer in the network
  3. App can show all process run by each computer in the network


I am now confused how to start my project.
Pls guide me in my project.
 

6 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Linux: monitor memory used for network buffers

/proc/net/sockstat has mem value, Is it memory used for network buffers? Is it KB or MB? $ cat /proc/net/sockstat sockets: used 8278 TCP: inuse 1090 orphan 2 tw 18 alloc 1380 mem 851 UDP: inuse 6574 RAW: inuse 1 FRAG: inuse 0 memory 0 or any other command to montior network... (3 Replies)
Discussion started by: honglus
3 Replies

2. UNIX for Advanced & Expert Users

Monitor % utilization of the network card

Hello, How to we typically monitor the % of utilization of network cards on a Unix box,basically the % utilization of the bytes transfered of the network card. This is required on all the flavours of OS - HP, AIX, RHEL, Sun etc. Please let me know. Thanks. (1 Reply)
Discussion started by: devtakh
1 Replies

3. Windows & DOS: Issues & Discussions

Network monitor script

Hi, Although I'm not at my nature habitat, I need some assistance in having a basic windows script to monitor TCP connections from a host to other hosts. script heed to display the following: 1. ping a remote host/hosts every 1 second (or other adjustable timer) 2. Display a fail/success. 3.... (2 Replies)
Discussion started by: assafde
2 Replies

4. Shell Programming and Scripting

Script to monitor network

Hello Guys, I am starting with shell scripting and I need some help with my problem... The scenario is, I have like 20 servers inside one company, where I face some network issues affecting my servers functionality (Voice/recorder/IVR systems). So, to evidence the network events, I decided to... (1 Reply)
Discussion started by: raval
1 Replies

5. Shell Programming and Scripting

Monitor some of network services

Hi I want to write a script for netflow service because my service doesnt send any packet to netflow walker (server). Although the service is started but it does not send any packet to server until i restart the service I want to write a script in order to restart the service... (7 Replies)
Discussion started by: mohsen1366
7 Replies

6. IP Networking

I would like to monitor network traffic for a computer on my network

My son does homework on a school laptop. I was thinking about setting up a gateway on my home network, so that I can monitor web traffic and know if he is doing his homework without standing over his shoulder. Ideally I would like to use the Raspberry Pi Model b that I already have. However, I... (15 Replies)
Discussion started by: gandolf989
15 Replies
App::Cmd::Tester::CaptureExternal(3pm)			User Contributed Perl Documentation		    App::Cmd::Tester::CaptureExternal(3pm)

NAME
App::Cmd::Tester::CaptureExternal - Extends App::Cmd::Tester to capture from external subprograms VERSION
version 0.318 SYNOPSIS
use Test::More tests => 4; use App::Cmd::Tester::CaptureExternal; use YourApp; my $result = test_app(YourApp => [ qw(command --opt value) ]); like($result->stdout, qr/expected output/, 'printed what we expected'); is($result->stderr, '', 'nothing sent to sderr'); ok($result->output, "STDOUT concatenated with STDERR"); DESCRIPTION
App::Cmd::Tester provides a useful scaffold for testing applications, but it is unable to capture output generated from any external subprograms that are invoked from the application. This subclass uses an alternate mechanism for capturing output (Capture::Tiny) that does capture from external programs, with one major limitation. It is not possible to capture externally from both STDOUT and STDERR while also having appropriately interleaved combined output. Therefore, the "output" from this subclass simply concatenates the two. You can still use "output" for testing if there is any output at all or for testing if something appeared in either output stream, but you can't rely on the ordering being correct between lines to STDOUT and lines to STDERR. AUTHOR
Ricardo Signes <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo Signes. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-05-05 App::Cmd::Tester::CaptureExternal(3pm)
All times are GMT -4. The time now is 09:44 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy