1
|
<?php
|
2
|
|
3
|
global $priv_list;
|
4
|
|
5
|
$priv_list['user-shell-access'] = array();
|
6
|
$priv_list['user-shell-access']['name'] = "User - System - Shell account access";
|
7
|
$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
|
$priv_list['user-copy-files']['name'] = "User - System - Copy files";
|
12
|
$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
|
$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
|
$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
|
$priv_list['user-l2tp-dialin'] = array();
|
31
|
$priv_list['user-l2tp-dialin']['name'] = "User - VPN - L2TP Dialin";
|
32
|
$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
|
$priv_list['user-pptp-dialin']['name'] = "User - VPN - PPTP Dialin";
|
36
|
$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
|
$priv_list['user-pppoe-dialin']['name'] = "User - VPN - PPPOE Dialin";
|
40
|
$priv_list['user-pppoe-dialin']['descr'] = "Indicates whether the user is allowed to dial in via PPPOE";
|
41
|
|
42
|
?>
|