Specify the user and group to run as. User and group have to have same
name at the moment. Default is \fIquagga\fR.
.TP
+\fB\-a\fR, \fB\-\-apiserver \fR
+Enable OSPF apiserver. Default is disabled.
+.TP
\fB\-v\fR, \fB\-\-version\fR
Print the version and exit.
.SH FILES
{ "vty_addr", required_argument, NULL, 'A'},
{ "vty_port", required_argument, NULL, 'P'},
{ "user", required_argument, NULL, 'u'},
+ { "apiserver", no_argument, NULL, 'a'},
{ "version", no_argument, NULL, 'v'},
{ 0 }
};
/* Process ID saved for use by init system */
const char *pid_file = PATH_OSPFD_PID;
+/* OSPF apiserver is disabled by default. */
+int ospf_apiserver_enable = 0;
+
/* Help information display. */
static void
usage (char *progname, int status)
-A, --vty_addr Set vty's bind address\n\
-P, --vty_port Set vty's port number\n\
-u, --user User and group to run as\n\
+-a. --apiserver Enable OSPF apiserver\n\
-v, --version Print program version\n\
-h, --help Display this help and exit\n\
\n\
{
int opt;
- opt = getopt_long (argc, argv, "dlf:i:hA:P:u:v", longopts, 0);
+ opt = getopt_long (argc, argv, "dlf:i:hA:P:u:av", longopts, 0);
if (opt == EOF)
break;
vty_port = atoi (optarg);
vty_port = (vty_port ? vty_port : OSPF_VTY_PORT);
break;
- case 'u':
- ospfd_privs.group = ospfd_privs.user = optarg;
- break;
+ case 'u':
+ ospfd_privs.group = ospfd_privs.user = optarg;
+ break;
+ case 'a':
+ ospf_apiserver_enable = 1;
+ break;
case 'v':
print_version (progname);
exit (0);
#ifdef SUPPORT_OSPF_API
int ospf_apiserver_init (void);
void ospf_apiserver_term (void);
+extern int ospf_apiserver_enable;
#endif /* SUPPORT_OSPF_API */
static void ospf_opaque_register_vty (void);
#endif /* HAVE_OSPF_TE */
#ifdef SUPPORT_OSPF_API
- if (ospf_apiserver_init () != 0)
+ if ((ospf_apiserver_enable) && (ospf_apiserver_init () != 0))
exit (1);
#endif /* SUPPORT_OSPF_API */