These forums are CLOSED. Please visit the new forums HERE
LL httprequest server address ranges |
|
|
Al Bravo
Retired
Join date: 29 Jun 2004
Posts: 373
|
10-01-2006 12:26
I am trying to lock down a web server PHP directory to just source IP addresses originating from Linden Labs (llHttpRequest() calls). Has anyone narrowed down the IP address range for these?
_____________________
|
|
Hugo Dalgleish
Registered User
Join date: 14 May 2006
Posts: 27
|
10-01-2006 14:42
These address ranges are listed on the LSL wiki (http://lslwiki.com/lslwiki/wakka.php?wakka=llEmail) for IP address ranges for the llEmail command:
66.150.244.0/23 69.25.104.0/23 72.5.12.0/22 If I've observed the behaviour of llEmail and llHTTPRequest correctly, those address ranges should be valid for HTTP requests as well as email. |
|
Lex Neva
wears dorky glasses
Join date: 27 Nov 2004
Posts: 1,361
|
10-02-2006 11:16
You never know when they'll add to the cluster on you... how about locking it down to just LL's IP blocks? I think those've been posted here before.
|
|
Hewee Zetkin
Registered User
Join date: 20 Jul 2006
Posts: 2,702
|
10-02-2006 19:12
Use a reverse DNS lookup.
|
|
ScriptScavenger Lei
Registered User
Join date: 3 Sep 2006
Posts: 14
|
bingo
10-02-2006 19:27
Use a reverse DNS lookup. in case u hadnt relised that there are multiple servers with diff IP's depending on where and when u log in it grabs the closest one if the closest one is busy having com problems ect it auto routs depending on how much bandwith you have acess to it could bounce u to another continent for the best connection (only happend once... so far )... best to find it once your connected. |
|
Hewee Zetkin
Registered User
Join date: 20 Jul 2006
Posts: 2,702
|
10-02-2006 19:45
in case u hadnt relised that there are multiple servers with diff IP's depending on where and when u log in it grabs the closest one if the closest one is busy having com problems ect it auto routs depending on how much bandwith you have acess to it could bounce u to another continent for the best connection (only happend once... so far )... best to find it once your connected. WTF does that have to do with the price of tea in China? |
|
Hugo Dalgleish
Registered User
Join date: 14 May 2006
Posts: 27
|
10-02-2006 22:51
WTF does that have to do with the price of tea in China? Using DNS lookups could work, however that's extra time that the web server has to spend processing the incoming request (as it would have to do a gethostbyname call on each incoming request), it's much easier to narrow it down by IP address ranges. The ones I provided should work - I'm looking at http requests made by one of my test objects in Discordia sim, it's coming from one of the IP's in the 72.5.12.0/22 range right now |