ansible junos UnicodeDecodeError:'utf8'编解码器无法解码位置0的字节0xff:

时间:2019-09-25 14:54:48

标签: ansible junos-automation

我正试图与Junos路由器配合使用。在执行以下代码时,出现以下错误:

“任务执行期间发生了异常。要查看完整的追溯,请使用-vvv。错误是:UnicodeDecodeError:'utf8'编解码器无法解码位置0的字节0xff:无效的起始位置”

我很累在终端设备上启用netconf,但仍然没有运气。我无法使用任何具有该功能的星系模块...

我想念什么吗?

谢谢

  hosts: 10.1.1.1
  gather_facts: true
  connection: local
  tasks:
    - name: show version
      junos_command:
        commands:
          - show version
        host: "{{ ansible_host }}"
      register: output

2 个答案:

答案 0 :(得分:0)

根据规范,UTF-8比特流不能包含0xFE和0xFF。

答案 1 :(得分:0)

UTF-8比特流按规范不能包含0xFE和0xFF,您可以使用以下命令找到它们:

grep -P '[\xe9\xFF]' * -r