]> git.ipfire.org Git - people/jschlag/network.git/blame - src/ppp/pppoe-server
pppoe-server: Read configuration again
[people/jschlag/network.git] / src / ppp / pppoe-server
CommitLineData
999d659b
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2012 IPFire Network Development Team #
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# This is a wrapper script which does some on-the-fly configuration of the
23# pppoe-server daemon, which does not support any configuration files.
24
25LOG_FACILITY="pppoe-server"
26. /usr/lib/network/functions
27
e9df08ad
MT
28# Read network settings
29network_settings_read
30
999d659b
MT
31zone=${1}
32assert zone_exists ${zone}
33
34action=${2}
35
36# Read the configuration file of this hook.
79b2155d 37zone_config_settings_read_by_hook "${zone}" "pppoe-server"
999d659b
MT
38assert isset SUBNET
39
40pppd_options="${RUN_DIR}/${zone}/pppoe-server-options"
41pool_file="${RUN_DIR}/${zone}/pppoe-server-pool"
42
43case "${action}" in
44 cleanup)
45 # Cleanup all temporary files.
46 rm -f ${pppd_options} ${pool_file}
47
48 exit ${EXIT_OK}
49 ;;
50
51 *)
52 # Don't let the server fork to background.
53 pppoe_cmdline="-F"
54
55 # Add the interface to listen to.
56 pppoe_cmdline="${pppoe_cmdline} -I ${zone}"
57
58 # Enable kernel-mode PPPoE.
680cc689
MT
59 # (The version that is shipped with IPFire does not
60 # support the userspace implementation and therefore
61 # kernel-mode PPPoE is enabled by default).
62 #pppoe_cmdline="${pppoe_cmdline} -k"
999d659b
MT
63
64 # Randomize session IDs.
65 pppoe_cmdline="${pppoe_cmdline} -r"
66
67 # Add the service name.
68 if isset SERVICE_NAME; then
69 pppoe_cmdline="${pppoe_cmdline} -S ${SERVICE_NAME// /_}"
70 fi
71
f94b87ab
MT
72 # Add the max. number of sessions per MAC address.
73 if [ ${MAX_SESSIONS} -gt 0 ]; then
74 pppoe_cmdline="${pppoe_cmdline} -x ${MAX_SESSIONS}"
75 fi
76
999d659b 77 # Create the pppoe-server-options file.
70c971ce
SS
78 pppoe_server_options ${pppd_options} ${zone} \
79 --dns-servers="${DNS_SERVERS}"
999d659b
MT
80 pppoe_cmdline="${pppoe_cmdline} -O ${pppd_options}"
81
82 # Configure the IP addresses.
83 local_address=$(ipv4_get_network ${SUBNET})
84 pppoe_cmdline="${pppoe_cmdline} -L ${local_address}"
85
86 # Create the address pool.
87 pppoe_server_poolfile ${pool_file} ${SUBNET}
88 pppoe_cmdline="${pppoe_cmdline} -p ${pool_file}"
89
90 log INFO "Starting pppoe-server daemon..."
91 log DEBUG "pppoe-server options: ${pppoe_cmdline}"
92
93 # Now exec the actual pppoe-server binary.
94 exec pppoe-server ${pppoe_cmdline}
95
96 error "Could not execute pppoe-server. Exiting."
97 exit ${EXIT_ERROR}
98 ;;
99esac
100
101exit ${EXIT_ERROR}