COPS-Client
view release on metacpan or search on metacpan
examples/profiles/NonRealTimePollingService.pl view on Meta::CPAN
#!/usr/local/bin/perl
use strict;
use COPS::Client;
my $cops_client = new COPS::Client (
[
VendorID => 'COPS Client',
ServerIP => '192.168.1.1',
ServerPort => '3918',
Timeout => 2,
DEBUG => 5,
DataHandler => \&display_data
]
);
if ( $cops_client->connect() )
{
$cops_client->set_command("set");
$cops_client->subscriber_set("ipv4","172.26.65.19");
$cops_client->gate_specification_add(
[
Direction => 'Upstream',
DSCPToSMark => 0,
Priority => 0,
PreEmption => 0,
Gate_Flags => 0,
Gate_TOSField => 0,
Gate_TOSMask => 0,
Gate_Class => 0,
Gate_T1 => 0,
Gate_T2 => 0,
Gate_T3 => 0,
Gate_T4 => 0
]
);
$cops_client->classifier_add(
[
Classifier_Type => 'Classifier',
Classifier_Priority => 64,
Classifier_SourceIP => "172.26.65.19",
Classifier_ClassifierID => 100,
Classifier_State => 1
]
);
$cops_client->envelope_add (
[
Envelope_Type => "authorize,reserve,commit",
Service_Type => 'Non-Real-Time Polling Service',
'Envelope_authorize_Traffic Priority' => 0,
'Envelope_authorize_Request Transmission Policy' => 0,
'Envelope_authorize_Maximum Sustained Traffic Rate' => 1000000,
'Envelope_authorize_Maximum Traffic Burst' => 2000,
'Envelope_authorize_Minimum Reserved Traffic Rate' => 1000000,
'Envelope_authorize_Assumed Minimum Reserved Traffic Rate Packet Size' => 64,
'Envelope_authorize_Maximum Concatenated Burst' => 2000,
'Envelope_authorize_Nominal Polling Interval' => 80000,
'Envelope_authorize_Required Attribute Mask' => 0,
'Envelope_authorize_Forbidden Attribute Mask' => 0,
'Envelope_reserve_Traffic Priority' => 0,
'Envelope_reserve_Request Transmission Policy' => 0,
'Envelope_reserve_Maximum Sustained Traffic Rate' => 1000000,
'Envelope_reserve_Maximum Traffic Burst' => 2000,
'Envelope_reserve_Minimum Reserved Traffic Rate' => 1000000,
( run in 0.612 second using v1.01-cache-2.11-cpan-39bf76dae61 )