Jump to content

Stating a range with non-standard IP addresses?

I'm tracking some of the IPs one of my games connects to to establish a connection to a master server.  I want to add these IPs to a firewall rule, however I'm finding that these IPs vary and not what I'd call "standard" addresses.  Take a look at the two I've found (they're non-private):

 

ec2-54-187-136-153.us-west-2.compute.amazonaws.com
ec2-54-213-198-253.us-west-2.compute.amazonaws.com

So I want to put both of them into a range, but I don't know if that would be possible.  How would I go about doing that?  Something like this?

 

Quote

ec2-54-187-136-153.us-west-2.compute.amazonaws.com-ec2-54-213-198-253.us-west-2.compute.amazonaws.com

 

[witty signature]

Link to comment
Share on other sites

Link to post
Share on other sites

What firewall are we talking about?

A simple access list with a permit ip 54.187.136.153 and a second permit of 54.213.198.253 should work.

Current Network Layout:

Current Build Log/PC:

Prior Build Log/PC:

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Lurick said:

What firewall are we talking about?

A simple access list with a permit ip 54.187.136.153 and a second permit of 54.213.198.253 should work.

Windows Firewall, because I'm cheap.

 

So I ditch the web address and just use the IPs within?

[witty signature]

Link to comment
Share on other sites

Link to post
Share on other sites

3 minutes ago, Timmy-P said:

I'm tracking some of the IPs one of my games connects to to establish a connection to a master server.  I want to add these IPs to a firewall rule, however I'm finding that these IPs vary and not what I'd call "standard" addresses.  Take a look at the two I've found (they're non-private):

 


ec2-54-187-136-153.us-west-2.compute.amazonaws.com
ec2-54-213-198-253.us-west-2.compute.amazonaws.com

So I want to put both of them into a range, but I don't know if that would be possible.  How would I go about doing that?  Something like this?

 

 

They must have a auto server pull up system on AWS.

 

They are not IP addresses they are domain names.

 

If the firewall can use domain names try this.

*.us-west-2.compute.amazonaws.com

* means wildcard so any sub domain under us-west-2.compute.amazonaws.com is effect, you may not want this though.

 

To see the ip ping the domain names in cmd and it  will put the ip in [xxx.xxx.xxx.xxx]

Use the ip/ip range for the firewall.

Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler

What are you looking for?

 

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

2 minutes ago, Timmy-P said:

Windows Firewall, because I'm cheap.

 

So I ditch the web address and just use the IPs within?

Yah, unless Windows Firewall needs hostnames at which point you could put in something like *compute.amazonaws.com, I haven't worked with Windows Firewall much so I don't know if it takes wildcards and whatnot

Current Network Layout:

Current Build Log/PC:

Prior Build Log/PC:

Link to comment
Share on other sites

Link to post
Share on other sites

There is the data

PS C:\WINDOWS\system32> ping ec2-54-187-136-153.us-west-2.compute.amazonaws.com

Pinging ec2-54-187-136-153.us-west-2.compute.amazonaws.com [54.187.136.153] with 32 bytes of data:
Reply from 54.187.136.153: bytes=32 time=184ms TTL=39
Reply from 54.187.136.153: bytes=32 time=184ms TTL=39
Reply from 54.187.136.153: bytes=32 time=184ms TTL=39
Reply from 54.187.136.153: bytes=32 time=184ms TTL=39

Ping statistics for 54.187.136.153:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 184ms, Maximum = 184ms, Average = 184ms
PS C:\WINDOWS\system32> ping ec2-54-213-198-253.us-west-2.compute.amazonaws.com

Pinging ec2-54-213-198-253.us-west-2.compute.amazonaws.com [54.213.198.253] with 32 bytes of data:
Reply from 54.213.198.253: bytes=32 time=176ms TTL=39
Reply from 54.213.198.253: bytes=32 time=176ms TTL=39
Reply from 54.213.198.253: bytes=32 time=177ms TTL=39
Reply from 54.213.198.253: bytes=32 time=177ms TTL=39

Ping statistics for 54.213.198.253:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 176ms, Maximum = 177ms, Average = 176ms
PS C:\WINDOWS\system32>

 

Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler
Spoiler

What are you looking for?

 

 

 

 

 

 

 

 

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

Are you blocking outbound connections?

Link to comment
Share on other sites

Link to post
Share on other sites

3 minutes ago, .spider. said:

Are you blocking outbound connections?

I'm whitelisting inbound connections.

[witty signature]

Link to comment
Share on other sites

Link to post
Share on other sites

10 minutes ago, Timmy-P said:

I'm whitelisting inbound connections.

Why? You said yourself that the game is establishing the connection 

Link to comment
Share on other sites

Link to post
Share on other sites

15 minutes ago, .spider. said:

Why? You said yourself that the game is establishing the connection 

Because I'm an idiot, that's why.

[witty signature]

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×