Class: OpenPortChecker

Inherits:
Ec2Script show all
Defined in:
lib/scripts/ec2/open_port_checker.rb

Overview

Identifies all server instances with their ports open and checks if there are instances where no service runs on that port. Port ranges are ignored.

Defined Under Namespace

Classes: AnalysisDone, Done, InitialState, InstancesRetrievedState, OpenPortCheckerState, SecurityGroupsRetrievedState

Instance Method Summary collapse

Methods inherited from Ec2Script

#get_execution_result, #post_message, #register_progress_message_listener, #register_state_change_listener, #start_script

Constructor Details

#initialize(input_params) ⇒ OpenPortChecker

Input parameters

  • ec2_api_handler => object that allows to access the EC2 API



16
17
18
# File 'lib/scripts/ec2/open_port_checker.rb', line 16

def initialize(input_params)
  super(input_params)
end

Instance Method Details

#check_input_parametersObject



20
21
22
23
24
# File 'lib/scripts/ec2/open_port_checker.rb', line 20

def check_input_parameters()
  if @input_params[:ec2_api_handler] == nil
    raise Exception.new("no EC2 handler specified")
  end
end

#load_initial_stateObject



26
27
28
# File 'lib/scripts/ec2/open_port_checker.rb', line 26

def load_initial_state()
  OpenPortCheckerState.load_state(@input_params)
end