1 |
2816a089
|
sullrich
|
<?php
|
2 |
|
|
|
3 |
ae2951d3
|
sullrich
|
global $priv_list;
|
4 |
|
|
|
5 |
2816a089
|
sullrich
|
$priv_list['user-shell-access'] = array();
|
6 |
ad7446d1
|
sullrich
|
$priv_list['user-shell-access']['name'] = "User - System - Shell account access";
|
7 |
2816a089
|
sullrich
|
$priv_list['user-shell-access']['descr'] = "Indicates whether the user is able to login for ".
|
8 |
|
|
"example via SSH.";
|
9 |
|
|
|
10 |
|
|
$priv_list['user-copy-files'] = array();
|
11 |
ad7446d1
|
sullrich
|
$priv_list['user-copy-files']['name'] = "User - System - Copy files";
|
12 |
2816a089
|
sullrich
|
$priv_list['user-copy-files']['descr'] = "Indicates whether the user is allowed to copy files ".
|
13 |
|
|
"onto the {$g['product_name']} appliance via SCP/SFTP. ".
|
14 |
|
|
"If you are going to use this privilege, you must install ".
|
15 |
|
|
"scponly on the appliance (Hint: pkg_add -r scponly).";
|
16 |
|
|
|
17 |
3e251b12
|
Erik Fonnesbeck
|
$priv_list['user-ssh-tunnel'] = array();
|
18 |
|
|
$priv_list['user-ssh-tunnel']['name'] = "User - System - SSH tunneling";
|
19 |
|
|
$priv_list['user-ssh-tunnel']['descr'] = "Indicates whether the user is able to login for ".
|
20 |
|
|
"tunneling via SSH when they have no shell access. ".
|
21 |
|
|
"Note: User - System - Copy files conflicts with ".
|
22 |
|
|
"this privilege.";
|
23 |
|
|
|
24 |
fbfd675a
|
jim-p
|
$priv_list['user-ipsec-xauth-dialin'] = array();
|
25 |
|
|
$priv_list['user-ipsec-xauth-dialin']['name'] = "User - VPN - IPsec xauth Dialin";
|
26 |
|
|
$priv_list['user-ipsec-xauth-dialin']['descr'] = "Indicates whether the user is allowed to dial in via IPsec xauth ".
|
27 |
|
|
"(Note: Does not allow shell access, but may allow ".
|
28 |
|
|
"the user to create ssh tunnels)";
|
29 |
|
|
|
30 |
2816a089
|
sullrich
|
$priv_list['user-l2tp-dialin'] = array();
|
31 |
ad7446d1
|
sullrich
|
$priv_list['user-l2tp-dialin']['name'] = "User - VPN - L2TP Dialin";
|
32 |
2816a089
|
sullrich
|
$priv_list['user-l2tp-dialin']['descr'] = "Indicates whether the user is allowed to dial in via L2TP";
|
33 |
|
|
|
34 |
|
|
$priv_list['user-pptp-dialin'] = array();
|
35 |
ad7446d1
|
sullrich
|
$priv_list['user-pptp-dialin']['name'] = "User - VPN - PPTP Dialin";
|
36 |
2816a089
|
sullrich
|
$priv_list['user-pptp-dialin']['descr'] = "Indicates whether the user is allowed to dial in via PPTP";
|
37 |
|
|
|
38 |
|
|
$priv_list['user-pppoe-dialin'] = array();
|
39 |
ad7446d1
|
sullrich
|
$priv_list['user-pppoe-dialin']['name'] = "User - VPN - PPPOE Dialin";
|
40 |
2816a089
|
sullrich
|
$priv_list['user-pppoe-dialin']['descr'] = "Indicates whether the user is allowed to dial in via PPPOE";
|
41 |
|
|
|
42 |
|
|
?>
|