Sponsored Content
Full Discussion: Discovery Tools.
Special Forums UNIX and Linux Applications Infrastructure Monitoring Discovery Tools. Post 302914349 by night_watcher on Monday 25th of August 2014 06:16:24 AM
Old 08-25-2014
Hi Dave,

As a pointer I can give nmap. You can scan networks and given ranges with it. It also has GUI called Zenmap, but I have never used that.
I can think only of nmap for this or some small script with netcat, but I think nmap would give you broader view of the network.

Regards
This User Gave Thanks to night_watcher For This Post:
 

6 More Discussions You Might Find Interesting

1. Solaris

disk discovery

when I "ls /dev/dsk/ ", I can see c0t0d0 and c0t2d0; but when I use format command, I can only see c0t0d0 available; why this happens? how many disk do I have on the machine? (I do not know that) (2 Replies)
Discussion started by: fredao
2 Replies

2. Shell Programming and Scripting

host discovery using bash

I am trying to make a bash script to scan subnets to see what hosts are available. Is it correct that you can not make the ping command time out less than a second? The script below works, but can take up to 255 seconds which is a bit long :( Is there a way to solve this using bash only? <code>... (6 Replies)
Discussion started by: bronkeydain
6 Replies

3. UNIX for Dummies Questions & Answers

Network Topology Discovery

Hello All! New Unix admin here, with a bit of a problem I can't seem to get a straight answer to.. I've been tasked with mapping out the topology (with IPs/Hostnames) of networks...remotely. So, I have SSH access to firewalls, but that's about as far as I can get - how would I go about... (4 Replies)
Discussion started by: Tiyugro
4 Replies

4. AIX

Discovery LPAR from HMC

Hi All, i would like to know if it's possible to know all the IP Addresses of all LPAR's interfaces from HMC (without connect into LPAR). And if i can know also the "Application" hostname of LPAR from HMC. Thanks in advance. Bye Mario (2 Replies)
Discussion started by: Zio Bill
2 Replies

5. AIX

Discovery/Mount new disk

Hi all, i must add a new disk on a LPAR. I've done all the HMC and VIOS Procedure to create a virtual host with disk and assign it to lpar. I don't remember how i must do on the lpar to see this disk. (i use lvm not veritas). Thanks in advance and sorry for my english. Bye Mario (2 Replies)
Discussion started by: Zio Bill
2 Replies

6. Red Hat

Iscsi Discovery no Portal found

Installed the iscsi target and configured its working fine While i'm running command in initiator # iscsiadm --mode discoverydb --type sendtargets --portal 192.168.1.5 --discover iscsiadm: No portals found i cant find the LUN1 , its not discovering it what may be the issue and how to... (0 Replies)
Discussion started by: babinlonston
0 Replies
Perl::Critic::Policy::RegularExpressions::RequireLineBouUseryContributed PPerl::Critic::Policy::RegularExpressions::RequireLineBoundaryMatching(3)

NAME
Perl::Critic::Policy::RegularExpressions::RequireLineBoundaryMatching - Always use the "/m" modifier with regular expressions. AFFILIATION
This Policy is part of the core Perl::Critic distribution. DESCRIPTION
Folks coming from a "sed" or "awk" background tend to assume that '$' and '^' match the beginning and end of the line, rather than then beginning and end of the string. Adding the '/m' flag to your regex makes it behave as most people expect it should. my $match = m{ ^ $pattern $ }x; #not ok my $match = m{ ^ $pattern $ }xm; #ok CONFIGURATION
This Policy is not configurable except for the standard options. NOTES
For common regular expressions like e-mail addresses, phone numbers, dates, etc., have a look at the Regexp::Common module. Also, be cautions about slapping modifier flags onto existing regular expressions, as they can drastically alter their meaning. See <http://www.perlmonks.org/?node_id=484238> for an interesting discussion on the effects of blindly modifying regular expression flags. AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com> COPYRIGHT
Copyright (c) 2005-2011 Imaginative Software Systems. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module. perl v5.16.3 2014-0Perl::Critic::Policy::RegularExpressions::RequireLineBoundaryMatching(3)
All times are GMT -4. The time now is 04:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy