Source security group isn't working as expected in AWS

前端 未结 3 765
情话喂你
情话喂你 2021-02-01 03:42

I have an EC2 node, node1 (security group SG1) which should be accessible from another EC2 node, node2 (security group SG2) on port 9200. Now, when I add an inbound rule in SG1

3条回答
  •  梦谈多话
    2021-02-01 04:17

    Are you attempting to connect to node1's public or private address? From the documentation:

    When you specify a security group as the source or destination for a rule, the rule affects all instances associated with the security group. For example, incoming traffic is allowed based on the private IP addresses of the instances that are associated with the source security group.

    I've been burned on this before by trying to connect to an EC2 instance's public address... sounds very similar to your setup, actually. When you wire up the inbound rule so that the source is a security group, you must communicate through the source instance's private address.

    Some things to be aware of:

    • In EC2 Classic, private IP addresses can change on stop/start of an EC2 instance. If you're using EC2 classic you may want to look into this discussion on Elastic DNS Names for a more static addressing solution.
    • If you set up your environment in VPC, private IP addresses are static. You can also change security group membership of running instances.

提交回复
热议问题