summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/l2tp
diff options
context:
space:
mode:
authorVladislav Grishenko <themiron@mail.ru>2017-10-30 17:27:22 +0500
committerVladislav Grishenko <themiron@mail.ru>2017-12-05 20:39:15 +0500
commitae72e179afa46d82865aa8d459b32cc27541e4a7 (patch)
treef426671bf7ef9cecf06937f7a673f8b03b7a58bd /accel-pppd/ctrl/l2tp
parent71770d7a41278731f676a11ff943da735a09c5b0 (diff)
downloadaccel-ppp-xebd-ae72e179afa46d82865aa8d459b32cc27541e4a7.tar.gz
accel-ppp-xebd-ae72e179afa46d82865aa8d459b32cc27541e4a7.zip
ppp: implement per-ctrl ppp interface rename support, may be overrided by radius
Reuse exsisting radius functionality and allow set iterface name template for pppoe/pptp/l2tp, '%d' specification will be replaced automagically to the next available index by kernel. PPP interface rename allows to easy differ client's interfaces from the other ppp ones, for example, with just netfilter interface rules. Example: [pptp] ifname=pptp%d will produce pptp0, pptp1, ...
Diffstat (limited to 'accel-pppd/ctrl/l2tp')
-rw-r--r--accel-pppd/ctrl/l2tp/l2tp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/accel-pppd/ctrl/l2tp/l2tp.c b/accel-pppd/ctrl/l2tp/l2tp.c
index a44d31d..55881b8 100644
--- a/accel-pppd/ctrl/l2tp/l2tp.c
+++ b/accel-pppd/ctrl/l2tp/l2tp.c
@@ -94,6 +94,7 @@ static int conf_mppe = MPPE_UNSET;
static int conf_dataseq = L2TP_DATASEQ_ALLOW;
static int conf_reorder_timeout = 0;
static const char *conf_ip_pool;
+static const char *conf_ifname;
static unsigned int stat_conn_starting;
static unsigned int stat_conn_active;
@@ -1796,6 +1797,8 @@ static int l2tp_session_start_data_channel(struct l2tp_sess_t *sess)
goto err;
}
}
+ if (conf_ifname)
+ sess->ppp.ses.ifname_rename = _strdup(conf_ifname);
sess->ppp.ses.ctrl = &sess->ctrl;
sess->apses_state = APSTATE_INIT;
@@ -4928,6 +4931,7 @@ static void load_config(void)
}
conf_ip_pool = conf_get_opt("l2tp", "ip-pool");
+ conf_ifname = conf_get_opt("l2tp", "ifname");
switch (iprange_check_activation()) {
case IPRANGE_DISABLED: