]> git.ipfire.org Git - people/stevee/network.git/blame - functions.constants
STP: Remove sed substitutions and get information directly from mstpctl.
[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
22# Enable colors by default
6dbd51ba 23COLOURS="auto"
1848564d
MT
24
25BASE_DIR=/lib/network
26CONFIG_DIR=/etc/network
27HOOKS_DIR=${BASE_DIR}/hooks
059469a8 28LOG_DIR=/var/log/network
1848564d
MT
29RUN_DIR=/var/run/network
30ZONE_DIR=${CONFIG_DIR}
31
059469a8 32RED_RUN=${RUN_DIR}/red
1848564d
MT
33PPP_SECRETS=/etc/ppp/secrets
34
35CONFIG_FILE=${CONFIG_DIR}/network_config
ff8ec5ef 36CONFIG_FILE_PARAMS="COLOURS DEBUG SHELL TIMEOUT_RESTART"
31e59f2b 37CONFIG_HOSTNAME="/etc/hostname"
ff8ec5ef
MT
38
39RED_DB_DIR=${RUN_DIR}/red
b816e04b 40ROUTING_DB_DIR=${RUN_DIR}/routing
1848564d 41
059469a8
MT
42DB_CONNECTION_FILE="${LOG_DIR}/connections.db"
43
1848564d
MT
44# Proper error codes
45EXIT_OK=0
46EXIT_ERROR=1
47EXIT_CONF_ERROR=2
1578dae9 48EXIT_ERROR_ASSERT=3
1848564d
MT
49
50STATUS_UP=0
51STATUS_DOWN=1
711ffac1
MT
52STATUS_NOCARRIER=2
53
54STATUS_TEXT[${STATUS_UP}]="UP"
55STATUS_TEXT[${STATUS_DOWN}]="DOWN"
56STATUS_TEXT[${STATUS_NOCARRIER}]="NO CARRIER"
57
58STATUS_COLOUR[${STATUS_UP}]=${COLOUR_GREEN}
59STATUS_COLOUR[${STATUS_DOWN}]=${COLOUR_RED}
60STATUS_COLOUR[${STATUS_NOCARRIER}]=${COLOUR_YELLOW}
1848564d
MT
61
62DISCOVER_OK=0
63DISCOVER_ERROR=1
64DISCOVER_NOT_SUPPORTED=2
65
66# The user is able to create zones that begin with these names
67VALID_ZONES="green orange red grey"
68
69SYS_CLASS_NET="/sys/class/net"
2ae4f579
MT
70
71# Timeout values
72TIMEOUT_RESTART=2
711ffac1 73
feb76eaf 74DEVICE_PRINT_LINE1=" %-24s %s\n"
a1a8f0f4
MT
75
76PORT_PATTERN=portN