aboutsummaryrefslogtreecommitdiffstats
path: root/config/openbgpd
diff options
context:
space:
mode:
Diffstat (limited to 'config/openbgpd')
-rw-r--r--config/openbgpd/openbgpd.inc219
-rw-r--r--config/openbgpd/openbgpd.xml155
-rw-r--r--config/openbgpd/openbgpd_groups.xml115
-rw-r--r--config/openbgpd/openbgpd_neighbors.xml179
-rw-r--r--config/openbgpd/openbgpd_status.php166
5 files changed, 834 insertions, 0 deletions
diff --git a/config/openbgpd/openbgpd.inc b/config/openbgpd/openbgpd.inc
new file mode 100644
index 00000000..8e64c683
--- /dev/null
+++ b/config/openbgpd/openbgpd.inc
@@ -0,0 +1,219 @@
+<?php
+
+/* $Id$ */
+/*
+ openbgpd.inc
+ Copyright (C) 2007 Scott Ullrich (sullrich@gmail.com)
+ part of pfSense
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+function openbgpd_install_conf() {
+ global $config, $g;
+
+ conf_mount_rw();
+
+ if($config['installedpackages']['openbgpd']['config'])
+ $openbgpd_conf = &$config['installedpackages']['openbgpd']['config'][0];
+ if($config['installedpackages']['openbgpd']['config'][0]['row'])
+ $openbgpd_rows = &$config['installedpackages']['openbgpd']['config'][0]['row'];
+ if($config['installedpackages']['openbgpdgroups']['config'])
+ $openbgpd_groups = &$config['installedpackages']['openbgpdgroups']['config'];
+ if($config['installedpackages']['openbgpdneighbors']['config'])
+ $openbgpd_neighbors = &$config['installedpackages']['openbgpdneighbors']['config'];
+
+ $fd = fopen("/usr/local/etc/bgpd.conf", "w");
+
+ $conffile = "";
+
+ // Setup AS #
+ if($openbgpd_conf['asnum'])
+ $conffile .= "AS {$openbgpd_conf['asnum']}\n";
+
+ // Setup holdtime if defined. Default is 90.
+ if($openbgpd_conf['holdtime'])
+ $conffile .= "holdtime {$openbgpd_conf['holdtime']}\n";
+
+ // Specify listen ip
+ if($openbgpd_conf['listenip'])
+ $conffile .= "listen on {$openbgpd_conf['listenip']}\n";
+
+ // Specify router id
+ if($openbgpd_conf['routerid'])
+ $conffile .= "router-id {$openbgpd_conf['routerid']}\n";
+
+ // Handle advertised networks
+ if($config['installedpackages']['openbgpd']['config'][0]['row'])
+ if(is_array($openbgpd_rows))
+ foreach($openbgpd_rows as $row)
+ $conffile .= "network {$row['networks']}\n";
+
+ // Attach neighbors to their respective group owner
+ if(is_array($openbgpd_groups)) {
+ foreach($openbgpd_groups as $group) {
+ $conffile .= "group \"{$group['name']}\" {\n";
+ $conffile .= " remote-as {$group['remoteas']}\n";
+ if(is_array($openbgpd_neighbors)) {
+ foreach($openbgpd_neighbors as $neighbor) {
+ if($neighbor['groupname'] == $group['name']) {
+ $conffile .= " neighbor {$neighbor['neighbor']} {\n";
+ $conffile .= " descr \"{$neighbor['descr']}\"\n";
+ foreach($neighbor['row'] as $row) {
+ $conffile .= " {$row['paramaters']} {$row['parmvalue']} \n";
+ }
+ $conffile .= " }\n";
+ }
+ }
+ }
+ $conffile .= "}\n";
+ }
+ }
+
+ // Handle neighbors that do not have a group assigned to them
+ if(is_array($openbgpd_neighbors)) {
+ foreach($openbgpd_neighbors as $neighbor) {
+ $used_this_item = false;
+ if($neighbor['groupname'] == "") {
+ $conffile .= " neighbor {$neighbor['neighbor']} {\n";
+ $conffile .= " descr \"{$neighbor['descr']}\"\n";
+ $used_this_item = true;
+ foreach($neighbor['row'] as $row) {
+ $conffile .= " {$row['paramaters']} {$row['parmvalue']} \n";
+ }
+ if($used_this_item)
+ $conffile .= " }\n";
+ }
+ }
+ if($used_this_item)
+ $conffile .= "}\n";
+ }
+
+ // OpenBGPD filters
+ $conffile .= "deny from any\n";
+ $conffile .= "deny to any\n";
+ if(is_array($openbgpd_neighbors)) {
+ foreach($openbgpd_neighbors as $neighbor) {
+ $conffile .= "allow from {$neighbor['neighbor']}\n";
+ $conffile .= "allow to {$neighbor['neighbor']}\n";
+ }
+ }
+
+ // Write out the configuration file
+ fwrite($fd, "# This file was created by the pfSense package manager. Do not edit!\n\n");
+ fwrite($fd, $conffile);
+
+ // Close file handle
+ fclose($fd);
+
+ // Create rc.d file
+ $fd = fopen("/usr/local/etc/rc.d/bgpd.sh","w");
+ fwrite($fd, "#!/bin/sh\n\n");
+ fwrite($fd, "# This file was created by the pfSense package manager. Do not edit!\n\n");
+ fwrite($fd, "bgpd\n");
+ fclose($fd);
+ exec("chmod a+rx /usr/local/etc/rc.d/bgpd.sh");
+ exec("chmod a-rw /usr/local/etc/bgpd.conf");
+ exec("chmod u+rw /usr/local/etc/bgpd.conf");
+
+ // bgpd process running? if so reload, elsewise start.
+ if(is_openbgpd_running() == true) {
+ exec("bgpctl reload");
+ } else {
+ exec("bgpd");
+ }
+
+ conf_mount_ro();
+}
+
+function deinstall_openbgpd() {
+ exec("rm /usr/local/etc/rc.d/bgpd.sh");
+ exec("rm /usr/local/www/openbgpd_status.php");
+ exec("killall bgpd");
+}
+
+function check_group_usage($groupname) {
+ global $config, $g;
+
+ if($config['installedpackages']['openbgpd']['config'])
+ $openbgpd_conf = &$config['installedpackages']['openbgpd']['config'][0];
+ if($config['installedpackages']['openbgpd']['config'][0]['row'])
+ $openbgpd_rows = &$config['installedpackages']['openbgpd']['config'][0]['row'];
+ if($config['installedpackages']['openbgpdgroups']['config'])
+ $openbgpd_groups = &$config['installedpackages']['openbgpdgroups']['config'];
+ if($config['installedpackages']['openbgpdneighbors']['config'])
+ $openbgpd_neighbors = &$config['installedpackages']['openbgpdneighbors']['config'];
+
+ if(is_array($openbgpd_groups)) {
+ foreach($openbgpd_groups as $group) {
+ foreach($openbgpd_neighbors as $neighbor) {
+ if($neighbor['groupname'] == $group['name'])
+ return $neighbor['groupname'];
+ }
+ }
+ }
+ return "";
+}
+
+function grey_out_value_boxes() {
+ echo <<<EOF
+ <script language="javascript">
+ function grey_out_value_boxes() {
+ var x = 0;
+ for(x=0; x<99; x++) {
+ if( \$('paramaters' + x) ) {
+ var fieldvalue = $('paramaters' + x).options[$('paramaters' + x).selectedIndex].text;
+ var length = fieldvalue.length;
+ length = length -2;
+ var last_two = fieldvalue.substring(length);
+ var without_last_two = fieldvalue.substring(0,length);
+ if( \$('parmvalue' + x) ) {
+ if(last_two != ' X') {
+ \$('parmvalue' + x).value = '';
+ \$('parmvalue' + x).disabled = true;
+ } else {
+ \$('parmvalue' + x).disabled = false;
+ }
+ }
+ }
+ }
+ var timerID = setTimeout("grey_out_value_boxes()", 1200);
+
+ }
+ grey_out_value_boxes();
+ </script>
+
+
+EOF;
+
+}
+
+function is_openbgpd_running() {
+ $status = `ps awux | grep bgpd | grep "parent" | wc -l | awk '{ print \$1 }'`;
+ if(intval($status) > 0)
+ return true;
+ else
+ return false;
+}
+
+?> \ No newline at end of file
diff --git a/config/openbgpd/openbgpd.xml b/config/openbgpd/openbgpd.xml
new file mode 100644
index 00000000..4b85dbd0
--- /dev/null
+++ b/config/openbgpd/openbgpd.xml
@@ -0,0 +1,155 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd">
+<?xml-stylesheet type="text/xsl" href="../xsl/package.xsl"?>
+<packagegui>
+ <copyright>
+ <![CDATA[
+/* $Id$ */
+/* ========================================================================== */
+/*
+ openbgpd.xml
+ Copyright (C) 2007 Scott Ullrich (sullrich@gmail.com)
+ part of pfSense (http://www.pfSense.com)
+ All rights reserved.
+ */
+/* ========================================================================== */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ */
+/* ========================================================================== */
+ ]]>
+ </copyright>
+ <description>Describe your package here</description>
+ <requirements>Describe your package requirements here</requirements>
+ <faq>Currently there are no FAQ items provided.</faq>
+ <name>OpenBGPD</name>
+ <version>1</version>
+ <title>Services: OpenBGPD</title>
+ <include_file>/usr/local/pkg/openbgpd.inc</include_file>
+ <additional_files_needed>
+ <prefix>/usr/local/www/</prefix>
+ <chmod>077</chmod>
+ <item>http://www.pfsense.com/packages/config/openbgpd/openbgpd_status.php</item>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>077</chmod>
+ <item>http://www.pfsense.com/packages/config/openbgpd/openbgpd.inc</item>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>077</chmod>
+ <item>http://www.pfsense.com/packages/config/openbgpd/openbgpd_groups.xml</item>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>077</chmod>
+ <item>http://www.pfsense.com/packages/config/openbgpd/openbgpd_neighbors.xml</item>
+ </additional_files_needed>
+ <menu>
+ <name>OpenBGPD</name>
+ <tooltiptext></tooltiptext>
+ <section>Services</section>
+ <url>/pkg_edit.php?xml=openbgpd.xml&amp;id=0</url>
+ </menu>
+ <tabs>
+ <tab>
+ <text>Settings</text>
+ <url>/pkg_edit.php?xml=openbgpd.xml&amp;id=0</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>Neighbors</text>
+ <url>/pkg.php?xml=openbgpd_neighbors.xml</url>
+ </tab>
+ <tab>
+ <text>Groups</text>
+ <url>/pkg.php?xml=openbgpd_groups.xml&amp;id=0</url>
+ </tab>
+ <tab>
+ <text>Status</text>
+ <url>/openbgpd_status.php</url>
+ </tab>
+ </tabs>
+ <fields>
+ <field>
+ <fielddescr>Autonomous Systems (AS) Number</fielddescr>
+ <fieldname>asnum</fieldname>
+ <description>Set the local autonomous system number to as-number.</description>
+ <type>input</type>
+ </field>
+
+ <field>
+ <fielddescr>Holdtime</fielddescr>
+ <fieldname>holdtime</fieldname>
+ <description>Set the holdtime in seconds. The holdtime is reset to its initial value every time either a KEEPALIVE or an UPDATE message is received from the neighbor. If the holdtime expires the session is dropped. The default is 90 seconds. Neighboring systems negotiate the holdtime used when the connection is established in the OPEN messages. Each neighbor announces its configured hold- time; the smaller one is then agreed upon.</description>
+ <type>input</type>
+ </field>
+
+ <field>
+ <fielddescr>fib-update</fielddescr>
+ <fieldname>fibupdate</fieldname>
+ <description>If set to no, do not update the Forwarding Information Base a.k.a. the kernel routing table. The default is yes.</description>
+ <type>select</type>
+ <options>
+ <option><name>yes</name><value>yes</value></option>
+ <option><name>no</name><value>no</value></option>
+ </options>
+ </field>
+ <field>
+ <fielddescr>Listen on IP</fielddescr>
+ <fieldname>listenip</fieldname>
+ <description>Specify the local IP address bgpd(8) should listen on.</description>
+ <type>input</type>
+ </field>
+
+ <field>
+ <fielddescr>Router IP</fielddescr>
+ <fieldname>routerid</fieldname>
+ <description>Set the router ID to the given IP address, which must be local to the machine.</description>
+ <type>input</type>
+ </field>
+
+
+ <field>
+ <fielddescr>Networks</fielddescr>
+ <fieldname>network</fieldname>
+ <type>rowhelper</type>
+ <description></description>
+ <rowhelper>
+ <rowhelperfield>
+ <fielddescr>Announce the specified network as belonging to our AS. If set to connected, routes to directly attached networks will be announced. If set to static, all static routes will be announced.</fielddescr>
+ <fieldname>networks</fieldname>
+ <description>Network that you would like to advertise</description>
+ <type>input</type>
+ <size>45</size>
+ </rowhelperfield>
+ </rowhelper>
+ </field>
+ </fields>
+ <custom_php_deinstall_command>
+ deinstall_openbgpd();
+ </custom_php_deinstall_command>
+ <custom_php_resync_config_command>
+ openbgpd_install_conf();
+ </custom_php_resync_config_command>
+</packagegui>
diff --git a/config/openbgpd/openbgpd_groups.xml b/config/openbgpd/openbgpd_groups.xml
new file mode 100644
index 00000000..248a97df
--- /dev/null
+++ b/config/openbgpd/openbgpd_groups.xml
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd">
+<?xml-stylesheet type="text/xsl" href="../xsl/package.xsl"?>
+<packagegui>
+ <copyright>
+ <![CDATA[
+/* $Id$ */
+/* ========================================================================== */
+/*
+ openbgpd_groups.xml
+ part of pfSense (http://www.pfSense.com)
+ Copyright (C) 2007 Scott Ullrich (sullrich@gmail.com)
+ All rights reserved.
+ */
+/* ========================================================================== */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ */
+/* ========================================================================== */
+ ]]>
+ </copyright>
+ <description>Describe your package here</description>
+ <requirements>Describe your package requirements here</requirements>
+ <faq>Currently there are no FAQ items provided.</faq>
+ <name>OpenBGPDGroups</name>
+ <version>1</version>
+ <title>Services: OpenBGPD Groups</title>
+ <include_file>/usr/local/pkg/openbgpd.inc</include_file>
+ <tabs>
+ <tab>
+ <text>Settings</text>
+ <url>/pkg_edit.php?xml=openbgpd.xml&amp;id=0</url>
+ </tab>
+ <tab>
+ <text>Neighbors</text>
+ <url>/pkg.php?xml=openbgpd_neighbors.xml</url>
+ </tab>
+ <tab>
+ <text>Groups</text>
+ <url>/pkg.php?xml=openbgpd_groups.xml</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>Status</text>
+ <url>/openbgpd_status.php</url>
+ </tab>
+ </tabs>
+ <adddeleteeditpagefields>
+ <columnitem>
+ <fielddescr>Name</fielddescr>
+ <fieldname>name</fieldname>
+ </columnitem>
+ <columnitem>
+ <fielddescr>Description</fielddescr>
+ <fieldname>descr</fieldname>
+ </columnitem>
+ <columnitem>
+ <fielddescr>Remote AS</fielddescr>
+ <fieldname>remoteas</fieldname>
+ </columnitem>
+ </adddeleteeditpagefields>
+ <fields>
+ <field>
+ <fielddescr>Name</fielddescr>
+ <fieldname>name</fieldname>
+ <description></description>
+ <type>input</type>
+ <size>35</size>
+ </field>
+ <field>
+ <fielddescr>Remote AS</fielddescr>
+ <fieldname>remoteas</fieldname>
+ <description></description>
+ <type>input</type>
+ <size>8</size>
+ </field>
+ <field>
+ <fielddescr>Description</fielddescr>
+ <fieldname>descr</fieldname>
+ <description></description>
+ <type>input</type>
+ <size>80</size>
+ </field>
+ </fields>
+ <custom_php_deinstall_command>
+ deinstall_openbgpd();
+ </custom_php_deinstall_command>
+ <custom_php_resync_config_command>
+ openbgpd_install_conf();
+ </custom_php_resync_config_command>
+ <custom_php_validation_command>
+ $status = check_group_usage($_POST['groupname']);
+ if($status != "")
+ $input_errors[] = "Sorry this group is in use by {$status} and cannot be deleted.";
+ </custom_php_validation_command>
+</packagegui>
diff --git a/config/openbgpd/openbgpd_neighbors.xml b/config/openbgpd/openbgpd_neighbors.xml
new file mode 100644
index 00000000..cc170c0b
--- /dev/null
+++ b/config/openbgpd/openbgpd_neighbors.xml
@@ -0,0 +1,179 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd">
+<?xml-stylesheet type="text/xsl" href="../xsl/package.xsl"?>
+<packagegui>
+ <copyright>
+ <![CDATA[
+/* $Id$ */
+/* ========================================================================== */
+/*
+ openbgpd_neighbors.xml
+ part of pfSense (http://www.pfSense.com)
+ Copyright (C) 2007 Scott Ullrich (sullrich@gmail.com)
+ All rights reserved.
+ */
+/* ========================================================================== */
+/*
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ */
+/* ========================================================================== */
+ ]]>
+ </copyright>
+ <description>Describe your package here</description>
+ <requirements>Describe your package requirements here</requirements>
+ <faq>Currently there are no FAQ items provided.</faq>
+ <name>OpenBGPDNeighbors</name>
+ <version>1</version>
+ <title>Services: OpenBGPD Neighbors</title>
+ <include_file>/usr/local/pkg/openbgpd.inc</include_file>
+ <tabs>
+ <tab>
+ <text>Settings</text>
+ <url>/pkg_edit.php?xml=openbgpd.xml&amp;id=0</url>
+ </tab>
+ <tab>
+ <text>Neighbors</text>
+ <url>/pkg.php?xml=openbgpd_neighbors.xml</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>Groups</text>
+ <url>/pkg.php?xml=openbgpd_groups.xml</url>
+ </tab>
+ <tab>
+ <text>Status</text>
+ <url>/openbgpd_status.php</url>
+ </tab>
+ </tabs>
+ <adddeleteeditpagefields>
+ <columnitem>
+ <fielddescr>Description</fielddescr>
+ <fieldname>descr</fieldname>
+ </columnitem>
+ <columnitem>
+ <fielddescr>Group</fielddescr>
+ <fieldname>groupname</fieldname>
+ </columnitem>
+ <columnitem>
+ <fielddescr>Neighbor</fielddescr>
+ <fieldname>neighbor</fieldname>
+ </columnitem>
+ </adddeleteeditpagefields>
+ <fields>
+ <field>
+ <fielddescr>Description</fielddescr>
+ <fieldname>descr</fieldname>
+ <description></description>
+ <type>input</type>
+ <size>80</size>
+ </field>
+ <field>
+ <fielddescr>Neighbor</fielddescr>
+ <fieldname>neighbor</fieldname>
+ <description>Neighbor IP address</description>
+ <type>input</type>
+ <size>25</size>
+ </field>
+ <field>
+ <fielddescr>Group</fielddescr>
+ <fieldname>groupname</fieldname>
+ <description>Add neighbor to BGP group.</description>
+ <type>select</type>
+ <options>
+ <option>
+ <name>NAME</name>
+ <value>VALUE</value>
+ </option>
+ </options>
+ </field>
+ <field>
+ <fielddescr>none</fielddescr>
+ <fieldname>none</fieldname>
+ <type>rowhelper</type>
+ <rowhelper>
+ <rowhelperfield>
+ <fielddescr>Paramaters</fielddescr>
+ <fieldname>paramaters</fieldname>
+ <description>Neighbor settings.</description>
+ <type>select</type>
+ <options>
+ <option><name>Announce all</name><value>announce all</value></option>
+ <option><name>Announce none</name><value>announce none</value></option>
+ <option><name>Announce self</name><value>announce self</value></option>
+ <option><name>Announce default-route</name><value>announce default-route</value></option>
+ <option><name>Holdtime X</name><value>holdtime</value></option>
+ <option><name>Metric X</name><value>set metric</value></option>
+ <option><name>Multihop X</name><value>multihop</value></option>
+ <option><name>Localpref X</name><value>set localpref</value></option>
+ <option><name>Remote AS X</name><value>remote-as</value></option>
+ <option><name>Route-reflector X</name><value>route-reflector</value></option>
+ <option><name>Softreconfig in yes</name><value>softreconfig in yes</value></option>
+ <option><name>Softreconfig in no</name><value>softreconfig in no</value></option>
+ <option><name>Softreconfig out yes</name><value>softreconfig out yes</value></option>
+ <option><name>Softreconfig out no</name><value>softreconfig out no</value></option>
+ <option><name>Tcp md5sig password X</name><value>tcp md5sig password</value></option>
+ <option><name>Local address X</name><value>local-address</value></option>
+ </options>
+ </rowhelperfield>
+ <rowhelperfield>
+ <fielddescr>Value</fielddescr>
+ <fieldname>parmvalue</fieldname>
+ <type>input</type>
+ <size>25</size>
+ </rowhelperfield>
+ </rowhelper>
+ </field>
+ </fields>
+ <custom_php_command_before_form>
+ $newoptions = array();
+ $new_groups = array();
+ if($config['installedpackages']['openbgpdgroups']['config']) {
+ foreach($config['installedpackages']['openbgpdgroups']['config'] as $item)
+ $new_groups[] = $item['name'];
+ $counter = 0;
+ foreach($new_groups as $group) {
+ $newoptions['option'][$counter]['name'] = $group;
+ $newoptions['option'][$counter]['value'] = $group;
+ $counter++;
+ }
+ $newoptions['option'][$counter]['name'] = "";
+ $newoptions['option'][$counter]['value'] = "";
+ $pkg['fields']['field'][2]['options'] = $newoptions;
+ $counter = 0;
+ foreach($pkg['fields']['field'] as $field) {
+ if($field['name'] == "group") {
+ $foundgroupid = $counter;
+ echo "found it: $counter";
+ }
+ $counter++;
+ }
+ }
+ </custom_php_command_before_form>
+ <custom_php_deinstall_command>
+ </custom_php_deinstall_command>
+ <custom_php_resync_config_command>
+ openbgpd_install_conf();
+ </custom_php_resync_config_command>
+ <custom_php_after_form_command>
+ grey_out_value_boxes();
+ </custom_php_after_form_command>
+</packagegui> \ No newline at end of file
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php
new file mode 100644
index 00000000..912539ce
--- /dev/null
+++ b/config/openbgpd/openbgpd_status.php
@@ -0,0 +1,166 @@
+<?php
+/* $Id$ */
+/*
+ openbgpd_status.php
+ part of pfSense (http://www.pfsense.com/)
+ Copyright (C) 2007 Scott Ullrich (sullrich@gmail.com)
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require("guiconfig.inc");
+
+$pgtitle = "OpenBGPD: Status";
+include("head.inc");
+
+function doCmdT($title, $command) {
+ echo "<p>\n";
+ echo "<a name=\"" . $title . "\">\n";
+ echo "<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
+ echo "<tr><td class=\"listtopic\">" . $title . "</td></tr>\n";
+ echo "<tr><td class=\"listlr\"><pre>"; /* no newline after pre */
+
+ if ($command == "dumpconfigxml") {
+ $fd = @fopen("/conf/config.xml", "r");
+ if ($fd) {
+ while (!feof($fd)) {
+ $line = fgets($fd);
+ /* remove sensitive contents */
+ $line = preg_replace("/<password>.*?<\\/password>/", "<password>xxxxx</password>", $line);
+ $line = preg_replace("/<pre-shared-key>.*?<\\/pre-shared-key>/", "<pre-shared-key>xxxxx</pre-shared-key>", $line);
+ $line = preg_replace("/<rocommunity>.*?<\\/rocommunity>/", "<rocommunity>xxxxx</rocommunity>", $line);
+ $line = str_replace("\t", " ", $line);
+ echo htmlspecialchars($line,ENT_NOQUOTES);
+ }
+ }
+ fclose($fd);
+ } else {
+ $execOutput = "";
+ $execStatus = "";
+ exec ($command . " 2>&1", $execOutput, $execStatus);
+ for ($i = 0; isset($execOutput[$i]); $i++) {
+ if ($i > 0) {
+ echo "\n";
+ }
+ echo htmlspecialchars($execOutput[$i],ENT_NOQUOTES);
+ }
+ }
+ echo "</pre></tr>\n";
+ echo "</table>\n";
+}
+
+/* Execute a command, giving it a title which is the same as the command. */
+function doCmd($command) {
+ doCmdT($command,$command);
+}
+
+/* Define a command, with a title, to be executed later. */
+function defCmdT($title, $command) {
+ global $commands;
+ $title = htmlspecialchars($title,ENT_NOQUOTES);
+ $commands[] = array($title, $command);
+}
+
+/* Define a command, with a title which is the same as the command,
+ * to be executed later.
+ */
+function defCmd($command) {
+ defCmdT($command,$command);
+}
+
+/* List all of the commands as an index. */
+function listCmds() {
+ global $commands;
+ echo "<p>This status page includes the following information:\n";
+ echo "<ul width=\"700\">\n";
+ for ($i = 0; isset($commands[$i]); $i++ ) {
+ echo "<li><strong><a href=\"#" . $commands[$i][0] . "\">" . $commands[$i][0] . "</a></strong>\n";
+ }
+ echo "</ul>\n";
+}
+
+/* Execute all of the commands which were defined by a call to defCmd. */
+function execCmds() {
+ global $commands;
+ for ($i = 0; isset($commands[$i]); $i++ ) {
+ doCmdT($commands[$i][0], $commands[$i][1]);
+ }
+}
+
+?>
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<p class="pgtitle"><?=$pgtitle?></font></p>
+<?php if ($savemsg) print_info_box($savemsg); ?>
+
+<div id="mainlevel">
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+<?php
+ $tab_array = array();
+ $tab_array[] = array(gettext("Settings"), false, "/pkg_edit.php?xml=openbgpd.xml&id=0");
+ $tab_array[] = array(gettext("Neighbors"), false, "/pkg.php?xml=openbgpd_neighbors.xml");
+ $tab_array[] = array(gettext("Groups"), false, "/pkg.php?xml=openbgpd_groups.xml");
+ $tab_array[] = array(gettext("Status"), true, "/openbgpd_status.php");
+ display_top_tabs($tab_array);
+?>
+</table>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="tabcont" >
+ <form action="tinydns_status.php" method="post">
+ </form>
+ </td>
+ </tr>
+ <tr>
+ <td class="tabcont" >
+
+<?php
+
+defCmdT("OpenBGPD Summary","bgpctl show summary");
+defCmdT("OpenBGPD Interfaces","bgpctl show interfaces");
+defCmdT("OpenBGPD Routing","bgpctl show rib");
+defCmdT("OpenBGPD Routing","bgpctl show fib");
+defCmdT("OpenBGPD Network","bgpctl show network");
+defCmdT("OpenBGPD Nexthops","bgpctl show nexthop");
+defCmdT("OpenBGPD IP","bgpctl show ip");
+defCmdT("OpenBGPD Neighbors","bgpctl show neighbor");
+
+?>
+ <div id="cmdspace" style="width:100%">
+ <?php listCmds(); ?>
+
+ <?php execCmds(); ?>
+ </div>
+
+ </table>
+ </td>
+ </tr>
+</table>
+</div>
+
+<?php include("fend.inc"); ?>
+
+<meta http-equiv="refresh" content="60;url=<?php print $_SERVER['SCRIPT_NAME']; ?>">
+
+</body>
+</html>