diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2006-12-11 23:10:12 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2006-12-11 23:10:12 +0000 |
commit | dca2e871dbaa99af691bb17f8e8d7e3e6dffcc7f (patch) | |
tree | 4b36b889e47396a351e5ac4db4a6a2c53e593d07 /usr.bin/bgplg/bgplg.h | |
parent | f080cb987a578cdd447c3abd1e3772eadb52355e (diff) |
import a looking glass for bgpd(8) (CGI web interface), see the
bgplg(8) and bgplgsh(8) manpages for installation and usage
instructions.
this has been tested by various users and on openbgp route servers in
the DE-CIX.
ok deraadt@ henning@
Diffstat (limited to 'usr.bin/bgplg/bgplg.h')
-rw-r--r-- | usr.bin/bgplg/bgplg.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/usr.bin/bgplg/bgplg.h b/usr.bin/bgplg/bgplg.h new file mode 100644 index 00000000000..dd403cb28d2 --- /dev/null +++ b/usr.bin/bgplg/bgplg.h @@ -0,0 +1,78 @@ +/* $OpenBSD: bgplg.h,v 1.1 2006/12/11 23:10:10 reyk Exp $ */ + +/* + * Copyright (c) 2005, 2006 Reyk Floeter <reyk@vantronix.net> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef _BGPLG_H +#define _BGPLG_H + +#define NAME "bgplg" +#define BRIEF "a looking glass for OpenBGPD" +#define COPYRIGHT "2005, 2006 Reyk Floeter (reyk@vantronix.net)" + +#define BGPLG_TIMEOUT 60 /* 60 seconds */ + +struct cmd { + const char *name; + int minargs; + int maxargs; + const char *args; + char *earg[255]; + int (*func)(struct cmd *, char **); +}; + +#define CMDS { \ + { "show ip bgp", 0, 1, NULL, \ + { BGPCTL, "show", "ip", "bgp", NULL } }, \ + { "show ip bgp as", 1, 1, "<asnum>", \ + { BGPCTL, "show", "ip", "bgp", "as", NULL } }, \ + { "show ip bgp source-as", 1, 1, "<asnum>", \ + { BGPCTL, "show", "ip", "bgp", "as", NULL } }, \ + { "show ip bgp transit-as", 1, 1, "<asnum>", \ + { BGPCTL, "show", "ip", "bgp", "transit-as", NULL } }, \ + { "show ip bgp empty-as", 0, 0, NULL, \ + { BGPCTL, "show", "ip", "bgp", "empty-as", NULL } }, \ + { "show ip bgp summary", 0, 0, NULL, \ + { BGPCTL, "show", "ip", "bgp", "summary", NULL } }, \ + { "show ip bgp detail", 0, 1, NULL, \ + { BGPCTL, "show","ip", "bgp", "detail", NULL } }, \ + { "show ip bgp in", 0, 1, NULL, \ + { BGPCTL, "show","ip", "bgp", "in", NULL } }, \ + { "show ip bgp out", 0, 1, NULL, \ + { BGPCTL, "show","ip", "bgp", "out", NULL } }, \ + { "show ip bgp memory", 0, 0, NULL, \ + { BGPCTL, "show", "ip", "bgp", "memory", NULL } }, \ + { "show neighbor", 0, 1, NULL, \ + { BGPCTL, "show", "neighbor", NULL } }, \ + { "show nexthop", 0, 0, NULL, \ + { BGPCTL, "show", "nexthop", NULL } }, \ + { "show version", 0, 0, NULL, { NULL }, lg_show_version }, \ + { "traceroute", 1, 1, "<address>", \ + { TRACEROUTE, "-Sl", NULL } }, \ + { "ping", 1, 1, "<address>", \ + { PING, "-c4", "-w2", NULL } }, \ + { "?", 0, 0, NULL, { NULL }, lg_help }, \ + { NULL } \ +} + +int lg_show_version(struct cmd *, char **); +int lg_help(struct cmd *, char **); +int lg_exec(const char *, char **); +int lg_checkperm(struct cmd *); +void lg_sig_alarm(int); +ssize_t lg_strip(char *); + +#endif /* _BGPLG_H */ |