NeSSi2 Tool


 
Thread Tools Search this Thread
Special Forums Cybersecurity NeSSi2 Tool
# 1  
Old 12-11-2013
NeSSi2 Tool

Hi guys,

I am working on designing a security system. I need a simulation tool that I can use to generate packets, testing the performance of my firewall, and get results. I already wrote the required coding using C++ language.

I found many general network simulation tools such as OPNet and Omnet.

I also found a tool called NeSSi2 i.e., dedicated to implement security measures in the simulation.

My question is: does anyone have an idea about this tool (NeSSi2) and if it is suitable for simulating my project.

If not, could I get suggestions from your experience about the most suitable tool to work on?

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. HP-UX

Wipe tool for HP-UX

Hi, Please suggest wipe tool for hp-ux. (2 Replies)
Discussion started by: manoj.solaris
2 Replies

2. Red Hat

IP Scanner tool

Hey guys.. What is the best tool that can be used on Linux for IP scanning tool that can bring ping status, hostname, and any other open service. I wish I can find a tool like "The Dude" from Mikrotik, but that works only under Windows. Thanks (4 Replies)
Discussion started by: leo_ultra_leo
4 Replies

3. UNIX for Dummies Questions & Answers

XWindow Tool

Hi Guys can any one help me in this regard .. I'm using Reflaction and xManager but I want list of another xWindow tools between Unix and Windows .. Pls advice .. (1 Reply)
Discussion started by: top.level
1 Replies

4. Infrastructure Monitoring

LogAnalysis Tool

Hello Due to my semester project I am searching a LogAnalysis Tool for Linux platforms. The tool should offer following functionalities: - support Ubuntu/Debian/CentOS - analyse as much as possible system logs - deployable for >100 servers - central administration on one host (preferable... (1 Reply)
Discussion started by: Xava
1 Replies

5. Shell Programming and Scripting

Math Tool

Hi all, I am new to PERL scripts, and i have made my first script which i am posting here. This math tool performs all basic arithmatic functions. #!/usr/bin/perl print "\t----------Welcome to Maths Tool-----------\n"; do { print "Enter your choice :"; print... (2 Replies)
Discussion started by: PranavEcstasy
2 Replies

6. UNIX for Dummies Questions & Answers

Chronicle tool

Hi all, Any one know about the chronicle tool. I came to know which is a scheduler tool. If u know any links regarding this please let me know. Regards Saravan (3 Replies)
Discussion started by: saravanakumar
3 Replies

7. Solaris

sar tool

Hi All, I have come through this very nice tool which stores the week performance stats in solaris, but its only stores the stats for 8 in the morning to 5 in the evening. i want to extend the facility to work 24 hrs . Does anyone know how to do that? Thanks in advance (1 Reply)
Discussion started by: azs0309
1 Replies

8. Solaris

CD burning tool

Im looking for any GUI Based burner to work under sun solaris 10, any ideas > (7 Replies)
Discussion started by: XP_2600
7 Replies

9. Solaris

Tool top

Hi @all, I have some SUN boxes running. Now I'm looking for the tool "top". Where can I find it? As I could see it is not installed on sys boxes. Thanx and regards daemon (2 Replies)
Discussion started by: daemon
2 Replies
Login or Register to Ask a Question
Gtk2::ImageView::Tool::Selector(3pm)			User Contributed Perl Documentation		      Gtk2::ImageView::Tool::Selector(3pm)

NAME
Gtk2::ImageView::Tool::Selector - Image tool for selecting rectangular regions HIERARCHY
Glib::Object +----Gtk2::ImageView::Tool::Selector INTERFACES
Gtk2::ImageView::Tool DESCRIPTION
Gtk2::ImageView::Tool::Selector is a tool for selecting areas of an image. It is useful for cropping an image, for example. The tool is an implementor of the Gtk2::ImageView::Tool inteface which means that it can be plugged into a Gtk2::ImageView by using the Gtk2::ImageView::Tool::set_tool() method. Gtk2::ImageView::Tool::Selector changes the default display of the Gtk2::ImageView. It darkens down the unselected region of the image which provides a nice effect and makes it clearer what part of the image that is currently selected. Unfortunately, this effect is somewhat incompatible with how Gtk2::ImageView::Nav behaves because that widget will show the image without darkening it. The tool also changes the default behaviour of the mouse. When a Gtk2::ImageView::Tool::Selector is set on a Gtk2::ImageView, mouse presses do not "grab" the image and you cannot scroll by dragging. Instead mouse presses and dragging is used to resize and move the selection rectangle. When the mouse drags the selection rectangle to the border of the widget, the view autoscrolls which is a convenient way for a user to position the selection. Please note that Gtk2::ImageView::Tool::Selector draws the image in two layers. One darkened and the selection rectangle in normal luminosity. Because it uses two draw operations instead one one like Gtk2::ImageView::Tool::Dragger does, it is significantly slower than that tool. Therefore, it makes sense for a user of this library to set the interpolation to GDK_INTERP_NEAREST when using this tool to ensure that performance is acceptable to the users of the program. Zoom bug There is a small bug in Gtk2::ImageView::Tool::Selector that becomes apparent when the zoom factor is greater than about 30. The edge of the selection rectangle may in that case intersect a pixel. The bug is caused by bug 389832 in gdk-pixbuf. There is no way to solve this bug on Gtk2::ImageView's level (but if someone knows how, I'd really like to know). METHODS
tool = Gtk2::ImageView::Tool::Selector->new ($view) o $view (Gtk2::ImageView) Returns a new selector tool for the specified view with the following default values: selection : (0, 0) - [0, 0] rectangle = $selector->get_selection Returns a Gtk2::Gdk::Rectangle with the current selection. If either the width or the height of the selection is zero, then nothing is selected and undef is returned. See "selection-changed" for an example. $selector->set_selection ($rect) o $rect (Gtk2::Gdk::Rectangle) Sets the selection rectangle for the tool. Setting this attribute will cause the widget to immidiately repaint itself if its view is realized. This method does nothing under the following circumstances: If the views pixbuf is undef. If rect is wider or taller than the size of the pixbuf If rect equals the current selection rectangle. If the selection falls outside the pixbufs area, its position is moved so that it is within the pixbuf. Calling this method causes the ::selection-changed signal to be emitted. The default selection is (0,0) - [0,0]. selector : a Gtk2::ImageView::Tool::Selector rect : Selection rectangle in image space coordinates. PROPERTIES
'view' (Gtk2::ImageView : default undef : writable / construct-only) Image View to navigate SIGNALS
selection-changed (Gtk2::ImageView::Tool::Selector) SEE ALSO
Gtk2::ImageView, Glib::Object COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe. This software is licensed under the GPL-3; see Gtk2::ImageView for a full notice. perl v5.14.2 2011-11-16 Gtk2::ImageView::Tool::Selector(3pm)