Class: PortRule

Inherits:
CloudstackCli::Base show all
Defined in:
lib/cloudstack-cli/commands/port_rule.rb

Constant Summary

Constants included from CloudstackCli::Helper

CloudstackCli::Helper::ASYNC_STATES

Instance Attribute Summary

Attributes inherited from CloudstackCli::Base

#config

Instance Method Summary collapse

Methods inherited from CloudstackCli::Base

exit_on_failure?, start

Methods included from CloudstackCli::OptionResolver

#resolve_account, #resolve_cluster, #resolve_compute_offering, #resolve_disk_offering, #resolve_domain, #resolve_host, #resolve_ip_network_list, #resolve_iso, #resolve_iso_for_vm_deployment, #resolve_networks, #resolve_project, #resolve_snapshot, #resolve_template, #resolve_virtual_machine, #resolve_zone, #vm_options_to_params

Methods included from CloudstackCli::Helper

#ask_number, #bootstrap_server, #bootstrap_server_interactive, #create_port_rules, #create_server, #get_server_default_nic, #pf_rule_to_object, #print_job_status, #print_options, #run_background_jobs, #update_job_status, #update_jobs, #watch_jobs

Methods inherited from Thor

banner, basename2, old_subcommand, subcommand

Instance Method Details

#create(server_name) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/cloudstack-cli/commands/port_rule.rb', line 11

def create(server_name)
  resolve_project
  unless server = client.list_virtual_machines(
    name: server_name, project_id: options[:project_id], listall: true
    ).find {|vm| vm["name"] == server_name }
    error "Server #{server_name} not found."
    exit 1
  end
  ip_addr = nil
  options[:rules].each do |pf_rule|
    ip = pf_rule.split(":")[0]
    unless ip == ''
      unless ip_addr = client.list_public_ip_addresses(ipaddress: ip, project_id: options[:project_id]).first
        say "Error: IP #{ip} not found.", :yellow
        next
      end
    else
      say "Assign a new IP address ", :yellow
      net_id = client.list_networks(project_id: options[:project_id]).find {|n| n['name'] == options[:network]}['id']
      say(" OK", :green) if ip_addr = client.associate_ip_address(networkid: net_id)["ipaddress"]
    end
    port = pf_rule.split(":")[1]
    say "Create port forwarding rule #{ip_addr["ipaddress"]}:#{port} for server #{server_name} ", :yellow

    say(" OK", :green) if client.create_port_forwarding_rule(
      ipaddress_id: ip_addr["id"],
      public_port: port,
      private_port: port,
      virtualmachine_id: server["id"],
      protocol: "TCP"
    )
  end
end

#listObject



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/cloudstack-cli/commands/port_rule.rb', line 49

def list
  resolve_project
  rules = client.list_port_forwarding_rules(options)
  if rules.size < 1
    puts "No rules found."
  else
    case options[:format].to_sym
    when :yaml
      puts({rules: rules}.to_yaml)
    when :json
      puts JSON.pretty_generate(rules: rules)
    else
      table = [["IP", "Server", "Public-Port", "Private-Port", "Protocol", "State"]]
      rules.each do |rule|
        table << [
          rule['ipaddress'],
          rule['virtualmachinename'],
          print_ports(rule, 'public'),
          print_ports(rule, 'private'),
          rule['protocol'],
          rule['state']
        ]
      end
      print_table table
      say "Total number of rules: #{rules.count}"
    end
  end
end