Vielen Dank für eure antworten. Das hilft mir schonmal echt weiter. Ich versuche mich dann jetzt mal daran das ganze als Plugin zu entwickeln und die Backup-Api von fabian als Vorlage zu nehmen, scheint mir ja grundsätzlich sehr ähnlich zu meinen Problem zu sein. Ich muss die lokale dhcpd.conf Datei einlesen, dann in dem Plugin verarbeiten (in json umwandeln) und dann als response ausgeben. Oder habe ich noch etwas vergessen?Mir ist nur noch nicht ganz klar, wo ich meinen Code dann hinpacken muss, damit es funktioniert und muss die OPNSense bei Änderungen am Code immer neugestartet werden, oder funktioniert das einfach so?Viele GrüßeHenrik
<?php/* * Copyright (C) 2018 Fabian Franz * 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. */namespace OPNsense\DhcpLeases\Api;use OPNsense\Base\ApiControllerBase;class DhcpLeasesController extends ApiControllerBase{ const GET_LEASES_PATH = '/usr/local/opnsense/scripts/dhcp/get_leases.py'; public function leasesAction() { $this->response->setStatusCode(200, "OK"); $this->response->setContentType('application/xml', 'UTF-8'); $command = escapeshellcmd('/usr/local/opnsense/scripts/dhcp/get_leases.py'); $output = shell_exec($command); $this->response->setContent($output); } public function afterExecuteRoute($dispatcher) { $this->response->send(); }}
curl -k -u "KEY":"SECRET" https://192.168.10.1/api/dhcpleases/dhcpleases/leases
$this->response->setContentType('application/json', 'UTF-8');