aboutsummaryrefslogtreecommitdiffstats
path: root/config/openbgpd
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-07-24 16:36:59 -0400
committerScott Ullrich <sullrich@pfsense.org>2009-07-24 16:37:25 -0400
commitc478303c770790a5c173771c21b289f13ae2cb90 (patch)
treef5da27feca262636cdd36a48354faaa3d5964ca2 /config/openbgpd
parentb87d895514b3d209a4258dd07a49b648b0e1de2e (diff)
downloadpfsense-packages-c478303c770790a5c173771c21b289f13ae2cb90.tar.gz
pfsense-packages-c478303c770790a5c173771c21b289f13ae2cb90.tar.bz2
pfsense-packages-c478303c770790a5c173771c21b289f13ae2cb90.zip
Add missing file
Diffstat (limited to 'config/openbgpd')
-rw-r--r--config/openbgpd/openbgpd_raw.php92
1 files changed, 92 insertions, 0 deletions
diff --git a/config/openbgpd/openbgpd_raw.php b/config/openbgpd/openbgpd_raw.php
new file mode 100644
index 00000000..2e0a4a09
--- /dev/null
+++ b/config/openbgpd/openbgpd_raw.php
@@ -0,0 +1,92 @@
+<?php
+/* $Id$ */
+/*
+ openbgpd_raw.php
+ part of pfSense (http://www.pfsense.com/)
+ Copyright (C) 2009 Aarno Aukia (aarnoaukia@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");
+require("openbgpd.inc");
+
+if (isset($_POST['openbgpd_raw'])) {
+ openbgpd_put_raw_config($_POST['openbgpd_raw']);
+ write_config();
+ openbgpd_install_conf();
+}
+
+$openbgpd_raw = openbgpd_get_raw_config();
+
+$pgtitle = "OpenBGPD: raw config";
+include("head.inc");
+
+?>
+<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("Raw config"), true, "/openbgpd_raw.php");
+ $tab_array[] = array(gettext("Status"), false, "/openbgpd_status.php");
+ display_top_tabs($tab_array);
+?>
+</table>
+<form action="openbgpd_raw.php" method="post" name="iform" id="iform">
+
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td class="tabcont" >
+ You can edit the raw bgpd.conf here.<br>
+ Note: Once you click "Save" below, the assistant (in the "Settings", "Neighbors" and "Groups" tabs above) will be overridden with whatever you type here. To get back the assisted config save this form below once with an empty input field.
+ </td>
+ </tr>
+ <tr>
+ <td class="tabcont" >
+ <textarea name="openbgpd_raw" rows="40" cols="80"><? echo $openbgpd_raw; ?></textarea>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <input name="Submit" type="submit" class="formbtn" value="Save"> <input class="formbtn" type="button" value="Cancel" on
+ click="history.back()">
+ </td>
+ </tr>
+</table>
+
+</form>
+
+</div>
+
+<?php include("fend.inc"); ?>
+
+</body>
+</html>