#!/bin/sh # router.rc WAN router meta-configuration file. # # This file defines variables used by the router shell scripts # and should be located in /etc directory. These are: # # ROUTER_BOOT= Boot flag (YES/NO). # WAN_CONF_DIR= Directory of wanpipe config files. # WAN_LOG= Where to put start-up log file. # WAN_LOCK_DIR= Directory of wanpipe device lock files. # WAN_INTR_DIR= Directory of wanpipe interface files. # WAN_FIRMWARE_DIR= Directory of protocol firmware files. # WAN_DEVICES= Name of the wanpipe devices to be # loaded on 'router start' # (ex: "wanpipe1 wanpipe2 wanpipe3...") # # Note: Name of wanpipe devices correspond # to the configuration files in # /etc/wanpipe directory: # (ex. /etc/wanpipe/wanpipe1.conf ) # # Note: This file is 'executed' by the shell script, so # the usual shell syntax must be observed. ROUTER_BOOT=YES WAN_CONF_DIR=/etc/wanpipe WAN_LOG=/var/log/wanrouter WAN_LOCK_DIR=/var/lock WAN_INTR_DIR=/etc/wanpipe/interfaces WAN_FIRMWARE_DIR=/etc/wanpipe/firmware WAN_DEVICES="wanpipe1"