]> git.ipfire.org Git - people/stevee/network.git/blame - functions.constants
Add detection for wireless devices.
[people/stevee/network.git] / functions.constants
CommitLineData
1848564d
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
e9ea243e
MT
22# Set gettext text domain.
23TEXTDOMAIN="network"
24
1848564d 25# Enable colors by default
6dbd51ba 26COLOURS="auto"
1848564d 27
65c75fad 28BASE_DIR=/usr/lib/network
1848564d
MT
29CONFIG_DIR=/etc/network
30HOOKS_DIR=${BASE_DIR}/hooks
059469a8 31LOG_DIR=/var/log/network
65c75fad 32RUN_DIR=/run/network
1848564d
MT
33ZONE_DIR=${CONFIG_DIR}
34
059469a8 35RED_RUN=${RUN_DIR}/red
1848564d
MT
36PPP_SECRETS=/etc/ppp/secrets
37
38CONFIG_FILE=${CONFIG_DIR}/network_config
ff8ec5ef 39CONFIG_FILE_PARAMS="COLOURS DEBUG SHELL TIMEOUT_RESTART"
31e59f2b 40CONFIG_HOSTNAME="/etc/hostname"
ff8ec5ef
MT
41
42RED_DB_DIR=${RUN_DIR}/red
b816e04b 43ROUTING_DB_DIR=${RUN_DIR}/routing
1848564d 44
059469a8
MT
45DB_CONNECTION_FILE="${LOG_DIR}/connections.db"
46
1848564d
MT
47# Proper error codes
48EXIT_OK=0
49EXIT_ERROR=1
50EXIT_CONF_ERROR=2
1578dae9 51EXIT_ERROR_ASSERT=3
1848564d
MT
52
53STATUS_UP=0
54STATUS_DOWN=1
711ffac1
MT
55STATUS_NOCARRIER=2
56
57STATUS_TEXT[${STATUS_UP}]="UP"
58STATUS_TEXT[${STATUS_DOWN}]="DOWN"
59STATUS_TEXT[${STATUS_NOCARRIER}]="NO CARRIER"
60
61STATUS_COLOUR[${STATUS_UP}]=${COLOUR_GREEN}
62STATUS_COLOUR[${STATUS_DOWN}]=${COLOUR_RED}
63STATUS_COLOUR[${STATUS_NOCARRIER}]=${COLOUR_YELLOW}
1848564d
MT
64
65DISCOVER_OK=0
66DISCOVER_ERROR=1
67DISCOVER_NOT_SUPPORTED=2
68
7de0637a
MT
69# The user is able to create zones that begin
70# with these names followed by a number.
71ZONE_LOCAL="lan"
72ZONE_NONLOCAL="upl"
73VALID_ZONES="${ZONE_LOCAL} ${ZONE_NONLOCAL}"
1848564d
MT
74
75SYS_CLASS_NET="/sys/class/net"
2ae4f579
MT
76
77# Timeout values
78TIMEOUT_RESTART=2
711ffac1 79
feb76eaf 80DEVICE_PRINT_LINE1=" %-24s %s\n"
a1a8f0f4 81
8c63fa13 82PORT_PATTERN="pN"