我写了这个 Erlang 模块:
-module(ncclient).
-export([open/0]).
open() ->
Host = {ssh, {192,168,30,11}},
Port = {port, 830},
User = {user, "admin"},
Pass = {password, "admin"},
ct_netconfc:open([Host, Port, User, Pass]).
编译,然后运行它:
# erl
Erlang/OTP 20 [erts-9.1] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:10] [kernel-poll:false]
Eshell V9.1 (abort with ^G)
1> c(ncclient).
{ok,ncclient}
2> ncclient:open().
** exception error: bad argument
in function ets:select/2
called as ets:select(ct_attributes,
[{{ct_conf,'$1','_','_','_',undefined,'_'},[],['$1']}])
in call from ct_config:get_key_from_name/1 (ct_config.erl, line 575)
in call from ct_util:does_connection_exist/3 (ct_util.erl, line 576)
in call from ct_gen_conn:do_start/4 (ct_gen_conn.erl, line 223)
in call from ct_netconfc:open/4 (ct_netconfc.erl, line 388)
open/1
我按照(http://erlang.org/doc/man/ct_netconfc.html#open-1 )的文档解释了参数的格式;命令仍然返回错误。
有人可以帮我理解吗?
谢谢,
爱丽儿