#!/bin/sh

#######################################################################
#
# tinc-up configuration file
# This file is run once tinc has brought up an interface to use
#
# ppp0 is an endpoint, therefore we must route ourself to the endpoint
# The second command adds a route to access the rest of the network
#
#######################################################################

#EXAMPLE:
#In this example, my device's IP on the VPN is 192.168.69.7
#Replace 192.168.69.7 with your device's IP Address
#My VPN network is 192.168.69.0/24

#ifconfig ppp0 192.168.69.7 192.168.69.7 up
#route add -net 192.168.69.0 192.168.69.7
