提交 0d454ad7 编写于 作者: V Vladislav Grishenko

sstp: add snmp support

上级 3b5a479a
......@@ -2409,6 +2409,12 @@ static int show_stat_exec(const char *cmd, char * const *fields, int fields_cnt,
return CLI_CMD_OK;
}
void __export sstp_get_stat(unsigned int **starting, unsigned int **active)
{
*starting = &stat_starting;
*active = &stat_active;
}
static void load_config(void)
{
int ipmode;
......
......@@ -34,7 +34,8 @@ statPPTP OBJECT IDENTIFIER ::= { accelPPPStat 3 }
statL2TP OBJECT IDENTIFIER ::= { accelPPPStat 4 }
statPPPOE OBJECT IDENTIFIER ::= { accelPPPStat 5 }
statIPOE OBJECT IDENTIFIER ::= { accelPPPStat 6 }
--statRadius OBJECT IDENTIFIER ::= { accelPPPStat 6 }
statSSTP OBJECT IDENTIFIER ::= { accelPPPStat 7 }
--statRadius OBJECT IDENTIFIER ::= { accelPPPStat 8 }
statCoreUpTime OBJECT-TYPE
......@@ -177,6 +178,26 @@ statIPOEActive OBJECT-TYPE
"count of active connections"
::= { statIPOE 2 }
--
-- SSTP stats
--
statSSTPStarting OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"count of connections which are
in starting phase"
::= { statSSTP 1 }
statSSTPActive OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"count of active connections"
::= { statSSTP 2 }
--
-- PPP session table
......@@ -252,8 +273,9 @@ sesType OBJECT-TYPE
SYNTAX INTEGER {
pptp(1),
l2tp(2),
pppoe(3)
ipoe(4)
pppoe(3),
ipoe(4),
sstp(6)
}
MAX-ACCESS read-only
STATUS current
......
......@@ -11,6 +11,7 @@ SET(sources
statPPPOE.c
statPPTP.c
statIPOE.c
statSSTP.c
terminate.c
shutdown.c
exec_cli.c
......
......@@ -17,6 +17,7 @@
#include "statL2TP.h"
#include "statPPPOE.h"
#include "statIPOE.h"
#include "statSSTP.h"
#include "terminate.h"
#include "shutdown.h"
#include "sessionTable.h"
......@@ -108,6 +109,7 @@ static void *snmp_thread(void *a)
init_statL2TP();
init_statPPPOE();
init_statIPOE();
init_statSSTP();
init_terminate();
init_shutdown();
init_sessionTable();
......
......@@ -45,6 +45,7 @@ extern "C" {
#define SESTYPE_L2TP 2
#define SESTYPE_PPPOE 3
#define SESTYPE_IPOE 4
#define SESTYPE_SSTP 6
#endif /* SESTYPE_ENUMS */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册