NETCONF 用の PHP ライブラリを使用しています: https://github.com/Juniper/netconf-php。これまでのところ、スクリプトに必要な構成パーツを取得することができましたが、最近の課題は、新しい構成をルーターにロードすることです。ルーターのログ:
Nov 27 14:34:48 router.nl sshd[78164]: subsystem request for netconf by user user
Nov 27 14:34:48 router.nl mgd[78168]: UI_CMDLINE_READ_LINE: User 'x', command 'xml-mode netconf need-trailer '
Nov 27 14:34:48 router.nl file[78167]: UI_LOGIN_EVENT: User 'x' login, class 'j-super-user' [78167], ssh-connection 'x.x.x.x 46796 x.x.x.x 22', client-mode 'netconf'
Nov 27 14:34:48 router.nl file[78167]: UI_NETCONF_CMD: User 'x' used NETCONF client to run command 'lock cannot reconstruct arguments'
Nov 27 14:34:48 router.nl file[78167]: UI_NETCONF_CMD: User 'x' used NETCONF client to run command 'edit-config cannot reconstruct arguments default-operation=merge cannot reconstruct arguments'
Nov 27 14:34:48 router.nl file[78167]: UI_NETCONF_CMD: User 'x' used NETCONF client to run command 'unlock cannot reconstruct arguments'
Nov 27 14:34:48 router.nl file[78167]: UI_NETCONF_CMD: User 'x' used NETCONF client to run command 'close-session'
引数を再構築できないことについて不平を言い続けています。これは私が働こうとしているスクリプトです:
require_once '../app/include/netconf/Device.php';
$deviceParams = [
'hostname' => 'x.x.x.x',
'username' => 'x',
'password' => 'password',
'port' => 22
];
$this->device = new Device($deviceParams);
$this->connectRouter();
$islocked = $this->device->lock_config();
$command = '<system><services><ftp/></services></system>';
if($islocked) {
$this->device->load_xml_configuration($command, 'merge');
}
$this->device->unlock_config();
$this->device->close();
netconf { ssh { ツリーの下に traceoqptions をセットアップしました。これは出力の 1 つです (すべて問題ないようです)。
Nov 30 10:41:57 [86546] Incoming:
<rpc><edit-config><target><candidate/></target><default-operation>merge</default-operation><config><configuration><system><services><ftp></ftp></services></system></configuration></config></edit-config></rpc>]]>]]>
Nov 30 10:41:57 [86546] Outgoing: <rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" xmlns:junos="http://xml.juniper.net/junos/12.3R8/junos">
Nov 30 10:41:57 [86546] Outgoing: <ok/>
Nov 30 10:41:57 [86546] Outgoing: </rpc-reply>
Nov 30 10:41:57 [86546] Outgoing: ]]>]]>
Nov 30 10:41:57 [86546] Incoming: <rpc><close-session/></rpc>]]>]]>