Overcoming cap problems

loosecannon ... as I see you are working a way around the telkom 'intellect' ... as you are planning to charge for the routing service ... rightly so, since it's your time/brain and B/W ... do you not think that Telkom will become wise ... (geez never thought I'd use Telkom and wise so close in a sentence) .... but anyway don't you think that they will be able to come up with some BS way to stop you in yout tracks ... as you are in a way taking money from their mercedes fund ... I mean you taking the food from their children's mouths ...



We are Telkom - Resistance is Futile - You will be Assimilated
 
Competency levels at Telkrap are somewhat suspect - their reputation is evidence of this...
 
well the system is getting really good now i can setup a reliable mesh with a couple of tunnels ... now to get the required routes broadcast on the mesh ...

i want it to be automatic and no manual intervention ie perl scripts ... i want to use SAIX own broadcasts to get best accuracy ...

telkom cant really do much about it once it is setup and it is fair use as they promote use of local instead of international
 
here is a rudimentry script that i am using at the moment to bring up the tunnel ...

the tunnel is defined as a link between the 2 internet addresses [external only so nat is not a issue] to keep it simple and to be able to have 2 networks with the same network range talk to each other i use a unique subnet for inter connection on this link (255.255.255.252 net mask) so there will be 1 unique address each side ...

if the networks are numbered the same NAT/PROXING MUST be used to have machines on the network talk to each other

<blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote">
#Configure Tunnel tun0
LOCAL=`ip addr show dev &lt;DEVICE TO ATTACH TO (ppp0)&gt; |grep inet |head -1 |cut -d/ -f1 |awk '{print $2}'`
REMOTEIP=`dig +short &lt;REMOTE HOSTNAME SO DYNDNS WILL WORK&gt; A IN |tail -1`

SR=`ping -c 3 &lt;REMOTE LINK IP&gt; |grep "packet loss" |awk '{print $7}'`
if [ "$SR" != "0%" ];then
/sbin/ip link set tun0 down
/sbin/ip tun del tun0
/sbin/ip tunnel add tun0 mode gre remote $REMOTEIP local $LOCAL ttl 255
/sbin/ip addr add &lt;LOCAL LINK IP&gt;/30 dev tun0
/sbin/ip link set tun0 up
fi;
<hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">
 
Top
Sign up to the MyBroadband newsletter
X