Русский

CONTACT
  Online Support 24/7
  PlanetSky Forum

HOWTO
  Choose type of connection
  Run console commands
  PIDs
  Customer statistic
  Choice of speed

SATELLITE PARAMETERS
  Express AM1 - narrow beam
  Express AM22

TYPE OF CONNECTION
  ACCELERATOR TELLINET
  Accelerator with VPN
  Accelerator without VPN
  Accelerator instead of PROXY

  PROXY
    Express AM22

  VPN for Windows
    Express AM1
      FAKE
      BEST

  VPN for Linux (all SAT)
      FAKE
      BEST

  OpenVPN
  GUI for Windows
  for Linux

  PlanetSKY IP

  GRE
    for Linux
    for FreeBSD

  IPIP
    for Linux

DVB CARDS SETTINGS
  PentaMedia
    Pent@NET for Windows
    Pent@Vision for Windows
    Pent@Office
  SkyStar
    SS1 for Windows
    SS2 for Windows
    SS2 for xNIX
  Twinhan
    Twinhan Vision DTV for Windows
    Twinhan Vision DTV for Linux

CHECK TOOLS
  IP and PROXY check

ARCHIVE
  News Archive
[18.10.2004]

Setting GRE tunnel for FreeBSD






#!/bin/sh
#gre-establisher
GRE_I_FACE=gre1
#Ваш наземный IP
EARTH_IP=earth_link_IP
VPN_SRV_IP=213.138.113.2
#PS_IP=
#PS_GRAY_SRV - чётный, PS_GRAY_CLI=PS_GRAY_SRV+1
PS_GRAY_SRV=192.168.101.XXX
PS_GRAY_CLI=192.168.101.XXY
#Ваш наземный шлюз
EARTH_GW=eath_ling_GW
LOG=/tmp/gre_log
# your network
#EARTH_NET=

#!/bin/sh
ifconfig $GRE_I_FACE create
ifconfig $GRE_I_FACE tunnel $EARTH_IP $VPN_SRV_IP
ifconfig $GRE_I_FACE inet $PS_GRAY_CLI $PS_GRAY_SRV netmask 255.255.255.0
ipfw add 2001 allow ip from $PS_GRAY_CLI to any via $GRE_I_FACE
route add $VPN_SRV_IP $EARTH_GW
route add $EARTH_NET $EARTH_GW
natd -n $GRE_I_FACE -f /etc/natd.conf
ipfw add 1 divert 8668 ip from any to any via dvb0
ipfw add 1600 divert 8668 ip from any to any via $GRE_I_FACE
route change default $PS_GRAY_SRV


PLANETSKY Support Team