summaryrefslogtreecommitdiff
path: root/httemplate/misc/process/nms-add_iface.html
blob: ffc70d9cc53e5b8c0af42f2ce3d257de3e9ab51c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<% header('Interface added') %>
</BODY></HTML>
<%init>

# XXX: access rights

my $host = $cgi->param('host'); 
die 'invalid host' unless $host =~ /^[0-9.a-zA-Z\-]+$/;

my $iface = $cgi->param('iface');
die 'invalid iface' unless $iface =~ /^[0-9A-Za-z_\-.\\\/ ]+$/;

my $serviceid = $cgi->param('serviceid');
die 'invalid serviceid' unless $serviceid =~ /^[0-9A-Za-z_\-.\\\/ ]+$/;
  
my $conf = new FS::Conf;
my $system = $conf->config('network_monitoring_system');

my $nms = new FS::NetworkMonitoringSystem;
$nms->add_interface($host,$iface,$serviceid);

</%init>