mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-09-10 23:18:22 -07:00
[ec2_vpc_vgw] [ec2_vpc_vpn] stabilize modules for PR 35983 (#38666)
* Stabilize ec2_vpc_vgw and ec2_vpc_vpn so tests for ec2_vpc_vpn_facts in PR 35983 can be run in CI * Add updated placebo recordings * ensure find_vgw uses the virtual gateway id if available Add AWSRetry.jittered_backoff to attach_vpn_gateway to deal with errors when attaching a new VPC directly after detaching Add integrations tests for ec2_vpc_vgw * Sort VPN Gateways by ID
This commit is contained in:
parent
923a81e9e5
commit
923f676836
297 changed files with 17113 additions and 5006 deletions
|
@ -115,6 +115,24 @@ ec2_data = {
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"VpnGatewayExists": {
|
||||||
|
"delay": 5,
|
||||||
|
"maxAttempts": 40,
|
||||||
|
"operation": "DescribeVpnGateways",
|
||||||
|
"acceptors": [
|
||||||
|
{
|
||||||
|
"matcher": "path",
|
||||||
|
"expected": True,
|
||||||
|
"argument": "length(VpnGateways[]) > `0`",
|
||||||
|
"state": "success"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matcher": "error",
|
||||||
|
"expected": "InvalidVpnGatewayID.NotFound",
|
||||||
|
"state": "retry"
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,6 +215,12 @@ waiters_by_name = {
|
||||||
core_waiter.NormalizedOperationMethod(
|
core_waiter.NormalizedOperationMethod(
|
||||||
ec2.describe_subnets
|
ec2.describe_subnets
|
||||||
)),
|
)),
|
||||||
|
('EC2', 'vpn_gateway_exists'): lambda ec2: core_waiter.Waiter(
|
||||||
|
'vpn_gateway_exists',
|
||||||
|
ec2_model('VpnGatewayExists'),
|
||||||
|
core_waiter.NormalizedOperationMethod(
|
||||||
|
ec2.describe_vpn_gateways
|
||||||
|
)),
|
||||||
('WAF', 'change_token_in_sync'): lambda waf: core_waiter.Waiter(
|
('WAF', 'change_token_in_sync'): lambda waf: core_waiter.Waiter(
|
||||||
'change_token_in_sync',
|
'change_token_in_sync',
|
||||||
waf_model('ChangeTokenInSync'),
|
waf_model('ChangeTokenInSync'),
|
||||||
|
|
|
@ -112,8 +112,9 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
HAS_BOTO3 = False
|
HAS_BOTO3 = False
|
||||||
|
|
||||||
|
from ansible.module_utils.aws.waiters import get_waiter
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.ec2 import HAS_BOTO3, boto3_conn, ec2_argument_spec, get_aws_connection_info
|
from ansible.module_utils.ec2 import HAS_BOTO3, boto3_conn, ec2_argument_spec, get_aws_connection_info, AWSRetry
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
|
|
||||||
|
@ -164,7 +165,7 @@ def attach_vgw(client, module, vpn_gateway_id):
|
||||||
params['VpcId'] = module.params.get('vpc_id')
|
params['VpcId'] = module.params.get('vpc_id')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response = client.attach_vpn_gateway(VpnGatewayId=vpn_gateway_id, VpcId=params['VpcId'])
|
response = AWSRetry.jittered_backoff()(client.attach_vpn_gateway)(VpnGatewayId=vpn_gateway_id, VpcId=params['VpcId'])
|
||||||
except botocore.exceptions.ClientError as e:
|
except botocore.exceptions.ClientError as e:
|
||||||
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
||||||
|
|
||||||
|
@ -205,6 +206,14 @@ def create_vgw(client, module):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response = client.create_vpn_gateway(Type=params['Type'])
|
response = client.create_vpn_gateway(Type=params['Type'])
|
||||||
|
get_waiter(
|
||||||
|
client, 'vpn_gateway_exists'
|
||||||
|
).wait(
|
||||||
|
VpnGatewayIds=[response['VpnGateway']['VpnGatewayId']]
|
||||||
|
)
|
||||||
|
except botocore.exceptions.WaiterError as e:
|
||||||
|
module.fail_json(msg="Failed to wait for Vpn Gateway {0} to be available".format(response['VpnGateway']['VpnGatewayId']),
|
||||||
|
exception=traceback.format_exc())
|
||||||
except botocore.exceptions.ClientError as e:
|
except botocore.exceptions.ClientError as e:
|
||||||
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
||||||
|
|
||||||
|
@ -329,37 +338,21 @@ def find_vpc(client, module):
|
||||||
|
|
||||||
def find_vgw(client, module, vpn_gateway_id=None):
|
def find_vgw(client, module, vpn_gateway_id=None):
|
||||||
params = dict()
|
params = dict()
|
||||||
params['Name'] = module.params.get('name')
|
if vpn_gateway_id:
|
||||||
params['Type'] = module.params.get('type')
|
params['VpnGatewayIds'] = vpn_gateway_id
|
||||||
params['State'] = module.params.get('state')
|
|
||||||
|
|
||||||
if params['State'] == 'present':
|
|
||||||
try:
|
|
||||||
response = client.describe_vpn_gateways(Filters=[
|
|
||||||
{'Name': 'type', 'Values': [params['Type']]},
|
|
||||||
{'Name': 'tag:Name', 'Values': [params['Name']]}
|
|
||||||
])
|
|
||||||
except botocore.exceptions.ClientError as e:
|
|
||||||
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if vpn_gateway_id:
|
params['Filters'] = [
|
||||||
try:
|
{'Name': 'type', 'Values': [module.params.get('type')]},
|
||||||
response = client.describe_vpn_gateways(VpnGatewayIds=vpn_gateway_id)
|
{'Name': 'tag:Name', 'Values': [module.params.get('name')]},
|
||||||
except botocore.exceptions.ClientError as e:
|
]
|
||||||
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
if module.params.get('state') == 'present':
|
||||||
|
params['Filters'].append({'Name': 'state', 'Values': ['pending', 'available']})
|
||||||
|
try:
|
||||||
|
response = client.describe_vpn_gateways(**params)
|
||||||
|
except botocore.exceptions.ClientError as e:
|
||||||
|
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
||||||
|
|
||||||
else:
|
return sorted(response['VpnGateways'], key=lambda k: k['VpnGatewayId'])
|
||||||
try:
|
|
||||||
response = client.describe_vpn_gateways(Filters=[
|
|
||||||
{'Name': 'type', 'Values': [params['Type']]},
|
|
||||||
{'Name': 'tag:Name', 'Values': [params['Name']]}
|
|
||||||
])
|
|
||||||
except botocore.exceptions.ClientError as e:
|
|
||||||
module.fail_json(msg=to_native(e), exception=traceback.format_exc())
|
|
||||||
|
|
||||||
result = response['VpnGateways']
|
|
||||||
return result
|
|
||||||
|
|
||||||
|
|
||||||
def ensure_vgw_present(client, module):
|
def ensure_vgw_present(client, module):
|
||||||
|
@ -376,40 +369,33 @@ def ensure_vgw_present(client, module):
|
||||||
params['Tags'] = module.params.get('tags')
|
params['Tags'] = module.params.get('tags')
|
||||||
params['VpnGatewayIds'] = module.params.get('vpn_gateway_id')
|
params['VpnGatewayIds'] = module.params.get('vpn_gateway_id')
|
||||||
|
|
||||||
# Check that a name argument has been supplied.
|
# check that the vpc_id exists. If not, an exception is thrown
|
||||||
if not module.params.get('name'):
|
if params['VpcId']:
|
||||||
module.fail_json(msg='A name is required when a status of \'present\' is suppled')
|
vpc = find_vpc(client, module)
|
||||||
|
|
||||||
# check if a gateway matching our module args already exists
|
# check if a gateway matching our module args already exists
|
||||||
existing_vgw = find_vgw(client, module)
|
existing_vgw = find_vgw(client, module)
|
||||||
|
|
||||||
if existing_vgw != [] and existing_vgw[0]['State'] != 'deleted':
|
if existing_vgw != []:
|
||||||
vpn_gateway_id = existing_vgw[0]['VpnGatewayId']
|
vpn_gateway_id = existing_vgw[0]['VpnGatewayId']
|
||||||
vgw, changed = check_tags(client, module, existing_vgw, vpn_gateway_id)
|
vgw, changed = check_tags(client, module, existing_vgw, vpn_gateway_id)
|
||||||
|
|
||||||
# if a vpc_id was provided, check if it exists and if it's attached
|
# if a vpc_id was provided, check if it exists and if it's attached
|
||||||
if params['VpcId']:
|
if params['VpcId']:
|
||||||
|
|
||||||
# check that the vpc_id exists. If not, an exception is thrown
|
|
||||||
vpc = find_vpc(client, module)
|
|
||||||
current_vpc_attachments = existing_vgw[0]['VpcAttachments']
|
current_vpc_attachments = existing_vgw[0]['VpcAttachments']
|
||||||
|
|
||||||
if current_vpc_attachments != [] and current_vpc_attachments[0]['State'] == 'attached':
|
if current_vpc_attachments != [] and current_vpc_attachments[0]['State'] == 'attached':
|
||||||
if current_vpc_attachments[0]['VpcId'] == params['VpcId'] and current_vpc_attachments[0]['State'] == 'attached':
|
if current_vpc_attachments[0]['VpcId'] != params['VpcId'] or current_vpc_attachments[0]['State'] != 'attached':
|
||||||
changed = False
|
|
||||||
else:
|
|
||||||
|
|
||||||
# detach the existing vpc from the virtual gateway
|
# detach the existing vpc from the virtual gateway
|
||||||
vpc_to_detach = current_vpc_attachments[0]['VpcId']
|
vpc_to_detach = current_vpc_attachments[0]['VpcId']
|
||||||
detach_vgw(client, module, vpn_gateway_id, vpc_to_detach)
|
detach_vgw(client, module, vpn_gateway_id, vpc_to_detach)
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
||||||
vgw = find_vgw(client, module, [vpn_gateway_id])
|
|
||||||
changed = True
|
changed = True
|
||||||
else:
|
else:
|
||||||
# attach the vgw to the supplied vpc
|
# attach the vgw to the supplied vpc
|
||||||
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
||||||
vgw = find_vgw(client, module, [vpn_gateway_id])
|
|
||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
# if params['VpcId'] is not provided, check the vgw is attached to a vpc. if so, detach it.
|
# if params['VpcId'] is not provided, check the vgw is attached to a vpc. if so, detach it.
|
||||||
|
@ -423,8 +409,6 @@ def ensure_vgw_present(client, module):
|
||||||
detach_vgw(client, module, vpn_gateway_id, vpc_to_detach)
|
detach_vgw(client, module, vpn_gateway_id, vpc_to_detach)
|
||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
vgw = find_vgw(client, module, [vpn_gateway_id])
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# create a new vgw
|
# create a new vgw
|
||||||
new_vgw = create_vgw(client, module)
|
new_vgw = create_vgw(client, module)
|
||||||
|
@ -434,15 +418,13 @@ def ensure_vgw_present(client, module):
|
||||||
# tag the new virtual gateway
|
# tag the new virtual gateway
|
||||||
create_tags(client, module, vpn_gateway_id)
|
create_tags(client, module, vpn_gateway_id)
|
||||||
|
|
||||||
# return current state of the vgw
|
|
||||||
vgw = find_vgw(client, module, [vpn_gateway_id])
|
|
||||||
|
|
||||||
# if a vpc-id was supplied, attempt to attach it to the vgw
|
# if a vpc-id was supplied, attempt to attach it to the vgw
|
||||||
if params['VpcId']:
|
if params['VpcId']:
|
||||||
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
attached_vgw = attach_vgw(client, module, vpn_gateway_id)
|
||||||
changed = True
|
changed = True
|
||||||
vgw = find_vgw(client, module, [vpn_gateway_id])
|
|
||||||
|
|
||||||
|
# return current state of the vgw
|
||||||
|
vgw = find_vgw(client, module, [vpn_gateway_id])
|
||||||
result = get_vgw_info(vgw)
|
result = get_vgw_info(vgw)
|
||||||
return changed, result
|
return changed, result
|
||||||
|
|
||||||
|
@ -549,7 +531,8 @@ def main():
|
||||||
tags=dict(default=None, required=False, type='dict', aliases=['resource_tags']),
|
tags=dict(default=None, required=False, type='dict', aliases=['resource_tags']),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
module = AnsibleModule(argument_spec=argument_spec)
|
module = AnsibleModule(argument_spec=argument_spec,
|
||||||
|
required_if=[['state', 'present', ['name']]])
|
||||||
|
|
||||||
if not HAS_BOTO3:
|
if not HAS_BOTO3:
|
||||||
module.fail_json(msg='json and boto3 is required.')
|
module.fail_json(msg='json and boto3 is required.')
|
||||||
|
|
|
@ -266,24 +266,25 @@ vpn_connection_id:
|
||||||
vpn_connection_id: vpn-781e0e19
|
vpn_connection_id: vpn-781e0e19
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.aws.core import AnsibleAWSModule
|
||||||
from ansible.module_utils._text import to_text
|
from ansible.module_utils._text import to_text
|
||||||
from ansible.module_utils import ec2 as ec2_utils
|
from ansible.module_utils.ec2 import (
|
||||||
import traceback
|
camel_dict_to_snake_dict,
|
||||||
|
boto3_tag_list_to_ansible_dict,
|
||||||
|
compare_aws_tags,
|
||||||
|
ansible_dict_to_boto3_tag_list,
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import boto3
|
from botocore.exceptions import BotoCoreError, ClientError, WaiterError
|
||||||
import botocore
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# will be caught in main
|
pass # Handled by AnsibleAWSModule
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class VPNConnectionException(Exception):
|
class VPNConnectionException(Exception):
|
||||||
def __init__(self, msg, exception=None, response=None):
|
def __init__(self, msg, exception=None):
|
||||||
self.msg = msg
|
self.msg = msg
|
||||||
self.error_traceback = exception
|
self.exception = exception
|
||||||
self.response = response
|
|
||||||
|
|
||||||
|
|
||||||
def find_connection(connection, module_params, vpn_connection_id=None):
|
def find_connection(connection, module_params, vpn_connection_id=None):
|
||||||
|
@ -309,16 +310,13 @@ def find_connection(connection, module_params, vpn_connection_id=None):
|
||||||
# see if there is a unique matching connection
|
# see if there is a unique matching connection
|
||||||
try:
|
try:
|
||||||
if vpn_connection_id:
|
if vpn_connection_id:
|
||||||
existing_conn = connection.describe_vpn_connections(DryRun=False,
|
existing_conn = connection.describe_vpn_connections(VpnConnectionIds=vpn_connection_id,
|
||||||
VpnConnectionIds=vpn_connection_id,
|
|
||||||
Filters=formatted_filter)
|
Filters=formatted_filter)
|
||||||
else:
|
else:
|
||||||
existing_conn = connection.describe_vpn_connections(DryRun=False,
|
existing_conn = connection.describe_vpn_connections(Filters=formatted_filter)
|
||||||
Filters=formatted_filter)
|
except (BotoCoreError, ClientError) as e:
|
||||||
except botocore.exceptions.ClientError as e:
|
|
||||||
raise VPNConnectionException(msg="Failed while describing VPN connection.",
|
raise VPNConnectionException(msg="Failed while describing VPN connection.",
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
**ec2_utils.camel_dict_to_snake_dict(e.response))
|
|
||||||
|
|
||||||
return find_connection_response(connections=existing_conn)
|
return find_connection_response(connections=existing_conn)
|
||||||
|
|
||||||
|
@ -328,10 +326,9 @@ def add_routes(connection, vpn_connection_id, routes_to_add):
|
||||||
try:
|
try:
|
||||||
connection.create_vpn_connection_route(VpnConnectionId=vpn_connection_id,
|
connection.create_vpn_connection_route(VpnConnectionId=vpn_connection_id,
|
||||||
DestinationCidrBlock=route)
|
DestinationCidrBlock=route)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (BotoCoreError, ClientError) as e:
|
||||||
raise VPNConnectionException(msg="Failed while adding route {0} to the VPN connection {1}.".format(route, vpn_connection_id),
|
raise VPNConnectionException(msg="Failed while adding route {0} to the VPN connection {1}.".format(route, vpn_connection_id),
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
response=e.response)
|
|
||||||
|
|
||||||
|
|
||||||
def remove_routes(connection, vpn_connection_id, routes_to_remove):
|
def remove_routes(connection, vpn_connection_id, routes_to_remove):
|
||||||
|
@ -339,10 +336,9 @@ def remove_routes(connection, vpn_connection_id, routes_to_remove):
|
||||||
try:
|
try:
|
||||||
connection.delete_vpn_connection_route(VpnConnectionId=vpn_connection_id,
|
connection.delete_vpn_connection_route(VpnConnectionId=vpn_connection_id,
|
||||||
DestinationCidrBlock=route)
|
DestinationCidrBlock=route)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (BotoCoreError, ClientError) as e:
|
||||||
raise VPNConnectionException(msg="Failed to remove route {0} from the VPN connection {1}.".format(route, vpn_connection_id),
|
raise VPNConnectionException(msg="Failed to remove route {0} from the VPN connection {1}.".format(route, vpn_connection_id),
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
response=e.response)
|
|
||||||
|
|
||||||
|
|
||||||
def create_filter(module_params, provided_filters):
|
def create_filter(module_params, provided_filters):
|
||||||
|
@ -456,15 +452,17 @@ def create_connection(connection, customer_gateway_id, static_only, vpn_gateway_
|
||||||
raise VPNConnectionException(msg="No matching connection was found. To create a new connection you must provide "
|
raise VPNConnectionException(msg="No matching connection was found. To create a new connection you must provide "
|
||||||
"both vpn_gateway_id and customer_gateway_id.")
|
"both vpn_gateway_id and customer_gateway_id.")
|
||||||
try:
|
try:
|
||||||
vpn = connection.create_vpn_connection(DryRun=False,
|
vpn = connection.create_vpn_connection(Type=connection_type,
|
||||||
Type=connection_type,
|
|
||||||
CustomerGatewayId=customer_gateway_id,
|
CustomerGatewayId=customer_gateway_id,
|
||||||
VpnGatewayId=vpn_gateway_id,
|
VpnGatewayId=vpn_gateway_id,
|
||||||
Options=options)
|
Options=options)
|
||||||
except botocore.exceptions.ClientError as e:
|
connection.get_waiter('vpn_connection_available').wait(VpnConnectionIds=[vpn['VpnConnection']['VpnConnectionId']])
|
||||||
raise VPNConnectionException(msg="Failed to create VPN connection: {0}".format(e.message),
|
except WaiterError as e:
|
||||||
exception=traceback.format_exc(),
|
raise VPNConnectionException(msg="Failed to wait for VPN connection {0} to be available".format(vpn['VpnConnection']['VpnConnectionId']),
|
||||||
response=e.response)
|
exception=e)
|
||||||
|
except (BotoCoreError, ClientError) as e:
|
||||||
|
raise VPNConnectionException(msg="Failed to create VPN connection",
|
||||||
|
exception=e)
|
||||||
|
|
||||||
return vpn['VpnConnection']
|
return vpn['VpnConnection']
|
||||||
|
|
||||||
|
@ -472,36 +470,34 @@ def create_connection(connection, customer_gateway_id, static_only, vpn_gateway_
|
||||||
def delete_connection(connection, vpn_connection_id):
|
def delete_connection(connection, vpn_connection_id):
|
||||||
""" Deletes a VPN connection """
|
""" Deletes a VPN connection """
|
||||||
try:
|
try:
|
||||||
connection.delete_vpn_connection(DryRun=False,
|
connection.delete_vpn_connection(VpnConnectionId=vpn_connection_id)
|
||||||
VpnConnectionId=vpn_connection_id)
|
connection.get_waiter('vpn_connection_deleted').wait(VpnConnectionIds=[vpn_connection_id])
|
||||||
except botocore.exceptions.ClientError as e:
|
except WaiterError as e:
|
||||||
raise VPNConnectionException(msg="Failed to delete the VPN connection: {0}".format(e.message),
|
raise VPNConnectionException(msg="Failed to wait for VPN connection {0} to be removed".format(vpn_connection_id),
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
response=e.response)
|
except (BotoCoreError, ClientError) as e:
|
||||||
|
raise VPNConnectionException(msg="Failed to delete the VPN connection: {0}".format(vpn_connection_id),
|
||||||
|
exception=e)
|
||||||
|
|
||||||
|
|
||||||
def add_tags(connection, vpn_connection_id, add):
|
def add_tags(connection, vpn_connection_id, add):
|
||||||
try:
|
try:
|
||||||
connection.create_tags(DryRun=False,
|
connection.create_tags(Resources=[vpn_connection_id],
|
||||||
Resources=[vpn_connection_id],
|
|
||||||
Tags=add)
|
Tags=add)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (BotoCoreError, ClientError) as e:
|
||||||
raise VPNConnectionException(msg="Failed to add the tags: {0}.".format(add),
|
raise VPNConnectionException(msg="Failed to add the tags: {0}.".format(add),
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
response=e.response)
|
|
||||||
|
|
||||||
|
|
||||||
def remove_tags(connection, vpn_connection_id, remove):
|
def remove_tags(connection, vpn_connection_id, remove):
|
||||||
# format tags since they are a list in the format ['tag1', 'tag2', 'tag3']
|
# format tags since they are a list in the format ['tag1', 'tag2', 'tag3']
|
||||||
key_dict_list = [{'Key': tag} for tag in remove]
|
key_dict_list = [{'Key': tag} for tag in remove]
|
||||||
try:
|
try:
|
||||||
connection.delete_tags(DryRun=False,
|
connection.delete_tags(Resources=[vpn_connection_id],
|
||||||
Resources=[vpn_connection_id],
|
|
||||||
Tags=key_dict_list)
|
Tags=key_dict_list)
|
||||||
except botocore.exceptions.ClientError as e:
|
except (BotoCoreError, ClientError) as e:
|
||||||
raise VPNConnectionException(msg="Failed to remove the tags: {0}.".format(remove),
|
raise VPNConnectionException(msg="Failed to remove the tags: {0}.".format(remove),
|
||||||
exception=traceback.format_exc(),
|
exception=e)
|
||||||
response=e.response)
|
|
||||||
|
|
||||||
|
|
||||||
def check_for_update(connection, module_params, vpn_connection_id):
|
def check_for_update(connection, module_params, vpn_connection_id):
|
||||||
|
@ -512,7 +508,7 @@ def check_for_update(connection, module_params, vpn_connection_id):
|
||||||
purge_routes = module_params.get('purge_routes')
|
purge_routes = module_params.get('purge_routes')
|
||||||
|
|
||||||
vpn_connection = find_connection(connection, module_params, vpn_connection_id=vpn_connection_id)
|
vpn_connection = find_connection(connection, module_params, vpn_connection_id=vpn_connection_id)
|
||||||
current_attrs = ec2_utils.camel_dict_to_snake_dict(vpn_connection)
|
current_attrs = camel_dict_to_snake_dict(vpn_connection)
|
||||||
|
|
||||||
# Initialize changes dict
|
# Initialize changes dict
|
||||||
changes = {'tags_to_add': [],
|
changes = {'tags_to_add': [],
|
||||||
|
@ -521,14 +517,9 @@ def check_for_update(connection, module_params, vpn_connection_id):
|
||||||
'routes_to_remove': []}
|
'routes_to_remove': []}
|
||||||
|
|
||||||
# Get changes to tags
|
# Get changes to tags
|
||||||
if 'tags' in current_attrs:
|
current_tags = boto3_tag_list_to_ansible_dict(current_attrs.get('tags', []), u'key', u'value')
|
||||||
current_tags = ec2_utils.boto3_tag_list_to_ansible_dict(current_attrs['tags'], u'key', u'value')
|
tags_to_add, changes['tags_to_remove'] = compare_aws_tags(current_tags, tags, purge_tags)
|
||||||
tags_to_add, changes['tags_to_remove'] = ec2_utils.compare_aws_tags(current_tags, tags, purge_tags)
|
changes['tags_to_add'] = ansible_dict_to_boto3_tag_list(tags_to_add)
|
||||||
changes['tags_to_add'] = ec2_utils.ansible_dict_to_boto3_tag_list(tags_to_add)
|
|
||||||
elif tags:
|
|
||||||
current_tags = {}
|
|
||||||
tags_to_add, changes['tags_to_remove'] = ec2_utils.compare_aws_tags(current_tags, tags, purge_tags)
|
|
||||||
changes['tags_to_add'] = ec2_utils.ansible_dict_to_boto3_tag_list(tags_to_add)
|
|
||||||
# Get changes to routes
|
# Get changes to routes
|
||||||
if 'Routes' in vpn_connection:
|
if 'Routes' in vpn_connection:
|
||||||
current_routes = [route['DestinationCidrBlock'] for route in vpn_connection['Routes']]
|
current_routes = [route['DestinationCidrBlock'] for route in vpn_connection['Routes']]
|
||||||
|
@ -603,7 +594,7 @@ def get_check_mode_results(connection, module_params, vpn_connection_id=None, cu
|
||||||
# get combined current tags and tags to set
|
# get combined current tags and tags to set
|
||||||
present_tags = module_params.get('tags')
|
present_tags = module_params.get('tags')
|
||||||
if current_state and 'Tags' in current_state:
|
if current_state and 'Tags' in current_state:
|
||||||
current_tags = ec2_utils.boto3_tag_list_to_ansible_dict(current_state['Tags'])
|
current_tags = boto3_tag_list_to_ansible_dict(current_state['Tags'])
|
||||||
if module_params.get('purge_tags'):
|
if module_params.get('purge_tags'):
|
||||||
if current_tags != present_tags:
|
if current_tags != present_tags:
|
||||||
changed = True
|
changed = True
|
||||||
|
@ -680,7 +671,7 @@ def ensure_present(connection, module_params, check_mode=False):
|
||||||
if vpn_connection:
|
if vpn_connection:
|
||||||
vpn_connection = find_connection(connection, module_params, vpn_connection['VpnConnectionId'])
|
vpn_connection = find_connection(connection, module_params, vpn_connection['VpnConnectionId'])
|
||||||
if 'Tags' in vpn_connection:
|
if 'Tags' in vpn_connection:
|
||||||
vpn_connection['Tags'] = ec2_utils.boto3_tag_list_to_ansible_dict(vpn_connection['Tags'])
|
vpn_connection['Tags'] = boto3_tag_list_to_ansible_dict(vpn_connection['Tags'])
|
||||||
|
|
||||||
return changed, vpn_connection
|
return changed, vpn_connection
|
||||||
|
|
||||||
|
@ -702,38 +693,23 @@ def ensure_absent(connection, module_params, check_mode=False):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
argument_spec = ec2_utils.ec2_argument_spec()
|
argument_spec = dict(
|
||||||
argument_spec.update(
|
state=dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
dict(
|
filters=dict(type='dict', default={}),
|
||||||
state=dict(type='str', default='present', choices=['present', 'absent']),
|
vpn_gateway_id=dict(type='str'),
|
||||||
filters=dict(type='dict', default={}),
|
tags=dict(default={}, type='dict'),
|
||||||
vpn_gateway_id=dict(type='str'),
|
connection_type=dict(default='ipsec.1', type='str'),
|
||||||
tags=dict(default={}, type='dict'),
|
tunnel_options=dict(type='list', default=[]),
|
||||||
connection_type=dict(default='ipsec.1', type='str'),
|
static_only=dict(default=False, type='bool'),
|
||||||
tunnel_options=dict(type='list', default=[]),
|
customer_gateway_id=dict(type='str'),
|
||||||
static_only=dict(default=False, type='bool'),
|
vpn_connection_id=dict(type='str'),
|
||||||
customer_gateway_id=dict(type='str'),
|
purge_tags=dict(type='bool', default=False),
|
||||||
vpn_connection_id=dict(type='str'),
|
routes=dict(type='list', default=[]),
|
||||||
purge_tags=dict(type='bool', default=False),
|
purge_routes=dict(type='bool', default=False),
|
||||||
routes=dict(type='list', default=[]),
|
|
||||||
purge_routes=dict(type='bool', default=False),
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
module = AnsibleModule(argument_spec=argument_spec,
|
module = AnsibleAWSModule(argument_spec=argument_spec,
|
||||||
supports_check_mode=True)
|
supports_check_mode=True)
|
||||||
|
connection = module.client('ec2')
|
||||||
if not ec2_utils.HAS_BOTO3:
|
|
||||||
module.fail_json(msg='boto3 required for this module')
|
|
||||||
|
|
||||||
# Retrieve any AWS settings from the environment.
|
|
||||||
region, ec2_url, aws_connect_kwargs = ec2_utils.get_aws_connection_info(module, boto3=True)
|
|
||||||
|
|
||||||
if not region:
|
|
||||||
module.fail_json(msg="Either region or AWS_REGION or EC2_REGION environment variable or boto config aws_region or ec2_region must be set.")
|
|
||||||
|
|
||||||
connection = ec2_utils.boto3_conn(module, conn_type='client',
|
|
||||||
resource='ec2', region=region,
|
|
||||||
endpoint=ec2_url, **aws_connect_kwargs)
|
|
||||||
|
|
||||||
state = module.params.get('state')
|
state = module.params.get('state')
|
||||||
parameters = dict(module.params)
|
parameters = dict(module.params)
|
||||||
|
@ -744,16 +720,12 @@ def main():
|
||||||
elif state == 'absent':
|
elif state == 'absent':
|
||||||
changed, response = ensure_absent(connection, parameters, module.check_mode)
|
changed, response = ensure_absent(connection, parameters, module.check_mode)
|
||||||
except VPNConnectionException as e:
|
except VPNConnectionException as e:
|
||||||
if e.response and e.error_traceback:
|
if e.exception:
|
||||||
module.fail_json(msg=e.msg, exception=e.error_traceback, **ec2_utils.camel_dict_to_snake_dict(e.response))
|
module.fail_json_aws(e.exception, msg=e.msg)
|
||||||
elif e.error_traceback:
|
|
||||||
module.fail_json(msg=e.msg, exception=e.error_traceback)
|
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg=e.msg)
|
module.fail_json(msg=e.msg)
|
||||||
|
|
||||||
facts_result = dict(changed=changed, **ec2_utils.camel_dict_to_snake_dict(response))
|
module.exit_json(changed=changed, **camel_dict_to_snake_dict(response))
|
||||||
|
|
||||||
module.exit_json(**facts_result)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
2
test/integration/targets/ec2_vpc_vgw/aliases
Normal file
2
test/integration/targets/ec2_vpc_vgw/aliases
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
cloud/aws
|
||||||
|
posix/ci/cloud/group4/aws
|
171
test/integration/targets/ec2_vpc_vgw/tasks/main.yml
Normal file
171
test/integration/targets/ec2_vpc_vgw/tasks/main.yml
Normal file
|
@ -0,0 +1,171 @@
|
||||||
|
---
|
||||||
|
- block:
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- name: set up aws connection info
|
||||||
|
set_fact:
|
||||||
|
aws_connection_info: &aws_connection_info
|
||||||
|
aws_access_key: "{{ aws_access_key }}"
|
||||||
|
aws_secret_key: "{{ aws_secret_key }}"
|
||||||
|
security_token: "{{ security_token }}"
|
||||||
|
region: "{{ aws_region }}"
|
||||||
|
no_log: yes
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- debug: msg="Setting up test dependencies"
|
||||||
|
|
||||||
|
- name: create a VPC
|
||||||
|
ec2_vpc_net:
|
||||||
|
name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||||
|
state: present
|
||||||
|
cidr_block: "10.0.0.0/26"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
tags:
|
||||||
|
Name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||||
|
Description: "Created by ansible-test"
|
||||||
|
register: vpc_result
|
||||||
|
loop: [1, 2]
|
||||||
|
|
||||||
|
- name: use set fact for vpc ids
|
||||||
|
set_fact:
|
||||||
|
vpc_id_1: '{{ vpc_result.results.0.vpc.id }}'
|
||||||
|
vpc_id_2: '{{ vpc_result.results.1.vpc.id }}'
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- debug: msg="Running tests"
|
||||||
|
|
||||||
|
- name: create vpn gateway and attach it to vpc
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_1 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- vgw.changed
|
||||||
|
- "{{ vgw.vgw.vpc_id == vpc_id_1 }}"
|
||||||
|
- '"{{ vgw.vgw.tags.Name }}" == "{{ resource_prefix }}-vgw"'
|
||||||
|
|
||||||
|
- name: test idempotence
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_1 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- not vgw.changed
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- name: attach vpn gateway to the other VPC
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_2 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- vgw.changed
|
||||||
|
- "{{ vgw.vgw.vpc_id == vpc_id_2 }}"
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- name: add tags to the VGW
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_2 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
tags:
|
||||||
|
created_by: ec2_vpc_vgw integration tests
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- vgw.changed
|
||||||
|
- vgw.vgw.tags | length == 2
|
||||||
|
- "'created_by' in vgw.vgw.tags"
|
||||||
|
|
||||||
|
- name: test idempotence
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_2 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
tags:
|
||||||
|
created_by: ec2_vpc_vgw integration tests
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- not vgw.changed
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- name: remove tags from the VGW
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
vpc_id: '{{ vpc_id_2 }}'
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- vgw.changed
|
||||||
|
- vgw.vgw.tags | length == 1
|
||||||
|
- '"{{ vgw.vgw.tags.Name }}" == "{{ resource_prefix }}-vgw"'
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
- name: detach vpn gateway
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- vgw.changed
|
||||||
|
- not vgw.vgw.vpc_id
|
||||||
|
|
||||||
|
- name: test idempotence
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: present
|
||||||
|
name: "{{ resource_prefix }}-vgw"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
register: vgw
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- not vgw.changed
|
||||||
|
|
||||||
|
# ============================================================
|
||||||
|
|
||||||
|
always:
|
||||||
|
|
||||||
|
- debug: msg="Removing test dependencies"
|
||||||
|
|
||||||
|
- name: delete vpn gateway
|
||||||
|
ec2_vpc_vgw:
|
||||||
|
state: absent
|
||||||
|
vpn_gateway_id: '{{ vgw.vgw.id }}'
|
||||||
|
<<: *aws_connection_info
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: delete vpc
|
||||||
|
ec2_vpc_net:
|
||||||
|
name: "{{ resource_prefix }}-vpc-{{ item }}"
|
||||||
|
state: absent
|
||||||
|
cidr_block: "10.0.0.0/26"
|
||||||
|
<<: *aws_connection_info
|
||||||
|
loop: [1, 2]
|
||||||
|
register: result
|
||||||
|
retries: 10
|
||||||
|
delay: 5
|
||||||
|
until: result is not failed
|
||||||
|
ignore_errors: true
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "22cf9d88-b0ca-4a6c-8bfa-a2969541f25b",
|
||||||
"RequestId": "cd85ac52-d6bb-4359-a3f9-2a38da538ba2",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "249",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:18:47 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:29 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "ee7493f2-1db0-4edb-a2c8-66dc31c41df8",
|
||||||
"RequestId": "317446c6-62c4-4204-9987-d9a203bd71f8",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "249",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:18:47 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:29 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,28 +1,29 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnection": {
|
"VpnConnection": {
|
||||||
"VpnConnectionId": "vpn-c0d1cad2",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c0d1cad2\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.208.26.210</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>4PcswUCk9jOKcg0x6aVID9o5w73l0d0f</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.98.185</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>SGvO3U_dG.ofdKmpsDZsXsnZj7iWoZ.F</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
},
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "b0fe4793-77a1-4c92-978c-975c7b963c59",
|
||||||
"RequestId": "c02e6144-46bc-4da3-a15b-0695e6ef1fa4",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5234",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:28 GMT"
|
"date": "Mon, 16 Apr 2018 13:15:07 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "92162d1f-1563-4b14-8fc5-0821c50687cb",
|
||||||
"RequestId": "0e3d9efd-85ad-4942-b2e8-85ceaf577cf8",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "239",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:18:48 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:31 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,140 +1,179 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9806e28d",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Ansible-Test",
|
||||||
|
"Value": "VPN"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c3d1cad1",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "9843e24b-c094-451f-9be3-3f859dc39385",
|
||||||
"RequestId": "63558231-3b8b-4ee1-ab6c-cb0816524784",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5887",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:27 GMT"
|
"date": "Mon, 16 Apr 2018 13:15:06 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "d5d76451-0539-4de2-a197-dac87c4eb91b",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:17:13 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "7906c368-77fc-4afc-9ee4-c822dab4864e",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:17:29 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "b9e2ca97-e467-4dcc-a8fc-eff788e8ed49",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:17:44 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "249f8e82-8137-4b69-8002-969e880dbcd2",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:00 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "554aea72-2359-4c35-956b-1cd55c3b1ded",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:15 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "a9203775-14d5-4020-aa61-f6709cd6c455",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:32 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 18,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "c0621c72-8851-4c34-9d3d-7ae4bb5de50f",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:47 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 18,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "62aae2fc-e699-4a66-9bea-1b4b2b26ce35",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:47 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 18,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "0d20ed3c-a88e-42ba-87cc-f573d22b0a11",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:47 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,235 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [
|
||||||
|
{
|
||||||
|
"DestinationCidrBlock": "195.168.2.0/24",
|
||||||
|
"State": "available"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DestinationCidrBlock": "196.168.2.0/24",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 2,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 18,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 2,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 23,
|
||||||
|
"minute": 17,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9806e28d",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Ansible-Test",
|
||||||
|
"Value": "VPN"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "d5ce628c-8270-4bb8-b0d9-c68b5834a9a8",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:48 GMT",
|
||||||
|
"transfer-encoding": "chunked"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c0d1cad2",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c0d1cad2\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.208.26.210</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>4PcswUCk9jOKcg0x6aVID9o5w73l0d0f</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.98.185</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>SGvO3U_dG.ofdKmpsDZsXsnZj7iWoZ.F</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "34.208.26.210",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 28,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.166.98.185",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 28,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "96ef43c9-1210-47a7-87f7-22c85a05eb2b",
|
||||||
"RequestId": "5947bc65-4a3f-4b20-898c-47cc8e72d05b",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6118",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:29 GMT"
|
"date": "Mon, 16 Apr 2018 13:15:07 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [
|
||||||
|
{
|
||||||
|
"DestinationCidrBlock": "196.168.2.0/24",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DestinationCidrBlock": "195.168.2.0/24",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "3a0d05ae-dbf7-4885-9b50-db2899bc30d5",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"content-length": "1066",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:18:48 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c0d1cad2",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c0d1cad2\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.208.26.210</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>4PcswUCk9jOKcg0x6aVID9o5w73l0d0f</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.98.185</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>SGvO3U_dG.ofdKmpsDZsXsnZj7iWoZ.F</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "34.208.26.210",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 28,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.166.98.185",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 28,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "c4fb8aa0-39ad-4333-9b45-25b48ce5a8cd",
|
||||||
"RequestId": "cd32e7fa-7f6f-45c4-8397-26e4be66a2e3",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6118",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:29 GMT"
|
"date": "Mon, 16 Apr 2018 13:15:22 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,195 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
"Routes": [],
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-c3d1cad1",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-c0d1cad2",
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c0d1cad2\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.208.26.210</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>4PcswUCk9jOKcg0x6aVID9o5w73l0d0f</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.98.185</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>SGvO3U_dG.ofdKmpsDZsXsnZj7iWoZ.F</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [
|
|
||||||
{
|
|
||||||
"DestinationCidrBlock": "196.168.2.0/24",
|
|
||||||
"State": "available"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DestinationCidrBlock": "195.168.2.0/24",
|
|
||||||
"State": "available"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"VgwTelemetry": [
|
"VgwTelemetry": [
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 2,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "34.208.26.210",
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 7,
|
||||||
"second": 28,
|
"minute": 15,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 2,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "35.166.98.185",
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 7,
|
||||||
"second": 28,
|
"minute": 15,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"State": "pending",
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"State": "pending"
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "b728a197-4790-4987-afe1-23ba2d2edf55",
|
||||||
"RequestId": "36ccb71c-af2a-4c5f-b002-98e30c42f083",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6118",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:30 GMT"
|
"date": "Mon, 16 Apr 2018 13:15:38 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "06bdac8b-d1ec-48d6-9af4-b2d5bf3fa2f4",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:15:55 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "baefffe5-7638-423e-84fc-fd21fa7fc6d1",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:16:10 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "591329e5-78f5-4655-90c0-bf2b312b54af",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:16:26 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "4e526b69-b5ea-4f05-a81b-831aa5825e18",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:16:42 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9b06e28e",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9b06e28e\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.38</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.11.116.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.37</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>OwpaQwQaVjEM2nWZRYOhh3.TxgU5QyG1</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.130</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.38.13.135</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.129</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>oIbjSO1e2SVBqRuW2PzKn.CgsAdSOMME</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.11.116.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.38.13.135",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 7,
|
||||||
|
"minute": 15,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "534f5ec5-2d5f-46ac-8216-453fc4cad713",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:16:58 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,17 +1,17 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "9661b9b4-e18b-491b-8182-6548bfb680bb",
|
||||||
"RequestId": "e897639f-7728-4cc7-b04e-6837d4b54bd0",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:12:21 GMT",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:14 GMT"
|
"transfer-encoding": "chunked"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,28 +1,29 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnection": {
|
"VpnConnection": {
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c2d1cad0\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.66</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.26.111.81</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.65</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>RkrJYFTeDYWquAgtuNhYpVE8DBSyVmXP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.41.226.200</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>UL8iJhwcFcSI8fm_VqPVm9NiBtjmCbCC</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
},
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "0c445bcd-4e37-4368-b45d-b4560bde459f",
|
||||||
"RequestId": "16749092-9188-43a5-a888-283ed45873e7",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5236",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:13 GMT"
|
"date": "Mon, 16 Apr 2018 13:09:28 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "8deda3c9-1498-44ef-a663-111e93657c7f",
|
||||||
"RequestId": "8ed4bf62-d2b4-4a0d-9e4a-43bb51f04be2",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "239",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:12:22 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:15 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,118 +1,149 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "e3c0cd84-d327-4a9e-8cac-0361a0afaaac",
|
||||||
"RequestId": "0c723ac9-9eb8-486e-94e0-28753d78b191",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "4836",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:12 GMT"
|
"date": "Mon, 16 Apr 2018 13:09:28 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "3888db16-157b-404a-9fea-fe27e8bd556d",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:11:34 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "ada7d223-32a6-4b60-81bb-63bca2cb2d56",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:11:50 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "def174a4-c5c2-4e5b-a5b6-1c2448e869f1",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:05 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "7c65999e-0e70-4aac-a720-b2216dbe70af",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:20 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "1153ff47-87b6-40b1-bcdd-ae66c4d4a3ae",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:21 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "c0748f40-1e33-4f0b-9417-77092bfc9090",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:21 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,202 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Ansible-Test",
|
||||||
|
"Value": "VPN"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 41,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 11,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"State": "available"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "16aa6a4d-0fca-4035-b607-c223fc424f81",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:22 GMT",
|
||||||
|
"transfer-encoding": "chunked"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Ansible-Test",
|
||||||
|
"Value": "VPN"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "0d463b0f-87ea-4ada-a79a-f2bb0910c31c",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"content-length": "878",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:12:22 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c2d1cad0\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.66</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.26.111.81</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.65</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>RkrJYFTeDYWquAgtuNhYpVE8DBSyVmXP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.41.226.200</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>UL8iJhwcFcSI8fm_VqPVm9NiBtjmCbCC</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.26.111.81",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 14,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.41.226.200",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 14,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "bab29653-3411-49bb-af70-3d7b3284ca06",
|
||||||
"RequestId": "d8126b94-4b79-4636-8cd3-780f95752ebe",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:14 GMT"
|
"date": "Mon, 16 Apr 2018 13:09:28 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c2d1cad0\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.66</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.26.111.81</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.65</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>RkrJYFTeDYWquAgtuNhYpVE8DBSyVmXP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.41.226.200</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>UL8iJhwcFcSI8fm_VqPVm9NiBtjmCbCC</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.26.111.81",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 14,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.41.226.200",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 14,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "d3732d64-34fb-40eb-bddb-c34e5e571921",
|
||||||
"RequestId": "a200d727-f66f-4bd1-af1a-c9e5b57763b0",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:14 GMT"
|
"date": "Mon, 16 Apr 2018 13:09:44 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,170 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
"Routes": [],
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-c2d1cad0",
|
|
||||||
"Tags": [
|
|
||||||
{
|
|
||||||
"Value": "VPN",
|
|
||||||
"Key": "Ansible-Test"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-c2d1cad0\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.66</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.26.111.81</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.65</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>RkrJYFTeDYWquAgtuNhYpVE8DBSyVmXP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.41.226.200</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>UL8iJhwcFcSI8fm_VqPVm9NiBtjmCbCC</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"VgwTelemetry": [
|
"VgwTelemetry": [
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 0,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "52.26.111.81",
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 29,
|
||||||
"second": 14,
|
"minute": 9,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 0,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "52.41.226.200",
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 29,
|
||||||
"second": 14,
|
"minute": 9,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"State": "pending",
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"State": "pending"
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "bd3ccd25-a6d6-44cf-9371-f01ca22d3f57",
|
||||||
"RequestId": "5406a662-9a2a-41ac-aed1-7aa4ca87d236",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:15 GMT"
|
"date": "Mon, 16 Apr 2018 13:10:00 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "36906e17-078f-4c15-9e01-af3e233af2d3",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:10:15 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "cab9bb1a-7afe-4c5f-b106-038b10cba813",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:10:31 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "938c6207-f582-4935-bef5-a9e3b01e18e1",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:10:47 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "0bf3fb58-412a-447c-8cf7-af7185ec7f93",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:11:02 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9e06e28b",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9e06e28b\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.206</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>34.212.254.7</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.205</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>b2DU0T9yhIWbDPukoG2NBtbPNrruDTRm</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.106</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.254.75</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.105</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>FOhYu_zZqXdic2Bvm_dYS03ONJCK.LfP</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "34.212.254.7",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.160.254.75",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 29,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "b67d7024-2bad-4283-b440-5519b5541867",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:11:18 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,28 +1,29 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnection": {
|
"VpnConnection": {
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-ddd1cacf\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.186</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.165.127.130</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.185</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>PiBZrBwBpHPjQJxL2zLH12WDOSbIX8lv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.37.57.18</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>TpmJttQ9t2E7J2JHiU4LBSRQ4pfdUUOv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
},
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "3239a34a-f3ed-4ba7-9d31-99265ceda2a9",
|
||||||
"RequestId": "a8072f03-db43-4afa-aee0-00c12792a5bf",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5237",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:08 GMT"
|
"date": "Mon, 16 Apr 2018 13:06:47 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "bdcbf647-c1cc-4971-b133-3e1cd8ee36d5",
|
||||||
"RequestId": "a89de9ea-6e3c-44c4-9c16-bd9e41ebfa07",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "239",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:09:24 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:09 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,107 +1,137 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "87d4db59-f8e6-4d4c-9800-7c0bda5ebee2",
|
||||||
"RequestId": "a28c742b-c924-430d-a993-2fd52e0850ab",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "4397",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:08 GMT"
|
"date": "Mon, 16 Apr 2018 13:06:46 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "40e8326d-2f4b-4761-a2f9-011c989b0d11",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:08:53 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 3,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "5c5688ae-0f6e-4d88-adb6-d9f654c74b42",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:09:08 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 3,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "7a5c5c59-d48a-467b-9414-097a93c923ae",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6124",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:09:23 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 3,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "cb26ba43-cfc6-466b-8bde-5e63d58728e0",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6124",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:09:24 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 3,
|
||||||
|
"minute": 9,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "1005f435-3e86-461f-a96c-a4f45c32c795",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6124",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:09:24 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "edac5b19-14be-4b2d-ab47-a2279de47d40",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"content-length": "705",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:09:25 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-ddd1cacf\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.186</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.165.127.130</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.185</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>PiBZrBwBpHPjQJxL2zLH12WDOSbIX8lv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.37.57.18</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>TpmJttQ9t2E7J2JHiU4LBSRQ4pfdUUOv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.165.127.130",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 9,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.37.57.18",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 9,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "07ee7fe5-c16a-4940-b099-3cd39aa9c2c8",
|
||||||
"RequestId": "a2f41704-db5d-4939-82e0-39e14f8fd9fb",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6122",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:09 GMT"
|
"date": "Mon, 16 Apr 2018 13:06:47 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ddd1cacf",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-ddd1cacf\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.186</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.165.127.130</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.185</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>PiBZrBwBpHPjQJxL2zLH12WDOSbIX8lv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.37.57.18</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>TpmJttQ9t2E7J2JHiU4LBSRQ4pfdUUOv</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.165.127.130",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 9,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.37.57.18",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 9,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "7f34b516-b810-4a2b-8e9c-2e4ac5ea32f2",
|
||||||
"RequestId": "42ba9a12-4c17-4ab4-8e6f-51ddc5ab46b7",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6122",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:09 GMT"
|
"date": "Mon, 16 Apr 2018 13:07:03 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "3f0d6abf-421a-4e56-9f19-a95c4639cbe6",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:07:18 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "8174eae1-ae94-492c-b8d3-369a912dc994",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:07:34 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "ab76cd4e-9a69-48f4-8fa6-7b1ea9710f2d",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:07:49 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "9e552112-f325-4d3e-bb3d-0698b69a9074",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:08:05 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "1c10aa65-e78f-41e5-bb24-7902b7974bff",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:08:21 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9f06e28a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9f06e28a\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.114</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.43.202.248</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.113</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>spNJGPBQfzbK8hNvpHNOaaml_paRZNKs</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.126</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.70.185.193</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.125</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>yE7hnuavW4SzersgnMyKIoKbd0rE8giW</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.43.202.248",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 47,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.70.185.193",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 26,
|
||||||
|
"minute": 8,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "1963dfb1-564a-4a0c-932c-ecddcdb39d41",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:08:37 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,17 +1,17 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "8738f361-b294-47d7-a6d7-82d289db5e5f",
|
||||||
"RequestId": "eb7076a9-b2ef-410b-84fc-e973749f1e4a",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:06:44 GMT",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:05 GMT"
|
"transfer-encoding": "chunked"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,28 +1,29 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnection": {
|
"VpnConnection": {
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
},
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "d94359a8-8a4f-4087-b848-27de6253ff6c",
|
||||||
"RequestId": "16dfb72e-2456-4358-a751-a07ed149b87e",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5234",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:02 GMT"
|
"date": "Mon, 16 Apr 2018 13:04:35 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "e780e8ce-5417-4a33-a39e-dd78a18b69a5",
|
||||||
"RequestId": "82ea6b05-e768-41c3-ad34-4f34ff08eb38",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "239",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 13:06:44 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:23:06 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,96 +1,115 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "35740449-70e9-4723-b5c4-8c82dc5ec5e6",
|
||||||
"RequestId": "85097037-302a-4d4a-9422-9f7080bc3fda",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "3673",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:01 GMT"
|
"date": "Mon, 16 Apr 2018 13:04:35 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "2d618f80-4045-4951-8d2e-c8d33395a141",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:42 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "c9e48b82-1edc-4aa7-ac4d-c45c7bd4ae19",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:42 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "b346f588-dc55-4be6-95c8-e4708609a4e2",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:43 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,162 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9d06e288",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9206e287",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9306e286",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "a5650999-a5ad-4eea-b407-6d9913738f24",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:43 GMT",
|
||||||
|
"transfer-encoding": "chunked"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "5e8c0572-8f87-4708-9aca-997ea3736bc4",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6122",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:43 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "134576b2-43ed-40ac-aefb-c4770a81f587",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6407",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:44 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 28,
|
||||||
|
"minute": 6,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "5daf9a13-6835-4e6d-be9f-040405da8dff",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6407",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:44 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Tags": [
|
||||||
|
{
|
||||||
|
"Key": "One",
|
||||||
|
"Value": "one"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Key": "Two",
|
||||||
|
"Value": "two"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "561b039d-ffee-42dc-a390-6dde1ae4fcfe",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"content-length": "990",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:44 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "29d88495-a6b4-4f53-9ec7-32ac21fd80c6",
|
||||||
"RequestId": "f1f0d604-1259-4c11-aa9b-42deee0d281f",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:02 GMT"
|
"date": "Mon, 16 Apr 2018 13:04:35 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "a647316d-7079-4a0a-8ad3-91a0a36dc124",
|
||||||
"RequestId": "d4c54530-c478-4988-9239-8f1cc20493a1",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:03 GMT"
|
"date": "Mon, 16 Apr 2018 13:04:51 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,142 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
"Routes": [],
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-d9d1cacb",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-ded1cacc",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dfd1cacd",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "deleted",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"VgwTelemetry": [
|
"VgwTelemetry": [
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 0,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 36,
|
||||||
"second": 2,
|
"minute": 4,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
},
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Status": "DOWN",
|
"StatusMessage": "",
|
||||||
"AcceptedRouteCount": 0,
|
"Status": "DOWN",
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
"LastStatusChange": {
|
"LastStatusChange": {
|
||||||
"hour": 20,
|
"year": 2018,
|
||||||
"__class__": "datetime",
|
"hour": 13,
|
||||||
"month": 6,
|
"second": 36,
|
||||||
"second": 2,
|
"minute": 4,
|
||||||
"microsecond": 0,
|
"__class__": "datetime",
|
||||||
"year": 2017,
|
"day": 16,
|
||||||
"day": 12,
|
"month": 4,
|
||||||
"minute": 23
|
"microsecond": 0
|
||||||
},
|
}
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"State": "pending",
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"State": "pending"
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
|
||||||
"StaticRoutesOnly": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "f913c208-ac39-4b8e-aba5-1410f2e4d6cf",
|
||||||
"RequestId": "d162c9cb-b175-4b5c-a715-88c8eb6e17f0",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:04 GMT"
|
"date": "Mon, 16 Apr 2018 13:05:07 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "260f7ff4-ec3b-452e-90f3-9ffb3d5f6895",
|
||||||
"RequestId": "b101d28f-94a1-4c81-8e45-5a7af98c15cc",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:04 GMT"
|
"date": "Mon, 16 Apr 2018 13:05:23 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,75 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Tags": [
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
{
|
"Category": "VPN",
|
||||||
"Value": "one",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"Key": "One"
|
"Routes": [],
|
||||||
},
|
|
||||||
{
|
|
||||||
"Value": "two",
|
|
||||||
"Key": "Two"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"VgwTelemetry": [
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "fb308284-ea47-44f9-af61-3c0271809839",
|
||||||
"RequestId": "6286c7c0-7697-4a50-ae0e-41a8c87f3a41",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:05 GMT"
|
"date": "Mon, 16 Apr 2018 13:05:39 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,75 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Tags": [
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
{
|
"Category": "VPN",
|
||||||
"Value": "one",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"Key": "One"
|
"Routes": [],
|
||||||
},
|
|
||||||
{
|
|
||||||
"Value": "two",
|
|
||||||
"Key": "Two"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"VgwTelemetry": [
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "5e0c4efb-8f23-4ce1-b1fe-c5bccac45063",
|
||||||
"RequestId": "b2ac8baa-3f10-4968-89d3-1fd2d5259b3d",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:05 GMT"
|
"date": "Mon, 16 Apr 2018 13:05:53 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,75 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dcd1cace",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Tags": [
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
{
|
"Category": "VPN",
|
||||||
"Value": "one",
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
"Key": "One"
|
"Routes": [],
|
||||||
},
|
|
||||||
{
|
|
||||||
"Value": "two",
|
|
||||||
"Key": "Two"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-dcd1cace\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.250</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.160.213.236</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.249</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>wMZl5SKvXhcUddu7GjrWLkFVXNIZEPS_</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.94</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.96.196</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.93</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>NhVDPRk1mGt1iPkTFwXAFfuZLKPNm9se</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"VgwTelemetry": [
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.160.213.236",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "52.40.96.196",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 2,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 23
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "be516d5b-d999-4de7-bd3e-9c0cb5de857c",
|
||||||
"RequestId": "b31af8f6-705c-491f-982f-ec59237daece",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6120",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:23:05 GMT"
|
"date": "Mon, 16 Apr 2018 13:06:09 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9c06e289",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9c06e289\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.22</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.163.112.252</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.12.21</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>HxHFvA2bBdWo_sBRDHLiRCDviolMhaMR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.42</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>54.148.246.46</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.41</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>YANkpCz981zsiW_QkZCFrjN1QAiKm73G</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "35.163.112.252",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 36,
|
||||||
|
"minute": 4,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "54.148.246.46",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 13,
|
||||||
|
"second": 57,
|
||||||
|
"minute": 5,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "007948c6-bac8-4f43-8b80-5e7c32f2d1e8",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6120",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 13:06:25 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,28 +1,29 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnection": {
|
"VpnConnection": {
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-d8d1caca\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.161.20.177</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>D5B4Y.dutl2Z4I3uChHN7NcgQAd_PFcH</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.123.146</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>.RsAAZ92ymhAD3Pys_tMdZFGaosxQmMo</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
|
||||||
"Routes": [],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
},
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "e312dbd3-7956-4b0e-bb66-29a85e65e477",
|
||||||
"RequestId": "01e716ac-65d9-4247-864c-f750f8c025a0",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "5233",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:22:36 GMT"
|
"date": "Mon, 16 Apr 2018 12:53:33 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,17 +1,16 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "fd2ddf0e-f378-46d7-92e7-1b6008d98b04",
|
||||||
"RequestId": "a09068c5-75bd-4292-8b79-05607d8f9cf7",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "239",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 12:56:11 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:22:37 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,52 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d6d1cac4",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-9706e282",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Correct",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d4d1cac6",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6a06e27f",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Tags": [
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
{
|
||||||
"Type": "ipsec.1",
|
"Key": "Wrong",
|
||||||
|
"Value": "Tag"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Routes": [],
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
},
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-dad1cac8",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"Routes": [],
|
"VpnConnectionId": "vpn-6f06e27a",
|
||||||
"State": "deleted",
|
"Category": "VPN",
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
"Routes": [],
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "bcdba325-fd96-4c4b-bb15-dc9a88c456ae",
|
||||||
"RequestId": "8340a216-1c4b-4cea-b19e-83b661c227f0",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"content-length": "1917",
|
||||||
"vary": "Accept-Encoding",
|
"server": "AmazonEC2",
|
||||||
"server": "AmazonEC2",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"date": "Mon, 16 Apr 2018 12:53:33 GMT"
|
||||||
"date": "Mon, 12 Jun 2017 20:22:35 GMT"
|
},
|
||||||
}
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 10,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "ee75ebe8-0587-49b5-a231-0d31f713e3be",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6116",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:55:39 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 10,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "5cbe30a2-8771-4116-ba7d-78c32a06546e",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6116",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:55:55 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 10,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 56,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "3d3d8178-0359-4c80-85c7-410411a532f4",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:56:11 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 10,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 56,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "67e4f285-2875-4615-ba4e-a36105d24dd7",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:56:11 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 10,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 56,
|
||||||
|
"minute": 55,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "available"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "a31cc536-1f4b-46d7-a91d-c8d0909eb897",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6118",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:56:11 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "deleted"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "0cf4c8bf-4f69-4f9f-b6ae-aecbbcb60081",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"content-length": "705",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:56:12 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-d8d1caca\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.161.20.177</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>D5B4Y.dutl2Z4I3uChHN7NcgQAd_PFcH</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.123.146</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>.RsAAZ92ymhAD3Pys_tMdZFGaosxQmMo</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.161.20.177",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 36,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 22
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.166.123.146",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 36,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 22
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "07019e0f-0012-47dc-8f86-950bb2b36e52",
|
||||||
"RequestId": "6b5f3e76-8538-4467-8d39-c5afe2248182",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6116",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:22:36 GMT"
|
"date": "Mon, 16 Apr 2018 12:53:33 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -1,65 +1,66 @@
|
||||||
{
|
{
|
||||||
"status_code": 200,
|
|
||||||
"data": {
|
"data": {
|
||||||
"VpnConnections": [
|
"VpnConnections": [
|
||||||
{
|
{
|
||||||
"VpnConnectionId": "vpn-d8d1caca",
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-d8d1caca\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.18</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.161.20.177</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.13.17</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>D5B4Y.dutl2Z4I3uChHN7NcgQAd_PFcH</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.170</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>35.166.123.146</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.15.169</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>.RsAAZ92ymhAD3Pys_tMdZFGaosxQmMo</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>\n",
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
"Routes": [],
|
"Category": "VPN",
|
||||||
"VgwTelemetry": [
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
{
|
"Routes": [],
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.161.20.177",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 36,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 22
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Status": "DOWN",
|
|
||||||
"AcceptedRouteCount": 0,
|
|
||||||
"OutsideIpAddress": "35.166.123.146",
|
|
||||||
"LastStatusChange": {
|
|
||||||
"hour": 20,
|
|
||||||
"__class__": "datetime",
|
|
||||||
"month": 6,
|
|
||||||
"second": 36,
|
|
||||||
"microsecond": 0,
|
|
||||||
"year": 2017,
|
|
||||||
"day": 12,
|
|
||||||
"minute": 22
|
|
||||||
},
|
|
||||||
"StatusMessage": ""
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"State": "pending",
|
|
||||||
"VpnGatewayId": "vgw-35d70c2b",
|
|
||||||
"CustomerGatewayId": "cgw-6113c87f",
|
|
||||||
"Type": "ipsec.1",
|
|
||||||
"Options": {
|
"Options": {
|
||||||
"StaticRoutesOnly": true
|
"StaticRoutesOnly": true
|
||||||
}
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ResponseMetadata": {
|
"ResponseMetadata": {
|
||||||
"RetryAttempts": 0,
|
"HTTPStatusCode": 200,
|
||||||
"HTTPStatusCode": 200,
|
"RequestId": "8174c5d9-d54a-4173-aef3-5e9c3e86bac6",
|
||||||
"RequestId": "5f2cb472-c561-4989-81c9-8570e8cca1e4",
|
|
||||||
"HTTPHeaders": {
|
"HTTPHeaders": {
|
||||||
"transfer-encoding": "chunked",
|
"vary": "Accept-Encoding",
|
||||||
"vary": "Accept-Encoding",
|
"content-length": "6116",
|
||||||
"server": "AmazonEC2",
|
"server": "AmazonEC2",
|
||||||
"content-type": "text/xml;charset=UTF-8",
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
"date": "Mon, 12 Jun 2017 20:22:37 GMT"
|
"date": "Mon, 16 Apr 2018 12:53:49 GMT"
|
||||||
}
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"status_code": 200
|
||||||
}
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "46432541-20bd-444f-ab0a-38db7c36aab5",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6116",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:54:05 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "84598175-301b-40e4-884d-4e4777267375",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6116",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:54:21 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"data": {
|
||||||
|
"VpnConnections": [
|
||||||
|
{
|
||||||
|
"CustomerGatewayId": "cgw-6113c87f",
|
||||||
|
"VpnConnectionId": "vpn-9006e285",
|
||||||
|
"Category": "VPN",
|
||||||
|
"CustomerGatewayConfiguration": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<vpn_connection id=\"vpn-9006e285\">\n <customer_gateway_id>cgw-6113c87f</customer_gateway_id>\n <vpn_gateway_id>vgw-35d70c2b</vpn_gateway_id>\n <vpn_connection_type>ipsec.1</vpn_connection_type>\n <vpn_connection_attributes>NoBGPVPNConnection</vpn_connection_attributes>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.194</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.24.101.167</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.193</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>ZqeYNh0tOtKAbA2GjOnfP1ckplrsKR0I</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n <ipsec_tunnel>\n <customer_gateway>\n <tunnel_outside_address>\n <ip_address>9.8.7.6</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.58</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </customer_gateway>\n <vpn_gateway>\n <tunnel_outside_address>\n <ip_address>52.40.126.9</ip_address>\n </tunnel_outside_address>\n <tunnel_inside_address>\n <ip_address>169.254.14.57</ip_address>\n <network_mask>255.255.255.252</network_mask>\n <network_cidr>30</network_cidr>\n </tunnel_inside_address>\n </vpn_gateway>\n <ike>\n <authentication_protocol>sha1</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>28800</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>main</mode>\n <pre_shared_key>2hNRbfughR8JKpllR1mEg0uPRckXd0bR</pre_shared_key>\n </ike>\n <ipsec>\n <protocol>esp</protocol>\n <authentication_protocol>hmac-sha1-96</authentication_protocol>\n <encryption_protocol>aes-128-cbc</encryption_protocol>\n <lifetime>3600</lifetime>\n <perfect_forward_secrecy>group2</perfect_forward_secrecy>\n <mode>tunnel</mode>\n <clear_df_bit>true</clear_df_bit>\n <fragmentation_before_encryption>true</fragmentation_before_encryption>\n <tcp_mss_adjustment>1379</tcp_mss_adjustment>\n <dead_peer_detection>\n <interval>10</interval>\n <retries>3</retries>\n </dead_peer_detection>\n </ipsec>\n </ipsec_tunnel>\n</vpn_connection>",
|
||||||
|
"Routes": [],
|
||||||
|
"Options": {
|
||||||
|
"StaticRoutesOnly": true
|
||||||
|
},
|
||||||
|
"Type": "ipsec.1",
|
||||||
|
"VgwTelemetry": [
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.24.101.167",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"StatusMessage": "",
|
||||||
|
"Status": "DOWN",
|
||||||
|
"OutsideIpAddress": "52.40.126.9",
|
||||||
|
"AcceptedRouteCount": 0,
|
||||||
|
"LastStatusChange": {
|
||||||
|
"year": 2018,
|
||||||
|
"hour": 12,
|
||||||
|
"second": 34,
|
||||||
|
"minute": 53,
|
||||||
|
"__class__": "datetime",
|
||||||
|
"day": 16,
|
||||||
|
"month": 4,
|
||||||
|
"microsecond": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"VpnGatewayId": "vgw-35d70c2b",
|
||||||
|
"State": "pending"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"ResponseMetadata": {
|
||||||
|
"HTTPStatusCode": 200,
|
||||||
|
"RequestId": "092fbf9c-c529-4f71-855e-20b4289dc6f4",
|
||||||
|
"HTTPHeaders": {
|
||||||
|
"vary": "Accept-Encoding",
|
||||||
|
"content-length": "6116",
|
||||||
|
"server": "AmazonEC2",
|
||||||
|
"content-type": "text/xml;charset=UTF-8",
|
||||||
|
"date": "Mon, 16 Apr 2018 12:54:37 GMT"
|
||||||
|
},
|
||||||
|
"RetryAttempts": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status_code": 200
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue