18 lines
736 B
Bash
18 lines
736 B
Bash
#!/usr/bin/env bash
|
|
# Create restconf backend config with a single socket
|
|
# ipv4 no-ssl
|
|
|
|
RESTCONFIG=$(cat <<EOF
|
|
<restconf xmlns="https://clicon.org/restconf">
|
|
<ssl-enable>false</ssl-enable>
|
|
<auth-type>password</auth-type>
|
|
<socket><namespace>default</namespace><address>0.0.0.0</address><port>80</port><ssl>false</ssl></socket>
|
|
</restconf>
|
|
EOF
|
|
)
|
|
|
|
new "netconf edit config"
|
|
expecteof "$clixon_netconf -qf $cfg" 0 "<rpc $DEFAULTNS><edit-config><target><candidate/></target><config>$RESTCONFIG</config></edit-config></rpc>]]>]]>" "^<rpc-reply $DEFAULTNS><ok/></rpc-reply>]]>]]>$"
|
|
|
|
new "netconf commit"
|
|
expecteof "$clixon_netconf -qf $cfg" 0 "<rpc $DEFAULTNS><commit/></rpc>]]>]]>" "^<rpc-reply $DEFAULTNS><ok/></rpc-reply>]]>]]>$"
|