-
Notifications
You must be signed in to change notification settings - Fork 2
/
acct.py
executable file
·115 lines (97 loc) · 4.09 KB
/
acct.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Todo make error handler for radius settings config readings
import logg
import confiparse
import socket
import sys
import pyrad.packet
from pyrad.client import Client
from pyrad.dictionary import Dictionary
log = logg.Loggable(alog_name=__name__)
ch = confiparse.ConfigOpener()
ch = ch.radius_config()
radiusaddr = ch['radius_addr']
radiusscrt = ch['radius_secret']
radiusacctprt = int(ch['radius_acct_port'])
getrdir = '/opt/asteracct'
srv = Client(server=radiusaddr, secret=radiusscrt, acctport=radiusacctprt,
dict=Dictionary(getrdir + "/dicts/dictionary", getrdir + "/dicts/dictionary.cisco",
getrdir + "/dicts/dictionary.rfc2866"))
def SendPacket(srv, req):
global log
"""
:param srv:
:param req:
"""
try:
reply = srv.SendPacket(req)
return reply
except pyrad.client.Timeout:
log.critical("RADIUS server does not reply")
req = dict()
log.critical("Please check the settings or Radius service availability")
pass
except socket.error, error:
log.critical("Network error: " + error[1])
sys.exit(1)
def accountingStart(aani, adni, aconfid, asetuptime, aconnectime, acallorig='h323-call-origin=originate',
anassip=ch['rnas_addr'], anasport=0, anasidentifier='asterisk'):
"""
Function to send Accounting Start
:rtype : string
:type anassip: string
"""
global srv
# srv = Client(server=radiusaddr, acctport=radiusacctprt, secret=radiusscrt, dict=Dictionary("./dicts/dictionary",
# "./dicts/dictionary.cisco"))
req = srv.CreateAcctPacket(User_Name=aani, code=pyrad.packet.AccountingRequest)
req["Acct-Status-Type"] = "Start"
req["NAS-IP-Address"] = anassip
req["NAS-Port"] = anasport
req["NAS-Identifier"] = anasidentifier
req["Called-Station-Id"] = aani
req["Calling-Station-Id"] = adni
req['h323-conf-id'] = 'h323-conf-id=' + aconfid
req['h323-setup-time'] = 'h323-setup-time=' + asetuptime
req['h323-connect-time'] = 'h323-connect-time=' + aconnectime
req['h323-call-origin'] = acallorig
reply = SendPacket(srv, req)
if reply.code == pyrad.packet.AccountingResponse:
log.debug(" --- Accounting START packet for session %s have been sent successfully" %
req['h323-conf-id'])
def accountingStop(aani, aconfid, acause, adni, asetuptime, acalltype,
aconnectime, adisconectime, agwid, acallorig='originate',
aacountsessiontime=0, anassip=ch['rnas_addr']):
"""
Function to send Accounting STOP packet
:rtype : str
:return:
"""
global srv
req = srv.CreateAcctPacket(User_Name=aani, code=pyrad.packet.AccountingRequest)
req["NAS-IP-Address"] = anassip
req["Acct-Status-Type"] = "Stop"
req['h323-conf-id'] = 'h323-conf-id=' + aconfid
# req['Acct-Session-Time'] = 120
# req["Acct-Input-Octets"] = random.randrange(2**10, 2**30)
# req["Acct-Output-Octets"] = random.randrange(2**10, 2**30)
# req["Acct-Session-Time"] = random.randrange(120, 3600)
req["Acct-Terminate-Cause"] = int(acause)
req["Called-Station-Id"] = adni
req["Calling-Station-Id"] = aani
req['h323-setup-time'] = 'h323-setup-time=' + asetuptime
req["h323-connect-time"] = "h323-connect-time=" + aconnectime
req["h323-disconnect-time"] = "h323-disconnect-time=" + adisconectime
req['h323-disconnect-cause'] = 'h323-disconnect-cause=' + str(acause)
req['h323-gw-id'] = 'h323-gw-id=' + agwid
req['h323-call-origin'] = 'h323-call-origin=' + acallorig
req['Acct-Session-Time'] = int(aacountsessiontime)
if acalltype == 'SIP' or acalltype == 'IAX':
req['h323-call-type'] = 'h323-call-type=' + 'VoIP'
else:
req['h323-call-type'] = 'h323-call-type=' + 'Telephony'
reply = SendPacket(srv, req)
if reply.code == pyrad.packet.AccountingResponse:
log.debug(" --- Accounting STOP packet for session %s have been sent successfully"
% req['h323-conf-id'])