| Satellite in LAN
|
Computers from your local area network can access Internet via computer with DVB card connected to satellite internet.
You need to share internet connection on your computer with DVB card to do it.
There are several ways of internet connection sharing:
1. With integrated Windows tools.
There is ICS (Internet Connection Sharing) service integrated in Windows. You need to open access to your internet connection to activate it:

where LAN is the name of your local area network connection,
SP-VPN - name of your connection to Internet.
You should set IP address of your DVB router as a default gateway on all other computers in your LAN.
Also you need to specify addresses of DNS servers: 207.226.45.242 and 207.226.45.243
2. For Unix systems you should use NAT (Network Address Translation) with your firewall (e.g. iptables)
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -j SNAT --to-source 172.0.0.1
Where 192.168.0.0/24 - your LAN, 172.0.0.1 - your IP provided to you by VPN server (or real IP from SpectrumSat)
You should set IP address of your DVB router as a default gateway on all other computers in your LAN.
3. With help of additional software
There are lots of tools for connection sharing and traffic accounting for Windows.
Some of the most popular are
Trafic Inspector,
UserGate,
WinRoute,
WinGate
Settings for such software you can see on appropriate websites.
4. The most simple way to share internet traffic in LAN is to use Tellinet accelerator.
To activate traffic sharing feature in Tellinet you need to make few changes to the configuration file recv.ini:
in section
[etcp_parameters]
server_address=207.226.45.249
server_announcement_address=none
http_listen_address=9202
socks_listen_address=9203
change IP address of tc-recv client from local (default setting) to its LAN IP address
[etcp_parameters]
server_address=207.226.45.249
server_announcement_address=none
http_listen_address=192.168.0.1:9202
socks_listen_address=192.168.0.1:9203
where 192.168.0.1 - IP address of your computer in LAN.
on all other computers in your network set proxy server address 192.168.0.1 and port 9202.
|