<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://opensimulator.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tinsel</id>
		<title>OpenSimulator - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tinsel"/>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Special:Contributions/Tinsel"/>
		<updated>2026-05-07T18:23:12Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.9</generator>

	<entry>
		<id>http://opensimulator.org/wiki/NAT_Loopback_Routers</id>
		<title>NAT Loopback Routers</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/NAT_Loopback_Routers"/>
				<updated>2009-03-27T22:33:24Z</updated>
		
		<summary type="html">&lt;p&gt;Tinsel: updating loopback modem specs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page show a list of routers supporting NAT Loopback feature in order to be able to TP in your region when you host it at home on the same computer or local network. Please, feel free to contribute such a list especially if these routers are cheap :D&lt;br /&gt;
&lt;br /&gt;
&amp;quot;D-Link DGL-4xxx series of routers have the largest available nat table of any router on the market&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;These routers range from 70$-180$ USD depending on where you live and purchase from.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* D-Link DGL-4500 : http://games.dlink.com/products/?pid=643&lt;br /&gt;
* D-Link DGL-4300 : http://games.dlink.com/products/?pid=370&lt;br /&gt;
* D-Link DGL-4100 : http://games.dlink.com/products/?pid=371&lt;br /&gt;
&lt;br /&gt;
Other routers&lt;br /&gt;
&lt;br /&gt;
* Linksys WRT54G : http://en.wikipedia.org/wiki/Linksys_WRT54G_series&lt;br /&gt;
* Arris TM502b : http://portforward.com/english/routers/port_forwarding/Arris/TM502b/&lt;br /&gt;
* NetGear WGR614 : has been confirmed to work out of the box&lt;br /&gt;
 (note:  NetGear WGR614 does not work with ISP required gateway modems)&lt;br /&gt;
&lt;br /&gt;
Routers that users has experienced problems with&lt;br /&gt;
&lt;br /&gt;
* Belkin F5D7230-4&lt;br /&gt;
(the router might work if 3rd party firmware is used, such as DD-WRT : http://www.dd-wrt.com/ )&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
For Linux based Netfilter (iptables) routers, you want to set up the NAT table with some extra entries&lt;br /&gt;
The following script is something to get you started, you'll need to fix up the variables at the top to match your system and network.&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#&lt;br /&gt;
# vvvvv - Fix these! - vvvvv&lt;br /&gt;
IPTABLES=/usr/sbin/iptables&lt;br /&gt;
LAN_NETWORK=192.168.0.0/24&lt;br /&gt;
SERVER_IP=192.168.0.2&lt;br /&gt;
INTERNET_IP=100.100.100.100&lt;br /&gt;
REMOTING_PORT=8895&lt;br /&gt;
REGION_PORT=9000&lt;br /&gt;
# ^^^^^ - Fix these! - ^^^^^&lt;br /&gt;
&lt;br /&gt;
# First, the Destination NAT, anything going to the external address on our ports, we redirect to the server&lt;br /&gt;
# Note, if you have a double NAT running and this router doesn't actually have the internet IP address, you'll&lt;br /&gt;
# need another set of PREROUTING-DNAT lines with the --destination (-d) set to the internet facing private address&lt;br /&gt;
$IPTABLES -t nat -I PREROUTING -d $INTERNET_IP -p tcp --dport $REMOTING_PORT --jump DNAT --to-destination $SERVER_IP&lt;br /&gt;
$IPTABLES -t nat -I PREROUTING -d $INTERNET_IP -p udp --dport $REGION_PORT --jump DNAT --to-destination $SERVER_IP&lt;br /&gt;
$IPTABLES -t nat -I PREROUTING -d $INTERNET_IP -p tcp --dport $REGION_PORT --jump DNAT --to-destination $SERVER_IP&lt;br /&gt;
&lt;br /&gt;
# Second, the Source NAT, we need this so that returning packets to our LAN clients go back through the router first,&lt;br /&gt;
# otherwise, the server will try to talk directly to the client and the client will reject them&lt;br /&gt;
$IPTABLES -t nat -I POSTROUTING -s $LAN_NETWORK -d $SERVER_IP -p tcp --dport $REMOTING_PORT --jump SNAT --to-source $INTERNET_IP&lt;br /&gt;
$IPTABLES -t nat -I POSTROUTING -s $LAN_NETWORK -d $SERVER_IP -p udp --dport $REGION_PORT --jump SNAT --to-source $INTERNET_IP&lt;br /&gt;
$IPTABLES -t nat -I POSTROUTING -s $LAN_NETWORK -d $SERVER_IP -p tcp --dport $REGION_PORT --jump SNAT --to-source $INTERNET_IP&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Hell Fire|Hell Fire]]&lt;/div&gt;</summary>
		<author><name>Tinsel</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List/3rd_Rock_Grid</id>
		<title>Grid List/3rd Rock Grid</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List/3rd_Rock_Grid"/>
				<updated>2009-01-30T18:46:10Z</updated>
		
		<summary type="html">&lt;p&gt;Tinsel: Updating new loginuri&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Name:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3rd Rock Grid&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Website:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;http://www.3rdrockgrid.com/ (1)&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Login URI:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-loginuri http://3rg.changeip.org:8002/&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Wiki/Forum:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;[http://forums.3rdrockgrid.com/ 3RG Forums]&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Approx # Regions&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;138&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Approx # Users&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;+/- 735&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Logins/day&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;+/-325&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(1) First grid with working money!&lt;br /&gt;
Land selling/buying activated too!&lt;br /&gt;
&lt;br /&gt;
We use only &amp;quot;PREMIUM&amp;quot; bandwidth providers and Professional Grade Servers!&lt;br /&gt;
Object Permissions similar to SL&lt;/div&gt;</summary>
		<author><name>Tinsel</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List/Metapocalypse</id>
		<title>Grid List/Metapocalypse</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List/Metapocalypse"/>
				<updated>2009-01-09T07:41:15Z</updated>
		
		<summary type="html">&lt;p&gt;Tinsel: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tinsel</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List/Metapocalypse</id>
		<title>Grid List/Metapocalypse</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List/Metapocalypse"/>
				<updated>2008-12-22T12:18:08Z</updated>
		
		<summary type="html">&lt;p&gt;Tinsel: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Name&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Metapocalypse Grid&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Website&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;http://www.metapocalypse.com&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Login URI&amp;lt;/td&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;-loginuri  -loginpage  -helperuri &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Metapocalypse Grid is currently closed to the public as it is being set up and tested.  Scheduled opening of Grid is 1st quarter 2009.  For questions please contact Gridnaut Engineer in SL.&lt;/div&gt;</summary>
		<author><name>Tinsel</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Grid_List/Metapocalypse</id>
		<title>Grid List/Metapocalypse</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Grid_List/Metapocalypse"/>
				<updated>2008-12-15T07:27:48Z</updated>
		
		<summary type="html">&lt;p&gt;Tinsel: New page: The Metapocalypse Grid is currently closed to the public during setup and testing.  Planned public opening first quarter 2009. &amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt;   &amp;lt;tr&amp;gt;    ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Metapocalypse Grid is currently closed to the public during setup and testing.  Planned public opening first quarter 2009.&lt;br /&gt;
&amp;lt;table border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Name:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;METAPOCALYPSE&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Website:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;http://www.metapocalypse.com/&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Login URI:&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-loginuri  -loginpage&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Approx # Regions&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Approx # Users&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Logins/day&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;Language&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;English&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tinsel</name></author>	</entry>

	</feed>